/** * 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 DescribeDatasetGroupResult { public: DescribeDatasetGroupResult(); DescribeDatasetGroupResult(const Aws::AmazonWebServiceResult& result); DescribeDatasetGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A listing of the dataset group's properties.

*/ inline const DatasetGroup& GetDatasetGroup() const{ return m_datasetGroup; } /** *

A listing of the dataset group's properties.

*/ inline void SetDatasetGroup(const DatasetGroup& value) { m_datasetGroup = value; } /** *

A listing of the dataset group's properties.

*/ inline void SetDatasetGroup(DatasetGroup&& value) { m_datasetGroup = std::move(value); } /** *

A listing of the dataset group's properties.

*/ inline DescribeDatasetGroupResult& WithDatasetGroup(const DatasetGroup& value) { SetDatasetGroup(value); return *this;} /** *

A listing of the dataset group's properties.

*/ inline DescribeDatasetGroupResult& WithDatasetGroup(DatasetGroup&& value) { SetDatasetGroup(std::move(value)); return *this;} private: DatasetGroup m_datasetGroup; }; } // namespace Model } // namespace Personalize } // namespace Aws