Interface CfnVPCEncryptionControl.ResourceExclusionsProperty

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

@Stability(Stable) public static interface CfnVPCEncryptionControl.ResourceExclusionsProperty extends software.amazon.jsii.JsiiSerializable
Information about resource exclusions for the VPC Encryption Control configuration.

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.*;
 ResourceExclusionsProperty resourceExclusionsProperty = ResourceExclusionsProperty.builder()
         .egressOnlyInternetGateway(VpcEncryptionControlExclusionProperty.builder()
                 .state("state")
                 .stateMessage("stateMessage")
                 .build())
         .elasticFileSystem(VpcEncryptionControlExclusionProperty.builder()
                 .state("state")
                 .stateMessage("stateMessage")
                 .build())
         .internetGateway(VpcEncryptionControlExclusionProperty.builder()
                 .state("state")
                 .stateMessage("stateMessage")
                 .build())
         .lambda(VpcEncryptionControlExclusionProperty.builder()
                 .state("state")
                 .stateMessage("stateMessage")
                 .build())
         .natGateway(VpcEncryptionControlExclusionProperty.builder()
                 .state("state")
                 .stateMessage("stateMessage")
                 .build())
         .virtualPrivateGateway(VpcEncryptionControlExclusionProperty.builder()
                 .state("state")
                 .stateMessage("stateMessage")
                 .build())
         .vpcLattice(VpcEncryptionControlExclusionProperty.builder()
                 .state("state")
                 .stateMessage("stateMessage")
                 .build())
         .vpcPeering(VpcEncryptionControlExclusionProperty.builder()
                 .state("state")
                 .stateMessage("stateMessage")
                 .build())
         .build();
 

See Also: