Class: Aws::EC2::Types::VpnConnectionOptionsSpecification

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

{
  static_routes_only: false,
}

Describes VPN connection options.

Instance Attribute Summary collapse

Instance Attribute Details

#static_routes_onlyBoolean

Indicates whether the VPN connection uses static routes only. Static routes must be used for devices that don’t support BGP.

Returns:

  • (Boolean)


25097
25098
25099
25100
# File 'lib/aws-sdk-ec2/types.rb', line 25097

class VpnConnectionOptionsSpecification < Struct.new(
  :static_routes_only)
  include Aws::Structure
end