interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataAutomationLibrary.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataAutomationLibrary_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataAutomationLibrary.EncryptionConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataAutomationLibrary.EncryptionConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataAutomationLibrary » EncryptionConfigurationProperty |
KMS Encryption Configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const encryptionConfigurationProperty: bedrock.CfnDataAutomationLibrary.EncryptionConfigurationProperty = {
kmsKeyId: 'kmsKeyId',
// the properties below are optional
kmsEncryptionContext: {
kmsEncryptionContextKey: 'kmsEncryptionContext',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | KMS Key Identifier. |
| kms | { [string]: string } | IResolvable | KMS Encryption Context. |
kmsKeyId
Type:
string
KMS Key Identifier.
kmsEncryptionContext?
Type:
{ [string]: string } | IResolvable
(optional)
KMS Encryption Context.

.NET
Go
Java
Python
TypeScript