/** * 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 AppSync { namespace Model { class AWS_APPSYNC_API StartSchemaCreationResult { public: StartSchemaCreationResult(); StartSchemaCreationResult(const Aws::AmazonWebServiceResult& result); StartSchemaCreationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The current state of the schema (PROCESSING, FAILED, SUCCESS, or * NOT_APPLICABLE). When the schema is in the ACTIVE state, you can add data.

*/ inline const SchemaStatus& GetStatus() const{ return m_status; } /** *

The current state of the schema (PROCESSING, FAILED, SUCCESS, or * NOT_APPLICABLE). When the schema is in the ACTIVE state, you can add data.

*/ inline void SetStatus(const SchemaStatus& value) { m_status = value; } /** *

The current state of the schema (PROCESSING, FAILED, SUCCESS, or * NOT_APPLICABLE). When the schema is in the ACTIVE state, you can add data.

*/ inline void SetStatus(SchemaStatus&& value) { m_status = std::move(value); } /** *

The current state of the schema (PROCESSING, FAILED, SUCCESS, or * NOT_APPLICABLE). When the schema is in the ACTIVE state, you can add data.

*/ inline StartSchemaCreationResult& WithStatus(const SchemaStatus& value) { SetStatus(value); return *this;} /** *

The current state of the schema (PROCESSING, FAILED, SUCCESS, or * NOT_APPLICABLE). When the schema is in the ACTIVE state, you can add data.

*/ inline StartSchemaCreationResult& WithStatus(SchemaStatus&& value) { SetStatus(std::move(value)); return *this;} private: SchemaStatus m_status; }; } // namespace Model } // namespace AppSync } // namespace Aws