interface BlockPublicAccessStatesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnSubnet.BlockPublicAccessStatesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnSubnet_BlockPublicAccessStatesProperty |
Java | software.amazon.awscdk.services.ec2.CfnSubnet.BlockPublicAccessStatesProperty |
Python | aws_cdk.aws_ec2.CfnSubnet.BlockPublicAccessStatesProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnSubnet » BlockPublicAccessStatesProperty |
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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
const blockPublicAccessStatesProperty: ec2.CfnSubnet.BlockPublicAccessStatesProperty = {
internetGatewayBlockMode: 'internetGatewayBlockMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| internet | string | The mode of VPC BPA. |
internetGatewayBlockMode?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript