29 lines
582 B
C++
29 lines
582 B
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/eks/model/DescribeFargateProfileRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::EKS::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
DescribeFargateProfileRequest::DescribeFargateProfileRequest() :
|
|
m_clusterNameHasBeenSet(false),
|
|
m_fargateProfileNameHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String DescribeFargateProfileRequest::SerializePayload() const
|
|
{
|
|
return {};
|
|
}
|
|
|
|
|
|
|
|
|