interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataAutomationLibraryPropsMixin.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataAutomationLibraryPropsMixin_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataAutomationLibraryPropsMixin.EncryptionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataAutomationLibraryPropsMixin.EncryptionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnDataAutomationLibraryPropsMixin » 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/cfn-property-mixins';
const encryptionConfigurationProperty: bedrock.CfnDataAutomationLibraryPropsMixin.EncryptionConfigurationProperty = {
kmsEncryptionContext: {
kmsEncryptionContextKey: 'kmsEncryptionContext',
},
kmsKeyId: 'kmsKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | { [string]: string } | IResolvable | KMS Encryption Context. |
| kms | string | KMS Key Identifier. |
kmsEncryptionContext?
Type:
{ [string]: string } | IResolvable
(optional)
KMS Encryption Context.
kmsKeyId?
Type:
string
(optional)
KMS Key Identifier.

.NET
Go
Java
Python
TypeScript