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

The requested schema.

*/ inline const DatasetSchema& GetSchema() const{ return m_schema; } /** *

The requested schema.

*/ inline void SetSchema(const DatasetSchema& value) { m_schema = value; } /** *

The requested schema.

*/ inline void SetSchema(DatasetSchema&& value) { m_schema = std::move(value); } /** *

The requested schema.

*/ inline DescribeSchemaResult& WithSchema(const DatasetSchema& value) { SetSchema(value); return *this;} /** *

The requested schema.

*/ inline DescribeSchemaResult& WithSchema(DatasetSchema&& value) { SetSchema(std::move(value)); return *this;} private: DatasetSchema m_schema; }; } // namespace Model } // namespace Personalize } // namespace Aws