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

The identifier of the schema extension that will be applied.

*/ inline const Aws::String& GetSchemaExtensionId() const{ return m_schemaExtensionId; } /** *

The identifier of the schema extension that will be applied.

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

The identifier of the schema extension that will be applied.

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

The identifier of the schema extension that will be applied.

*/ inline void SetSchemaExtensionId(const char* value) { m_schemaExtensionId.assign(value); } /** *

The identifier of the schema extension that will be applied.

*/ inline StartSchemaExtensionResult& WithSchemaExtensionId(const Aws::String& value) { SetSchemaExtensionId(value); return *this;} /** *

The identifier of the schema extension that will be applied.

*/ inline StartSchemaExtensionResult& WithSchemaExtensionId(Aws::String&& value) { SetSchemaExtensionId(std::move(value)); return *this;} /** *

The identifier of the schema extension that will be applied.

*/ inline StartSchemaExtensionResult& WithSchemaExtensionId(const char* value) { SetSchemaExtensionId(value); return *this;} private: Aws::String m_schemaExtensionId; }; } // namespace Model } // namespace DirectoryService } // namespace Aws