/** * 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 UpdateClusterConfigResult { public: UpdateClusterConfigResult(); UpdateClusterConfigResult(const Aws::AmazonWebServiceResult& result); UpdateClusterConfigResult& operator=(const Aws::AmazonWebServiceResult& result); inline const Update& GetUpdate() const{ return m_update; } inline void SetUpdate(const Update& value) { m_update = value; } inline void SetUpdate(Update&& value) { m_update = std::move(value); } inline UpdateClusterConfigResult& WithUpdate(const Update& value) { SetUpdate(value); return *this;} inline UpdateClusterConfigResult& WithUpdate(Update&& value) { SetUpdate(std::move(value)); return *this;} private: Update m_update; }; } // namespace Model } // namespace EKS } // namespace Aws