Class: Aws::EC2::Types::CreateVpnGatewayRequest

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 CreateVpnGatewayRequest data as a hash:

{
  availability_zone: "String",
  type: "ipsec.1", # required, accepts ipsec.1
  amazon_side_asn: 1,
  dry_run: false,
}

Contains the parameters for CreateVpnGateway.

Instance Attribute Summary collapse

Instance Attribute Details

#amazon_side_asnInteger

A private Autonomous System Number (ASN) for the Amazon side of a BGP session. If you’re using a 16-bit ASN, it must be in the 64512 to 65534 range. If you’re using a 32-bit ASN, it must be in the 4200000000 to 4294967294 range.

Default: 64512

Returns:

  • (Integer)


7536
7537
7538
7539
7540
7541
7542
# File 'lib/aws-sdk-ec2/types.rb', line 7536

class CreateVpnGatewayRequest < Struct.new(
  :availability_zone,
  :type,
  :amazon_side_asn,
  :dry_run)
  include Aws::Structure
end

#availability_zoneString

The Availability Zone for the virtual private gateway.

Returns:

  • (String)


7536
7537
7538
7539
7540
7541
7542
# File 'lib/aws-sdk-ec2/types.rb', line 7536

class CreateVpnGatewayRequest < Struct.new(
  :availability_zone,
  :type,
  :amazon_side_asn,
  :dry_run)
  include Aws::Structure
end

#dry_runBoolean

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 ‘DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.

Returns:

  • (Boolean)


7536
7537
7538
7539
7540
7541
7542
# File 'lib/aws-sdk-ec2/types.rb', line 7536

class CreateVpnGatewayRequest < Struct.new(
  :availability_zone,
  :type,
  :amazon_side_asn,
  :dry_run)
  include Aws::Structure
end

#typeString

The type of VPN connection this virtual private gateway supports.

Returns:

  • (String)


7536
7537
7538
7539
7540
7541
7542
# File 'lib/aws-sdk-ec2/types.rb', line 7536

class CreateVpnGatewayRequest < Struct.new(
  :availability_zone,
  :type,
  :amazon_side_asn,
  :dry_run)
  include Aws::Structure
end