Interface CfnApplicationV2.ApplicationEncryptionConfigurationProperty

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

@Stability(Stable) public static interface CfnApplicationV2.ApplicationEncryptionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the configuration to manage encryption at rest.

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.kinesisanalytics.*;
 ApplicationEncryptionConfigurationProperty applicationEncryptionConfigurationProperty = ApplicationEncryptionConfigurationProperty.builder()
         .keyType("keyType")
         // the properties below are optional
         .keyId("keyId")
         .build();
 

See Also: