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

The full description of your Fargate profile.

*/ inline const FargateProfile& GetFargateProfile() const{ return m_fargateProfile; } /** *

The full description of your Fargate profile.

*/ inline void SetFargateProfile(const FargateProfile& value) { m_fargateProfile = value; } /** *

The full description of your Fargate profile.

*/ inline void SetFargateProfile(FargateProfile&& value) { m_fargateProfile = std::move(value); } /** *

The full description of your Fargate profile.

*/ inline DescribeFargateProfileResult& WithFargateProfile(const FargateProfile& value) { SetFargateProfile(value); return *this;} /** *

The full description of your Fargate profile.

*/ inline DescribeFargateProfileResult& WithFargateProfile(FargateProfile&& value) { SetFargateProfile(std::move(value)); return *this;} private: FargateProfile m_fargateProfile; }; } // namespace Model } // namespace EKS } // namespace Aws