interface SseConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.HealthLake.CfnFHIRDatastore.SseConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awshealthlake#CfnFHIRDatastore_SseConfigurationProperty |
Java | software.amazon.awscdk.services.healthlake.CfnFHIRDatastore.SseConfigurationProperty |
Python | aws_cdk.aws_healthlake.CfnFHIRDatastore.SseConfigurationProperty |
TypeScript | aws-cdk-lib » aws_healthlake » CfnFHIRDatastore » 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 { aws_healthlake as healthlake } from 'aws-cdk-lib';
const sseConfigurationProperty: healthlake.CfnFHIRDatastore.SseConfigurationProperty = {
kmsEncryptionConfig: {
cmkType: 'cmkType',
// the properties below are optional
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
The server-side encryption key configuration for a customer provided encryption key.

.NET
Go
Java
Python
TypeScript