Class: Aws::EC2::Types::DeleteVpnConnectionRouteRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass DeleteVpnConnectionRouteRequest data as a hash:

{
  destination_cidr_block: "String", # required
  vpn_connection_id: "String", # required
}

Contains the parameters for DeleteVpnConnectionRoute.

Instance Attribute Summary collapse

Instance Attribute Details

#destination_cidr_blockString

The CIDR block associated with the local subnet of the customer network.

Returns:

  • (String)


9017
9018
9019
9020
9021
# File 'lib/aws-sdk-ec2/types.rb', line 9017

class DeleteVpnConnectionRouteRequest < Struct.new(
  :destination_cidr_block,
  :vpn_connection_id)
  include Aws::Structure
end

#vpn_connection_idString

The ID of the VPN connection.

Returns:

  • (String)


9017
9018
9019
9020
9021
# File 'lib/aws-sdk-ec2/types.rb', line 9017

class DeleteVpnConnectionRouteRequest < Struct.new(
  :destination_cidr_block,
  :vpn_connection_id)
  include Aws::Structure
end