interface VpcEncryptionControlExclusionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnVPCEncryptionControl.VpcEncryptionControlExclusionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVPCEncryptionControl_VpcEncryptionControlExclusionProperty |
Java | software.amazon.awscdk.services.ec2.CfnVPCEncryptionControl.VpcEncryptionControlExclusionProperty |
Python | aws_cdk.aws_ec2.CfnVPCEncryptionControl.VpcEncryptionControlExclusionProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnVPCEncryptionControl » 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-lib';
const vpcEncryptionControlExclusionProperty: ec2.CfnVPCEncryptionControl.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