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

The result of an UpdateElasticsearchDomain request. Contains the * status of the Elasticsearch domain being updated.

See Also:

AWS * API Reference

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

The status of the updated Elasticsearch domain.

*/ inline const ElasticsearchDomainConfig& GetDomainConfig() const{ return m_domainConfig; } /** *

The status of the updated Elasticsearch domain.

*/ inline void SetDomainConfig(const ElasticsearchDomainConfig& value) { m_domainConfig = value; } /** *

The status of the updated Elasticsearch domain.

*/ inline void SetDomainConfig(ElasticsearchDomainConfig&& value) { m_domainConfig = std::move(value); } /** *

The status of the updated Elasticsearch domain.

*/ inline UpdateElasticsearchDomainConfigResult& WithDomainConfig(const ElasticsearchDomainConfig& value) { SetDomainConfig(value); return *this;} /** *

The status of the updated Elasticsearch domain.

*/ inline UpdateElasticsearchDomainConfigResult& WithDomainConfig(ElasticsearchDomainConfig&& value) { SetDomainConfig(std::move(value)); return *this;} private: ElasticsearchDomainConfig m_domainConfig; }; } // namespace Model } // namespace ElasticsearchService } // namespace Aws