interface SseConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.HealthLake.Mixins.CfnFHIRDatastorePropsMixin.SseConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awshealthlake/mixins#CfnFHIRDatastorePropsMixin_SseConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.healthlake.mixins.CfnFHIRDatastorePropsMixin.SseConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_healthlake.mixins.CfnFHIRDatastorePropsMixin.SseConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_healthlake » mixins » CfnFHIRDatastorePropsMixin » SseConfigurationProperty |
The server-side encryption key configuration for a customer-provided encryption key.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as healthlake_mixins } from '@aws-cdk/mixins-preview/aws-healthlake';
const sseConfigurationProperty: healthlake_mixins.CfnFHIRDatastorePropsMixin.SseConfigurationProperty = {
kmsEncryptionConfig: {
cmkType: 'cmkType',
kmsKeyId: 'kmsKeyId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | IResolvable | Kms | The server-side encryption key configuration for a customer provided encryption key. |
kmsEncryptionConfig?
Type:
IResolvable | Kms
(optional)
The server-side encryption key configuration for a customer provided encryption key.

.NET
Go
Java
Python
TypeScript