/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Personalize { namespace Model { class AWS_PERSONALIZE_API CreateDatasetGroupResult { public: CreateDatasetGroupResult(); CreateDatasetGroupResult(const Aws::AmazonWebServiceResult& result); CreateDatasetGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the new dataset group.

*/ inline const Aws::String& GetDatasetGroupArn() const{ return m_datasetGroupArn; } /** *

The Amazon Resource Name (ARN) of the new dataset group.

*/ inline void SetDatasetGroupArn(const Aws::String& value) { m_datasetGroupArn = value; } /** *

The Amazon Resource Name (ARN) of the new dataset group.

*/ inline void SetDatasetGroupArn(Aws::String&& value) { m_datasetGroupArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the new dataset group.

*/ inline void SetDatasetGroupArn(const char* value) { m_datasetGroupArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the new dataset group.

*/ inline CreateDatasetGroupResult& WithDatasetGroupArn(const Aws::String& value) { SetDatasetGroupArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the new dataset group.

*/ inline CreateDatasetGroupResult& WithDatasetGroupArn(Aws::String&& value) { SetDatasetGroupArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the new dataset group.

*/ inline CreateDatasetGroupResult& WithDatasetGroupArn(const char* value) { SetDatasetGroupArn(value); return *this;} private: Aws::String m_datasetGroupArn; }; } // namespace Model } // namespace Personalize } // namespace Aws