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

The entire schema object.

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

The entire schema object.

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

The entire schema object.

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

The entire schema object.

*/ inline GetSchemaResult& WithSchema(const Schema& value) { SetSchema(value); return *this;} /** *

The entire schema object.

*/ inline GetSchemaResult& WithSchema(Schema&& value) { SetSchema(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetSchemaResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetSchemaResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetSchemaResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Schema m_schema; Aws::String m_requestId; }; } // namespace Model } // namespace CleanRooms } // namespace Aws