Show / Hide Table of Contents

Class CfnTransitGatewayVpcAttachment.OptionsProperty

Describes the VPC attachment options.

Inheritance
object
CfnTransitGatewayVpcAttachment.OptionsProperty
Implements
CfnTransitGatewayVpcAttachment.IOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayvpcattachment-options.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayvpcattachment-options.html

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

string

Remarks

The default is disable .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayvpcattachment-options.html#cfn-ec2-transitgatewayvpcattachment-options-appliancemodesupport

DnsSupport

Enable or disable DNS support.

public string? DnsSupport { get; set; }
Property Value

string

Remarks

The default is disable .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayvpcattachment-options.html#cfn-ec2-transitgatewayvpcattachment-options-dnssupport

Ipv6Support

Enable or disable IPv6 support.

public string? Ipv6Support { get; set; }
Property Value

string

Remarks

The default is disable .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayvpcattachment-options.html#cfn-ec2-transitgatewayvpcattachment-options-ipv6support

SecurityGroupReferencingSupport

Enables you to reference a security group across VPCs attached to a transit gateway (TGW).

public string? SecurityGroupReferencingSupport { get; set; }
Property Value

string

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayvpcattachment-options.html#cfn-ec2-transitgatewayvpcattachment-options-securitygroupreferencingsupport

Implements

CfnTransitGatewayVpcAttachment.IOptionsProperty
Back to top Generated by DocFX