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-ec2/source/model/AssociateAddressRequest.cpp

74 lines
1.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/ec2/model/AssociateAddressRequest.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
using namespace Aws::EC2::Model;
using namespace Aws::Utils;
AssociateAddressRequest::AssociateAddressRequest() :
m_allocationIdHasBeenSet(false),
m_instanceIdHasBeenSet(false),
m_publicIpHasBeenSet(false),
m_allowReassociation(false),
m_allowReassociationHasBeenSet(false),
m_dryRun(false),
m_dryRunHasBeenSet(false),
m_networkInterfaceIdHasBeenSet(false),
m_privateIpAddressHasBeenSet(false)
{
}
Aws::String AssociateAddressRequest::SerializePayload() const
{
Aws::StringStream ss;
ss << "Action=AssociateAddress&";
if(m_allocationIdHasBeenSet)
{
ss << "AllocationId=" << StringUtils::URLEncode(m_allocationId.c_str()) << "&";
}
if(m_instanceIdHasBeenSet)
{
ss << "InstanceId=" << StringUtils::URLEncode(m_instanceId.c_str()) << "&";
}
if(m_publicIpHasBeenSet)
{
ss << "PublicIp=" << StringUtils::URLEncode(m_publicIp.c_str()) << "&";
}
if(m_allowReassociationHasBeenSet)
{
ss << "AllowReassociation=" << std::boolalpha << m_allowReassociation << "&";
}
if(m_dryRunHasBeenSet)
{
ss << "DryRun=" << std::boolalpha << m_dryRun << "&";
}
if(m_networkInterfaceIdHasBeenSet)
{
ss << "NetworkInterfaceId=" << StringUtils::URLEncode(m_networkInterfaceId.c_str()) << "&";
}
if(m_privateIpAddressHasBeenSet)
{
ss << "PrivateIpAddress=" << StringUtils::URLEncode(m_privateIpAddress.c_str()) << "&";
}
ss << "Version=2016-11-15";
return ss.str();
}
void AssociateAddressRequest::DumpBodyToUrl(Aws::Http::URI& uri ) const
{
uri.SetQueryString(SerializePayload());
}