interface CfnVPCEncryptionControlProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnVPCEncryptionControlProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVPCEncryptionControlProps |
Java | software.amazon.awscdk.services.ec2.CfnVPCEncryptionControlProps |
Python | aws_cdk.aws_ec2.CfnVPCEncryptionControlProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnVPCEncryptionControlProps |
Properties for defining a CfnVPCEncryptionControl.
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 cfnVPCEncryptionControlProps: ec2.CfnVPCEncryptionControlProps = {
egressOnlyInternetGatewayExclusionInput: 'egressOnlyInternetGatewayExclusionInput',
elasticFileSystemExclusionInput: 'elasticFileSystemExclusionInput',
internetGatewayExclusionInput: 'internetGatewayExclusionInput',
lambdaExclusionInput: 'lambdaExclusionInput',
mode: 'mode',
natGatewayExclusionInput: 'natGatewayExclusionInput',
tags: [{
key: 'key',
value: 'value',
}],
virtualPrivateGatewayExclusionInput: 'virtualPrivateGatewayExclusionInput',
vpcId: 'vpcId',
vpcLatticeExclusionInput: 'vpcLatticeExclusionInput',
vpcPeeringExclusionInput: 'vpcPeeringExclusionInput',
};
Properties
| Name | Type | Description |
|---|---|---|
| egress | string | Specifies whether to exclude egress-only internet gateway traffic from encryption enforcement. |
| elastic | string | Specifies whether to exclude Elastic File System traffic from encryption enforcement. |
| internet | string | Specifies whether to exclude internet gateway traffic from encryption enforcement. |
| lambda | string | Specifies whether to exclude Lambda function traffic from encryption enforcement. |
| mode? | string | The encryption mode for the VPC Encryption Control configuration. |
| nat | string | Specifies whether to exclude NAT gateway traffic from encryption enforcement. |
| tags? | Cfn[] | The tags assigned to the VPC Encryption Control configuration. |
| virtual | string | Specifies whether to exclude virtual private gateway traffic from encryption enforcement. |
| vpc | string | The ID of the VPC for which to create the encryption control configuration. |
| vpc | string | Specifies whether to exclude VPC Lattice traffic from encryption enforcement. |
| vpc | string | Specifies whether to exclude VPC peering connection traffic from encryption enforcement. |
egressOnlyInternetGatewayExclusionInput?
Type:
string
(optional)
Specifies whether to exclude egress-only internet gateway traffic from encryption enforcement.
elasticFileSystemExclusionInput?
Type:
string
(optional)
Specifies whether to exclude Elastic File System traffic from encryption enforcement.
internetGatewayExclusionInput?
Type:
string
(optional)
Specifies whether to exclude internet gateway traffic from encryption enforcement.
lambdaExclusionInput?
Type:
string
(optional)
Specifies whether to exclude Lambda function traffic from encryption enforcement.
mode?
Type:
string
(optional)
The encryption mode for the VPC Encryption Control configuration.
natGatewayExclusionInput?
Type:
string
(optional)
Specifies whether to exclude NAT gateway traffic from encryption enforcement.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the VPC Encryption Control configuration.
virtualPrivateGatewayExclusionInput?
Type:
string
(optional)
Specifies whether to exclude virtual private gateway traffic from encryption enforcement.
vpcId?
Type:
string
(optional)
The ID of the VPC for which to create the encryption control configuration.
vpcLatticeExclusionInput?
Type:
string
(optional)
Specifies whether to exclude VPC Lattice traffic from encryption enforcement.
vpcPeeringExclusionInput?
Type:
string
(optional)
Specifies whether to exclude VPC peering connection traffic from encryption enforcement.

.NET
Go
Java
Python
TypeScript