Class: Aws::EC2::Types::CreateTransitGatewayVpcAttachmentRequestOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CreateTransitGatewayVpcAttachmentRequestOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
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.
-
#security_group_referencing_support ⇒ String
Enables you to reference a security group across VPCs attached to a transit gateway to simplify security group management.
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`.
12920 12921 12922 12923 12924 12925 12926 12927 |
# File 'lib/aws-sdk-ec2/types.rb', line 12920 class CreateTransitGatewayVpcAttachmentRequestOptions < Struct.new( :dns_support, :security_group_referencing_support, :ipv_6_support, :appliance_mode_support) SENSITIVE = [] include Aws::Structure end |
#dns_support ⇒ String
Enable or disable DNS support. The default is ‘enable`.
12920 12921 12922 12923 12924 12925 12926 12927 |
# File 'lib/aws-sdk-ec2/types.rb', line 12920 class CreateTransitGatewayVpcAttachmentRequestOptions < Struct.new( :dns_support, :security_group_referencing_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`.
12920 12921 12922 12923 12924 12925 12926 12927 |
# File 'lib/aws-sdk-ec2/types.rb', line 12920 class CreateTransitGatewayVpcAttachmentRequestOptions < Struct.new( :dns_support, :security_group_referencing_support, :ipv_6_support, :appliance_mode_support) SENSITIVE = [] include Aws::Structure end |
#security_group_referencing_support ⇒ String
Enables you to reference a security group across VPCs attached to a transit gateway to simplify security group management.
This option is set to ‘enable` by default. However, at the transit gateway level the default is set to `disable`.
For more information about security group referencing, see [Security group referencing ][1] in the *Amazon Web Services Transit Gateways Guide*.
[1]: docs.aws.amazon.com/vpc/latest/tgw/tgw-vpc-attachments.html#vpc-attachment-security
12920 12921 12922 12923 12924 12925 12926 12927 |
# File 'lib/aws-sdk-ec2/types.rb', line 12920 class CreateTransitGatewayVpcAttachmentRequestOptions < Struct.new( :dns_support, :security_group_referencing_support, :ipv_6_support, :appliance_mode_support) SENSITIVE = [] include Aws::Structure end |