interface VpcEncryptionControlExclusionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnVPC.VpcEncryptionControlExclusionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVPC_VpcEncryptionControlExclusionsProperty |
Java | software.amazon.awscdk.services.ec2.CfnVPC.VpcEncryptionControlExclusionsProperty |
Python | aws_cdk.aws_ec2.CfnVPC.VpcEncryptionControlExclusionsProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnVPC » VpcEncryptionControlExclusionsProperty |
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 vpcEncryptionControlExclusionsProperty: ec2.CfnVPC.VpcEncryptionControlExclusionsProperty = {
egressOnlyInternetGateway: {
state: 'state',
stateMessage: 'stateMessage',
},
elasticFileSystem: {
state: 'state',
stateMessage: 'stateMessage',
},
internetGateway: {
state: 'state',
stateMessage: 'stateMessage',
},
lambda: {
state: 'state',
stateMessage: 'stateMessage',
},
natGateway: {
state: 'state',
stateMessage: 'stateMessage',
},
virtualPrivateGateway: {
state: 'state',
stateMessage: 'stateMessage',
},
vpcLattice: {
state: 'state',
stateMessage: 'stateMessage',
},
vpcPeering: {
state: 'state',
stateMessage: 'stateMessage',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| egress | IResolvable | Vpc | |
| elastic | IResolvable | Vpc | |
| internet | IResolvable | Vpc | |
| lambda? | IResolvable | Vpc | |
| nat | IResolvable | Vpc | |
| virtual | IResolvable | Vpc | |
| vpc | IResolvable | Vpc | |
| vpc | IResolvable | Vpc |
egressOnlyInternetGateway?
Type:
IResolvable | Vpc
(optional)
elasticFileSystem?
Type:
IResolvable | Vpc
(optional)
internetGateway?
Type:
IResolvable | Vpc
(optional)
lambda?
Type:
IResolvable | Vpc
(optional)
natGateway?
Type:
IResolvable | Vpc
(optional)
virtualPrivateGateway?
Type:
IResolvable | Vpc
(optional)
vpcLattice?
Type:
IResolvable | Vpc
(optional)
vpcPeering?
Type:
IResolvable | Vpc
(optional)

.NET
Go
Java
Python
TypeScript