Interface CfnDataAutomationLibrary.EncryptionConfigurationProperty

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

@Stability(Stable) public static interface CfnDataAutomationLibrary.EncryptionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
KMS Encryption 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.bedrock.*;
 EncryptionConfigurationProperty encryptionConfigurationProperty = EncryptionConfigurationProperty.builder()
         .kmsKeyId("kmsKeyId")
         // the properties below are optional
         .kmsEncryptionContext(Map.of(
                 "kmsEncryptionContextKey", "kmsEncryptionContext"))
         .build();
 

See Also: