Class: Aws::DirectConnect::Types::VirtualGateway
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectConnect::Types::VirtualGateway
- Defined in:
- gems/aws-sdk-directconnect/lib/aws-sdk-directconnect/types.rb
Overview
Information about a virtual private gateway for a private virtual interface.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#virtual_gateway_id ⇒ String
The ID of the virtual private gateway.
-
#virtual_gateway_state ⇒ String
The state of the virtual private gateway.
Instance Attribute Details
#virtual_gateway_id ⇒ String
The ID of the virtual private gateway.
3670 3671 3672 3673 3674 3675 |
# File 'gems/aws-sdk-directconnect/lib/aws-sdk-directconnect/types.rb', line 3670 class VirtualGateway < Struct.new( :virtual_gateway_id, :virtual_gateway_state) SENSITIVE = [] include Aws::Structure end |
#virtual_gateway_state ⇒ String
The state of the virtual private gateway. The following are the possible values:
pending
: Initial state after creating the virtual private gateway.available
: Ready for use by a private virtual interface.deleting
: Initial state after deleting the virtual private gateway.deleted
: The virtual private gateway is deleted. The private virtual interface is unable to send traffic over this gateway.
3670 3671 3672 3673 3674 3675 |
# File 'gems/aws-sdk-directconnect/lib/aws-sdk-directconnect/types.rb', line 3670 class VirtualGateway < Struct.new( :virtual_gateway_id, :virtual_gateway_state) SENSITIVE = [] include Aws::Structure end |