/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The result of a StartElasticsearchServiceSoftwareUpdate
* operation. Contains the status of the update.See Also:
AWS
* API Reference
The current status of the Elasticsearch service software update.
*/ inline const ServiceSoftwareOptions& GetServiceSoftwareOptions() const{ return m_serviceSoftwareOptions; } /** *The current status of the Elasticsearch service software update.
*/ inline void SetServiceSoftwareOptions(const ServiceSoftwareOptions& value) { m_serviceSoftwareOptions = value; } /** *The current status of the Elasticsearch service software update.
*/ inline void SetServiceSoftwareOptions(ServiceSoftwareOptions&& value) { m_serviceSoftwareOptions = std::move(value); } /** *The current status of the Elasticsearch service software update.
*/ inline StartElasticsearchServiceSoftwareUpdateResult& WithServiceSoftwareOptions(const ServiceSoftwareOptions& value) { SetServiceSoftwareOptions(value); return *this;} /** *The current status of the Elasticsearch service software update.
*/ inline StartElasticsearchServiceSoftwareUpdateResult& WithServiceSoftwareOptions(ServiceSoftwareOptions&& value) { SetServiceSoftwareOptions(std::move(value)); return *this;} private: ServiceSoftwareOptions m_serviceSoftwareOptions; }; } // namespace Model } // namespace ElasticsearchService } // namespace Aws