/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace EKS { namespace Model { class DescribeFargateProfileResult { public: AWS_EKS_API DescribeFargateProfileResult(); AWS_EKS_API DescribeFargateProfileResult(const Aws::AmazonWebServiceResult& result); AWS_EKS_API 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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeFargateProfileResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeFargateProfileResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeFargateProfileResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: FargateProfile m_fargateProfile; Aws::String m_requestId; }; } // namespace Model } // namespace EKS } // namespace Aws