Interface CfnVPCEncryptionControl.VpcEncryptionControlExclusionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVPCEncryptionControl.VpcEncryptionControlExclusionProperty.Jsii$Proxy
Enclosing class:
CfnVPCEncryptionControl

@Stability(Stable) public static interface CfnVPCEncryptionControl.VpcEncryptionControlExclusionProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ec2.*;
 VpcEncryptionControlExclusionProperty vpcEncryptionControlExclusionProperty = VpcEncryptionControlExclusionProperty.builder()
         .state("state")
         .stateMessage("stateMessage")
         .build();
 

See Also: