interface VpcEncryptionControlExclusionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnVPCEncryptionControlPropsMixin.VpcEncryptionControlExclusionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnVPCEncryptionControlPropsMixin_VpcEncryptionControlExclusionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnVPCEncryptionControlPropsMixin.VpcEncryptionControlExclusionProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnVPCEncryptionControlPropsMixin.VpcEncryptionControlExclusionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const vpcEncryptionControlExclusionProperty: ec2.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