This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-eks/include/aws/eks/model/CreateFargateProfileResult.h

68 lines
1.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/eks/EKS_EXPORTS.h>
#include <aws/eks/model/FargateProfile.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace EKS
{
namespace Model
{
class AWS_EKS_API CreateFargateProfileResult
{
public:
CreateFargateProfileResult();
CreateFargateProfileResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateFargateProfileResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The full description of your new Fargate profile.</p>
*/
inline const FargateProfile& GetFargateProfile() const{ return m_fargateProfile; }
/**
* <p>The full description of your new Fargate profile.</p>
*/
inline void SetFargateProfile(const FargateProfile& value) { m_fargateProfile = value; }
/**
* <p>The full description of your new Fargate profile.</p>
*/
inline void SetFargateProfile(FargateProfile&& value) { m_fargateProfile = std::move(value); }
/**
* <p>The full description of your new Fargate profile.</p>
*/
inline CreateFargateProfileResult& WithFargateProfile(const FargateProfile& value) { SetFargateProfile(value); return *this;}
/**
* <p>The full description of your new Fargate profile.</p>
*/
inline CreateFargateProfileResult& WithFargateProfile(FargateProfile&& value) { SetFargateProfile(std::move(value)); return *this;}
private:
FargateProfile m_fargateProfile;
};
} // namespace Model
} // namespace EKS
} // namespace Aws