/** * 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 CreateNodegroupResult { public: CreateNodegroupResult(); CreateNodegroupResult(const Aws::AmazonWebServiceResult& result); CreateNodegroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The full description of your new node group.

*/ inline const Nodegroup& GetNodegroup() const{ return m_nodegroup; } /** *

The full description of your new node group.

*/ inline void SetNodegroup(const Nodegroup& value) { m_nodegroup = value; } /** *

The full description of your new node group.

*/ inline void SetNodegroup(Nodegroup&& value) { m_nodegroup = std::move(value); } /** *

The full description of your new node group.

*/ inline CreateNodegroupResult& WithNodegroup(const Nodegroup& value) { SetNodegroup(value); return *this;} /** *

The full description of your new node group.

*/ inline CreateNodegroupResult& WithNodegroup(Nodegroup&& value) { SetNodegroup(std::move(value)); return *this;} private: Nodegroup m_nodegroup; }; } // namespace Model } // namespace EKS } // namespace Aws