264 lines
9.3 KiB
C++
264 lines
9.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ec2/EC2_EXPORTS.h>
|
|
#include <aws/ec2/EC2Request.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace EC2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_EC2_API ModifyVpnConnectionRequest : public EC2Request
|
|
{
|
|
public:
|
|
ModifyVpnConnectionRequest();
|
|
|
|
// Service request name is the Operation name which will send this request out,
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|
// so we can not get operation's name from response.
|
|
inline virtual const char* GetServiceRequestName() const override { return "ModifyVpnConnection"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The ID of the VPN connection.</p>
|
|
*/
|
|
inline const Aws::String& GetVpnConnectionId() const{ return m_vpnConnectionId; }
|
|
|
|
/**
|
|
* <p>The ID of the VPN connection.</p>
|
|
*/
|
|
inline bool VpnConnectionIdHasBeenSet() const { return m_vpnConnectionIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the VPN connection.</p>
|
|
*/
|
|
inline void SetVpnConnectionId(const Aws::String& value) { m_vpnConnectionIdHasBeenSet = true; m_vpnConnectionId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the VPN connection.</p>
|
|
*/
|
|
inline void SetVpnConnectionId(Aws::String&& value) { m_vpnConnectionIdHasBeenSet = true; m_vpnConnectionId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the VPN connection.</p>
|
|
*/
|
|
inline void SetVpnConnectionId(const char* value) { m_vpnConnectionIdHasBeenSet = true; m_vpnConnectionId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the VPN connection.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithVpnConnectionId(const Aws::String& value) { SetVpnConnectionId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the VPN connection.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithVpnConnectionId(Aws::String&& value) { SetVpnConnectionId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the VPN connection.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithVpnConnectionId(const char* value) { SetVpnConnectionId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway.</p>
|
|
*/
|
|
inline const Aws::String& GetTransitGatewayId() const{ return m_transitGatewayId; }
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway.</p>
|
|
*/
|
|
inline bool TransitGatewayIdHasBeenSet() const { return m_transitGatewayIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway.</p>
|
|
*/
|
|
inline void SetTransitGatewayId(const Aws::String& value) { m_transitGatewayIdHasBeenSet = true; m_transitGatewayId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway.</p>
|
|
*/
|
|
inline void SetTransitGatewayId(Aws::String&& value) { m_transitGatewayIdHasBeenSet = true; m_transitGatewayId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway.</p>
|
|
*/
|
|
inline void SetTransitGatewayId(const char* value) { m_transitGatewayIdHasBeenSet = true; m_transitGatewayId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithTransitGatewayId(const Aws::String& value) { SetTransitGatewayId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithTransitGatewayId(Aws::String&& value) { SetTransitGatewayId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the transit gateway.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithTransitGatewayId(const char* value) { SetTransitGatewayId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The ID of the customer gateway at your end of the VPN connection.</p>
|
|
*/
|
|
inline const Aws::String& GetCustomerGatewayId() const{ return m_customerGatewayId; }
|
|
|
|
/**
|
|
* <p>The ID of the customer gateway at your end of the VPN connection.</p>
|
|
*/
|
|
inline bool CustomerGatewayIdHasBeenSet() const { return m_customerGatewayIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the customer gateway at your end of the VPN connection.</p>
|
|
*/
|
|
inline void SetCustomerGatewayId(const Aws::String& value) { m_customerGatewayIdHasBeenSet = true; m_customerGatewayId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the customer gateway at your end of the VPN connection.</p>
|
|
*/
|
|
inline void SetCustomerGatewayId(Aws::String&& value) { m_customerGatewayIdHasBeenSet = true; m_customerGatewayId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the customer gateway at your end of the VPN connection.</p>
|
|
*/
|
|
inline void SetCustomerGatewayId(const char* value) { m_customerGatewayIdHasBeenSet = true; m_customerGatewayId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the customer gateway at your end of the VPN connection.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithCustomerGatewayId(const Aws::String& value) { SetCustomerGatewayId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the customer gateway at your end of the VPN connection.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithCustomerGatewayId(Aws::String&& value) { SetCustomerGatewayId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the customer gateway at your end of the VPN connection.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithCustomerGatewayId(const char* value) { SetCustomerGatewayId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The ID of the virtual private gateway at the AWS side of the VPN
|
|
* connection.</p>
|
|
*/
|
|
inline const Aws::String& GetVpnGatewayId() const{ return m_vpnGatewayId; }
|
|
|
|
/**
|
|
* <p>The ID of the virtual private gateway at the AWS side of the VPN
|
|
* connection.</p>
|
|
*/
|
|
inline bool VpnGatewayIdHasBeenSet() const { return m_vpnGatewayIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the virtual private gateway at the AWS side of the VPN
|
|
* connection.</p>
|
|
*/
|
|
inline void SetVpnGatewayId(const Aws::String& value) { m_vpnGatewayIdHasBeenSet = true; m_vpnGatewayId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the virtual private gateway at the AWS side of the VPN
|
|
* connection.</p>
|
|
*/
|
|
inline void SetVpnGatewayId(Aws::String&& value) { m_vpnGatewayIdHasBeenSet = true; m_vpnGatewayId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the virtual private gateway at the AWS side of the VPN
|
|
* connection.</p>
|
|
*/
|
|
inline void SetVpnGatewayId(const char* value) { m_vpnGatewayIdHasBeenSet = true; m_vpnGatewayId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the virtual private gateway at the AWS side of the VPN
|
|
* connection.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithVpnGatewayId(const Aws::String& value) { SetVpnGatewayId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the virtual private gateway at the AWS side of the VPN
|
|
* connection.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithVpnGatewayId(Aws::String&& value) { SetVpnGatewayId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the virtual private gateway at the AWS side of the VPN
|
|
* connection.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithVpnGatewayId(const char* value) { SetVpnGatewayId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Checks whether you have the required permissions for the action, without
|
|
* actually making the request, and provides an error response. If you have the
|
|
* required permissions, the error response is <code>DryRunOperation</code>.
|
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
*/
|
|
inline bool GetDryRun() const{ return m_dryRun; }
|
|
|
|
/**
|
|
* <p>Checks whether you have the required permissions for the action, without
|
|
* actually making the request, and provides an error response. If you have the
|
|
* required permissions, the error response is <code>DryRunOperation</code>.
|
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
*/
|
|
inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Checks whether you have the required permissions for the action, without
|
|
* actually making the request, and provides an error response. If you have the
|
|
* required permissions, the error response is <code>DryRunOperation</code>.
|
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
*/
|
|
inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
|
|
|
|
/**
|
|
* <p>Checks whether you have the required permissions for the action, without
|
|
* actually making the request, and provides an error response. If you have the
|
|
* required permissions, the error response is <code>DryRunOperation</code>.
|
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
*/
|
|
inline ModifyVpnConnectionRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_vpnConnectionId;
|
|
bool m_vpnConnectionIdHasBeenSet;
|
|
|
|
Aws::String m_transitGatewayId;
|
|
bool m_transitGatewayIdHasBeenSet;
|
|
|
|
Aws::String m_customerGatewayId;
|
|
bool m_customerGatewayIdHasBeenSet;
|
|
|
|
Aws::String m_vpnGatewayId;
|
|
bool m_vpnGatewayIdHasBeenSet;
|
|
|
|
bool m_dryRun;
|
|
bool m_dryRunHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|