Interface CfnTransitGatewayAttachment.OptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransitGatewayAttachment.OptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTransitGatewayAttachment
@Stability(Stable)
public static interface CfnTransitGatewayAttachment.OptionsProperty
extends software.amazon.jsii.JsiiSerializable
Describes the VPC attachment options.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; OptionsProperty optionsProperty = OptionsProperty.builder() .applianceModeSupport("applianceModeSupport") .dnsSupport("dnsSupport") .ipv6Support("ipv6Support") .securityGroupReferencingSupport("securityGroupReferencingSupport") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTransitGatewayAttachment.OptionsProperty
static final class
An implementation forCfnTransitGatewayAttachment.OptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Enable or disable appliance mode support.default String
Enable or disable DNS support.default String
Enable or disable IPv6 support.default String
Enables you to reference a security group across VPCs attached to a transit gateway (TGW).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplianceModeSupport
Enable or disable appliance mode support.The default is
disable
.- See Also:
-
getDnsSupport
Enable or disable DNS support.The default is
disable
.- See Also:
-
getIpv6Support
Enable or disable IPv6 support.The default is
disable
.- See Also:
-
getSecurityGroupReferencingSupport
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.
For important information about this feature, see Create a transit gateway in the AWS Transit Gateway Guide .
- See Also:
-
builder
-