Interface CfnSubnetPropsMixin.BlockPublicAccessStatesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSubnetPropsMixin.BlockPublicAccessStatesProperty.Jsii$Proxy
- Enclosing class:
CfnSubnetPropsMixin
@Stability(Stable)
public static interface CfnSubnetPropsMixin.BlockPublicAccessStatesProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the state of VPC Block Public Access (BPA).
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
BlockPublicAccessStatesProperty blockPublicAccessStatesProperty = BlockPublicAccessStatesProperty.builder()
.internetGatewayBlockMode("internetGatewayBlockMode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSubnetPropsMixin.BlockPublicAccessStatesPropertystatic final classAn implementation forCfnSubnetPropsMixin.BlockPublicAccessStatesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInternetGatewayBlockMode
The mode of VPC BPA.off: VPC BPA is not enabled and traffic is allowed to and from internet gateways and egress-only internet gateways in this Region.block-bidirectional: Block all traffic to and from internet gateways and egress-only internet gateways in this Region (except for excluded VPCs and subnets).block-ingress: Block all internet traffic to the VPCs in this Region (except for VPCs or subnets which are excluded). Only traffic to and from NAT gateways and egress-only internet gateways is allowed because these gateways only allow outbound connections to be established.
- See Also:
-
builder
-