interface ServerSideEncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataSourcePropsMixin.ServerSideEncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataSourcePropsMixin_ServerSideEncryptionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataSourcePropsMixin.ServerSideEncryptionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataSourcePropsMixin.ServerSideEncryptionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataSourcePropsMixin » ServerSideEncryptionConfigurationProperty |
Contains the configuration for server-side encryption.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const serverSideEncryptionConfigurationProperty: bedrock_mixins.CfnDataSourcePropsMixin.ServerSideEncryptionConfigurationProperty = {
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The Amazon Resource Name (ARN) of the AWS key used to encrypt the resource. |
kmsKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the AWS key used to encrypt the resource.

.NET
Go
Java
Python
TypeScript