Class: Aws::EC2::Types::CreateCustomerGatewayRequest

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

{
  bgp_asn: 1, # required
  public_ip: "String", # required
  type: "ipsec.1", # required, accepts ipsec.1
  dry_run: false,
}

Contains the parameters for CreateCustomerGateway.

Instance Attribute Summary collapse

Instance Attribute Details

#bgp_asnInteger

For devices that support BGP, the customer gateway’s BGP ASN.

Default: 65000

Returns:

  • (Integer)


4337
4338
4339
4340
4341
4342
4343
# File 'lib/aws-sdk-ec2/types.rb', line 4337

class CreateCustomerGatewayRequest < Struct.new(
  :bgp_asn,
  :public_ip,
  :type,
  :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)


4337
4338
4339
4340
4341
4342
4343
# File 'lib/aws-sdk-ec2/types.rb', line 4337

class CreateCustomerGatewayRequest < Struct.new(
  :bgp_asn,
  :public_ip,
  :type,
  :dry_run)
  include Aws::Structure
end

#public_ipString

The Internet-routable IP address for the customer gateway’s outside interface. The address must be static.

Returns:

  • (String)


4337
4338
4339
4340
4341
4342
4343
# File 'lib/aws-sdk-ec2/types.rb', line 4337

class CreateCustomerGatewayRequest < Struct.new(
  :bgp_asn,
  :public_ip,
  :type,
  :dry_run)
  include Aws::Structure
end

#typeString

The type of VPN connection that this customer gateway supports (‘ipsec.1`).

Returns:

  • (String)


4337
4338
4339
4340
4341
4342
4343
# File 'lib/aws-sdk-ec2/types.rb', line 4337

class CreateCustomerGatewayRequest < Struct.new(
  :bgp_asn,
  :public_ip,
  :type,
  :dry_run)
  include Aws::Structure
end