interface CfnVPCBlockPublicAccessOptionsProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EC2.CfnVPCBlockPublicAccessOptionsProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVPCBlockPublicAccessOptionsProps |
![]() | software.amazon.awscdk.services.ec2.CfnVPCBlockPublicAccessOptionsProps |
![]() | aws_cdk.aws_ec2.CfnVPCBlockPublicAccessOptionsProps |
![]() | aws-cdk-lib » aws_ec2 » CfnVPCBlockPublicAccessOptionsProps |
Properties for defining a CfnVPCBlockPublicAccessOptions
.
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 cfnVPCBlockPublicAccessOptionsProps: ec2.CfnVPCBlockPublicAccessOptionsProps = {
internetGatewayBlockMode: 'internetGatewayBlockMode',
};
Properties
Name | Type | Description |
---|---|---|
internet | string | The desired VPC Block Public Access mode for internet gateways in your account. |
internetGatewayBlockMode
Type:
string
The desired VPC Block Public Access mode for internet gateways in your account.
We do not allow you to create this resource type in an "off" mode since off is the default value.
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.