/** * 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 DatabaseMigrationService { namespace Model { /** *

See Also:

AWS * API Reference

*/ class AWS_DATABASEMIGRATIONSERVICE_API DescribeRefreshSchemasStatusResult { public: DescribeRefreshSchemasStatusResult(); DescribeRefreshSchemasStatusResult(const Aws::AmazonWebServiceResult& result); DescribeRefreshSchemasStatusResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The status of the schema.

*/ inline const RefreshSchemasStatus& GetRefreshSchemasStatus() const{ return m_refreshSchemasStatus; } /** *

The status of the schema.

*/ inline void SetRefreshSchemasStatus(const RefreshSchemasStatus& value) { m_refreshSchemasStatus = value; } /** *

The status of the schema.

*/ inline void SetRefreshSchemasStatus(RefreshSchemasStatus&& value) { m_refreshSchemasStatus = std::move(value); } /** *

The status of the schema.

*/ inline DescribeRefreshSchemasStatusResult& WithRefreshSchemasStatus(const RefreshSchemasStatus& value) { SetRefreshSchemasStatus(value); return *this;} /** *

The status of the schema.

*/ inline DescribeRefreshSchemasStatusResult& WithRefreshSchemasStatus(RefreshSchemasStatus&& value) { SetRefreshSchemasStatus(std::move(value)); return *this;} private: RefreshSchemasStatus m_refreshSchemasStatus; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws