Interface CfnSubnet.BlockPublicAccessStatesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSubnet.BlockPublicAccessStatesProperty.Jsii$Proxy
- Enclosing class:
CfnSubnet
@Stability(Stable)
public static interface CfnSubnet.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.services.ec2.*; BlockPublicAccessStatesProperty blockPublicAccessStatesProperty = BlockPublicAccessStatesProperty.builder() .internetGatewayBlockMode("internetGatewayBlockMode") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSubnet.BlockPublicAccessStatesProperty
static final class
An implementation forCfnSubnet.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
-