Class CfnTransitGatewayVpcAttachment.OptionsProperty
Describes the VPC attachment options.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTransitGatewayVpcAttachment.OptionsProperty : CfnTransitGatewayVpcAttachment.IOptionsProperty
Syntax (vb)
Public Class CfnTransitGatewayVpcAttachment.OptionsProperty Implements CfnTransitGatewayVpcAttachment.IOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var optionsProperty = new OptionsProperty {
ApplianceModeSupport = "applianceModeSupport",
DnsSupport = "dnsSupport",
Ipv6Support = "ipv6Support",
SecurityGroupReferencingSupport = "securityGroupReferencingSupport"
};
Synopsis
Constructors
| OptionsProperty() | Describes the VPC attachment options. |
Properties
| ApplianceModeSupport | Enable or disable appliance mode support. |
| DnsSupport | Enable or disable DNS support. |
| Ipv6Support | Enable or disable IPv6 support. |
| SecurityGroupReferencingSupport | Enables you to reference a security group across VPCs attached to a transit gateway (TGW). |
Constructors
OptionsProperty()
Describes the VPC attachment options.
public OptionsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var optionsProperty = new OptionsProperty {
ApplianceModeSupport = "applianceModeSupport",
DnsSupport = "dnsSupport",
Ipv6Support = "ipv6Support",
SecurityGroupReferencingSupport = "securityGroupReferencingSupport"
};
Properties
ApplianceModeSupport
Enable or disable appliance mode support.
public string? ApplianceModeSupport { get; set; }
Property Value
Remarks
DnsSupport
Enable or disable DNS support.
public string? DnsSupport { get; set; }
Property Value
Remarks
Ipv6Support
Enable or disable IPv6 support.
public string? Ipv6Support { get; set; }
Property Value
Remarks
SecurityGroupReferencingSupport
Enables you to reference a security group across VPCs attached to a transit gateway (TGW).
public string? SecurityGroupReferencingSupport { get; set; }
Property Value
Remarks
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.
For important information about this feature, see Create a transit gateway in the AWS Transit Gateway Guide .