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 (TGW).
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`.
11799 11800 11801 11802 11803 11804 11805 11806 |
# File 'lib/aws-sdk-ec2/types.rb', line 11799 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`.
11799 11800 11801 11802 11803 11804 11805 11806 |
# File 'lib/aws-sdk-ec2/types.rb', line 11799 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`.
11799 11800 11801 11802 11803 11804 11805 11806 |
# File 'lib/aws-sdk-ec2/types.rb', line 11799 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 (TGW). Use this option to simplify security group management and control of instance-to-instance traffic across VPCs that are connected by transit gateway. You can also use this option to migrate from VPC peering (which was the only option that supported security group referencing) to transit gateways (which now also support security group referencing). This option is disabled by default and there are no additional costs to use this feature.
If you don’t enable or disable SecurityGroupReferencingSupport in the request, the attachment will inherit the security group referencing support setting on the transit gateway.
For important information about this feature, see [Create a transit gateway attachment to a VPC] in the *Amazon Web Services Transit Gateway Guide*.
[1]: docs.aws.amazon.com/vpc/latest/tgw/tgw-vpc-attachments.html#create-vpc-attachment
11799 11800 11801 11802 11803 11804 11805 11806 |
# File 'lib/aws-sdk-ec2/types.rb', line 11799 class CreateTransitGatewayVpcAttachmentRequestOptions < Struct.new( :dns_support, :security_group_referencing_support, :ipv_6_support, :appliance_mode_support) SENSITIVE = [] include Aws::Structure end |