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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataAutomationLibrary.EncryptionConfigurationPropertystatic final classAn implementation forCfnDataAutomationLibrary.EncryptionConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKeyId
KMS Key Identifier.- See Also:
-
getKmsEncryptionContext
KMS Encryption Context.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
builder
@Stability(Stable) static CfnDataAutomationLibrary.EncryptionConfigurationProperty.Builder builder()
-