interface VpcEncryptionControlExclusionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnVPC.VpcEncryptionControlExclusionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVPC_VpcEncryptionControlExclusionProperty |
Java | software.amazon.awscdk.services.ec2.CfnVPC.VpcEncryptionControlExclusionProperty |
Python | aws_cdk.aws_ec2.CfnVPC.VpcEncryptionControlExclusionProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnVPC » VpcEncryptionControlExclusionProperty |
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 vpcEncryptionControlExclusionProperty: ec2.CfnVPC.VpcEncryptionControlExclusionProperty = {
state: 'state',
stateMessage: 'stateMessage',
};
Properties
| Name | Type | Description |
|---|---|---|
| state? | string | The exclusion state of the resource type. |
| state | string | A message describing the exclusion state of the resource type. |
state?
Type:
string
(optional)
The exclusion state of the resource type.
stateMessage?
Type:
string
(optional)
A message describing the exclusion state of the resource type.

.NET
Go
Java
Python
TypeScript