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 classA builder forCfnVpcAttachment.VpcOptionsPropertystatic final classAn implementation forCfnVpcAttachment.VpcOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectIndicates whether appliance mode is supported.default ObjectIndicates whether DNS is supported.default ObjectIndicates whether IPv6 is supported.default ObjectIndicates 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.Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
getDnsSupport
Indicates whether DNS is supported.Returns union: either
BooleanorIResolvableDefault: - true
- See Also:
-
getIpv6Support
Indicates whether IPv6 is supported.Returns union: either
BooleanorIResolvableDefault: - 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.Returns union: either
BooleanorIResolvableDefault: - true
- See Also:
-
builder
-