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

The full description of the specified update.

*/ inline const Update& GetUpdate() const{ return m_update; } /** *

The full description of the specified update.

*/ inline void SetUpdate(const Update& value) { m_update = value; } /** *

The full description of the specified update.

*/ inline void SetUpdate(Update&& value) { m_update = std::move(value); } /** *

The full description of the specified update.

*/ inline DescribeUpdateResult& WithUpdate(const Update& value) { SetUpdate(value); return *this;} /** *

The full description of the specified update.

*/ inline DescribeUpdateResult& WithUpdate(Update&& value) { SetUpdate(std::move(value)); return *this;} private: Update m_update; }; } // namespace Model } // namespace EKS } // namespace Aws