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

The full description of your service following the update call.

*/ inline const Service& GetService() const{ return m_service; } /** *

The full description of your service following the update call.

*/ inline void SetService(const Service& value) { m_service = value; } /** *

The full description of your service following the update call.

*/ inline void SetService(Service&& value) { m_service = std::move(value); } /** *

The full description of your service following the update call.

*/ inline UpdateServiceResult& WithService(const Service& value) { SetService(value); return *this;} /** *

The full description of your service following the update call.

*/ inline UpdateServiceResult& WithService(Service&& value) { SetService(std::move(value)); return *this;} private: Service m_service; }; } // namespace Model } // namespace ECS } // namespace Aws