/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The result of an UpdateElasticsearchDomain request. Contains the
* status of the Elasticsearch domain being updated.See Also:
AWS
* API Reference
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