136 lines
4.7 KiB
C++
136 lines
4.7 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
|
|
{
|
|
|
|
/**
|
|
* <p>Contains the parameters for DeleteVpnConnectionRoute.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpnConnectionRouteRequest">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_EC2_API DeleteVpnConnectionRouteRequest : public EC2Request
|
|
{
|
|
public:
|
|
DeleteVpnConnectionRouteRequest();
|
|
|
|
// 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 "DeleteVpnConnectionRoute"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The CIDR block associated with the local subnet of the customer network.</p>
|
|
*/
|
|
inline const Aws::String& GetDestinationCidrBlock() const{ return m_destinationCidrBlock; }
|
|
|
|
/**
|
|
* <p>The CIDR block associated with the local subnet of the customer network.</p>
|
|
*/
|
|
inline bool DestinationCidrBlockHasBeenSet() const { return m_destinationCidrBlockHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The CIDR block associated with the local subnet of the customer network.</p>
|
|
*/
|
|
inline void SetDestinationCidrBlock(const Aws::String& value) { m_destinationCidrBlockHasBeenSet = true; m_destinationCidrBlock = value; }
|
|
|
|
/**
|
|
* <p>The CIDR block associated with the local subnet of the customer network.</p>
|
|
*/
|
|
inline void SetDestinationCidrBlock(Aws::String&& value) { m_destinationCidrBlockHasBeenSet = true; m_destinationCidrBlock = std::move(value); }
|
|
|
|
/**
|
|
* <p>The CIDR block associated with the local subnet of the customer network.</p>
|
|
*/
|
|
inline void SetDestinationCidrBlock(const char* value) { m_destinationCidrBlockHasBeenSet = true; m_destinationCidrBlock.assign(value); }
|
|
|
|
/**
|
|
* <p>The CIDR block associated with the local subnet of the customer network.</p>
|
|
*/
|
|
inline DeleteVpnConnectionRouteRequest& WithDestinationCidrBlock(const Aws::String& value) { SetDestinationCidrBlock(value); return *this;}
|
|
|
|
/**
|
|
* <p>The CIDR block associated with the local subnet of the customer network.</p>
|
|
*/
|
|
inline DeleteVpnConnectionRouteRequest& WithDestinationCidrBlock(Aws::String&& value) { SetDestinationCidrBlock(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The CIDR block associated with the local subnet of the customer network.</p>
|
|
*/
|
|
inline DeleteVpnConnectionRouteRequest& WithDestinationCidrBlock(const char* value) { SetDestinationCidrBlock(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <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 DeleteVpnConnectionRouteRequest& WithVpnConnectionId(const Aws::String& value) { SetVpnConnectionId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the VPN connection.</p>
|
|
*/
|
|
inline DeleteVpnConnectionRouteRequest& WithVpnConnectionId(Aws::String&& value) { SetVpnConnectionId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the VPN connection.</p>
|
|
*/
|
|
inline DeleteVpnConnectionRouteRequest& WithVpnConnectionId(const char* value) { SetVpnConnectionId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_destinationCidrBlock;
|
|
bool m_destinationCidrBlockHasBeenSet;
|
|
|
|
Aws::String m_vpnConnectionId;
|
|
bool m_vpnConnectionIdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|