Class: Aws::EC2::Types::CreateTransitGatewayVpcAttachmentRequestOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CreateTransitGatewayVpcAttachmentRequestOptions
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Note:
When making an API call, you may pass CreateTransitGatewayVpcAttachmentRequestOptions data as a hash:
{
dns_support: "enable", # accepts enable, disable
ipv_6_support: "enable", # accepts enable, disable
appliance_mode_support: "enable", # accepts enable, disable
}
Describes the options for a VPC attachment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#appliance_mode_support ⇒ String
Enable or disable support for appliance mode.
-
#dns_support ⇒ String
Enable or disable DNS support.
-
#ipv_6_support ⇒ String
Enable or disable IPv6 support.
Instance Attribute Details
#appliance_mode_support ⇒ String
Enable or disable support for appliance mode. If enabled, a traffic
flow between a source and destination uses the same Availability
Zone for the VPC attachment for the lifetime of that flow. The
default is disable
.
12985 12986 12987 12988 12989 12990 12991 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 12985 class CreateTransitGatewayVpcAttachmentRequestOptions < Struct.new( :dns_support, :ipv_6_support, :appliance_mode_support) SENSITIVE = [] include Aws::Structure end |
#dns_support ⇒ String
Enable or disable DNS support. The default is enable
.
12985 12986 12987 12988 12989 12990 12991 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 12985 class CreateTransitGatewayVpcAttachmentRequestOptions < Struct.new( :dns_support, :ipv_6_support, :appliance_mode_support) SENSITIVE = [] include Aws::Structure end |
#ipv_6_support ⇒ String
Enable or disable IPv6 support. The default is disable
.
12985 12986 12987 12988 12989 12990 12991 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 12985 class CreateTransitGatewayVpcAttachmentRequestOptions < Struct.new( :dns_support, :ipv_6_support, :appliance_mode_support) SENSITIVE = [] include Aws::Structure end |