Class: Aws::EC2::Types::CreateVpnConnectionRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::CreateVpnConnectionRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Contains the parameters for CreateVpnConnection.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #customer_gateway_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the customer gateway.
 - 
  
    
      #dry_run  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.
 - 
  
    
      #options  ⇒ Types::VpnConnectionOptionsSpecification 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The options for the VPN connection.
 - 
  
    
      #tag_specifications  ⇒ Array<Types::TagSpecification> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The tags to apply to the VPN connection.
 - 
  
    
      #transit_gateway_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the transit gateway.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of VPN connection (‘ipsec.1`).
 - 
  
    
      #vpn_gateway_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the virtual private gateway.
 
Instance Attribute Details
#customer_gateway_id ⇒ String
The ID of the customer gateway.
      14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 14515 class CreateVpnConnectionRequest < Struct.new( :customer_gateway_id, :type, :vpn_gateway_id, :transit_gateway_id, :tag_specifications, :dry_run, :options) SENSITIVE = [] include Aws::Structure end  | 
  
#dry_run ⇒ Boolean
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`.
      14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 14515 class CreateVpnConnectionRequest < Struct.new( :customer_gateway_id, :type, :vpn_gateway_id, :transit_gateway_id, :tag_specifications, :dry_run, :options) SENSITIVE = [] include Aws::Structure end  | 
  
#options ⇒ Types::VpnConnectionOptionsSpecification
The options for the VPN connection.
      14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 14515 class CreateVpnConnectionRequest < Struct.new( :customer_gateway_id, :type, :vpn_gateway_id, :transit_gateway_id, :tag_specifications, :dry_run, :options) SENSITIVE = [] include Aws::Structure end  | 
  
#tag_specifications ⇒ Array<Types::TagSpecification>
The tags to apply to the VPN connection.
      14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 14515 class CreateVpnConnectionRequest < Struct.new( :customer_gateway_id, :type, :vpn_gateway_id, :transit_gateway_id, :tag_specifications, :dry_run, :options) SENSITIVE = [] include Aws::Structure end  | 
  
#transit_gateway_id ⇒ String
The ID of the transit gateway. If you specify a transit gateway, you cannot specify a virtual private gateway.
      14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 14515 class CreateVpnConnectionRequest < Struct.new( :customer_gateway_id, :type, :vpn_gateway_id, :transit_gateway_id, :tag_specifications, :dry_run, :options) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The type of VPN connection (‘ipsec.1`).
      14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 14515 class CreateVpnConnectionRequest < Struct.new( :customer_gateway_id, :type, :vpn_gateway_id, :transit_gateway_id, :tag_specifications, :dry_run, :options) SENSITIVE = [] include Aws::Structure end  | 
  
#vpn_gateway_id ⇒ String
The ID of the virtual private gateway. If you specify a virtual private gateway, you cannot specify a transit gateway.
      14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 14515 class CreateVpnConnectionRequest < Struct.new( :customer_gateway_id, :type, :vpn_gateway_id, :transit_gateway_id, :tag_specifications, :dry_run, :options) SENSITIVE = [] include Aws::Structure end  |