Interface CfnVpcAttachment.VpcOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVpcAttachment.VpcOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnVpcAttachment
@Stability(Stable)
public static interface CfnVpcAttachment.VpcOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Describes the VPC 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.networkmanager.*; VpcOptionsProperty vpcOptionsProperty = VpcOptionsProperty.builder() .applianceModeSupport(false) .dnsSupport(false) .ipv6Support(false) .securityGroupReferencingSupport(false) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVpcAttachment.VpcOptionsProperty
static final class
An implementation forCfnVpcAttachment.VpcOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Indicates whether appliance mode is supported.default Object
Indicates whether DNS is supported.default Object
Indicates whether IPv6 is supported.default Object
Indicates whether security group referencing is enabled for this VPC attachment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplianceModeSupport
Indicates whether appliance mode is supported.If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow. The default value is
false
.Default: - false
- See Also:
-
getDnsSupport
Indicates whether DNS is supported.Default: - true
- See Also:
-
getIpv6Support
Indicates whether IPv6 is supported.Default: - false
- See Also:
-
getSecurityGroupReferencingSupport
Indicates whether security group referencing is enabled for this VPC attachment.The default is
true
. However, at the core network policy-level the default is set tofalse
.Default: - true
- See Also:
-
builder
-