interface VpcEncryptionControlExclusionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnVPCEncryptionControlPropsMixin.VpcEncryptionControlExclusionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnVPCEncryptionControlPropsMixin_VpcEncryptionControlExclusionProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnVPCEncryptionControlPropsMixin.VpcEncryptionControlExclusionProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnVPCEncryptionControlPropsMixin.VpcEncryptionControlExclusionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnVPCEncryptionControlPropsMixin » VpcEncryptionControlExclusionProperty |
Describes an exclusion configuration for VPC Encryption Control.
For more information, see Enforce VPC encryption in transit in the Amazon VPC User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const vpcEncryptionControlExclusionProperty: ec2_mixins.CfnVPCEncryptionControlPropsMixin.VpcEncryptionControlExclusionProperty = {
state: 'state',
stateMessage: 'stateMessage',
};
Properties
| Name | Type | Description |
|---|---|---|
| state? | string | The current state of the exclusion configuration. |
| state | string | A message providing additional information about the exclusion state. |
state?
Type:
string
(optional)
The current state of the exclusion configuration.
stateMessage?
Type:
string
(optional)
A message providing additional information about the exclusion state.

.NET
Go
Java
Python
TypeScript