Class: Aws::EC2::Types::InternetGatewayAttachment
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::InternetGatewayAttachment
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Describes the attachment of a VPC to an internet gateway or an egress-only internet gateway.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#state ⇒ String
The current state of the attachment.
-
#vpc_id ⇒ String
The ID of the VPC.
Instance Attribute Details
#state ⇒ String
The current state of the attachment. For an internet gateway, the state is ‘available` when attached to a VPC; otherwise, this value is not returned.
45229 45230 45231 45232 45233 45234 |
# File 'lib/aws-sdk-ec2/types.rb', line 45229 class InternetGatewayAttachment < Struct.new( :state, :vpc_id) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The ID of the VPC.
45229 45230 45231 45232 45233 45234 |
# File 'lib/aws-sdk-ec2/types.rb', line 45229 class InternetGatewayAttachment < Struct.new( :state, :vpc_id) SENSITIVE = [] include Aws::Structure end |