interface KmsEncryptionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.HealthLake.Mixins.CfnFHIRDatastorePropsMixin.KmsEncryptionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awshealthlake/mixins#CfnFHIRDatastorePropsMixin_KmsEncryptionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.healthlake.mixins.CfnFHIRDatastorePropsMixin.KmsEncryptionConfigProperty |
Python | aws_cdk.mixins_preview.aws_healthlake.mixins.CfnFHIRDatastorePropsMixin.KmsEncryptionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_healthlake » mixins » CfnFHIRDatastorePropsMixin » KmsEncryptionConfigProperty |
The customer-managed-key(CMK) used when creating a Data Store.
If a customer owned key is not specified, an Amazon owned key will be used for encryption.
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 kmsEncryptionConfigProperty: healthlake_mixins.CfnFHIRDatastorePropsMixin.KmsEncryptionConfigProperty = {
cmkType: 'cmkType',
kmsKeyId: 'kmsKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| cmk | string | The type of customer-managed-key(CMK) used for encryption. |
| kms | string | The Key Management Service (KMS) encryption key id/alias used to encrypt the data store contents at rest. |
cmkType?
Type:
string
(optional)
The type of customer-managed-key(CMK) used for encryption.
The two types of supported CMKs are customer owned CMKs and Amazon owned CMKs. For more information on CMK types, see KmsEncryptionConfig .
kmsKeyId?
Type:
string
(optional)
The Key Management Service (KMS) encryption key id/alias used to encrypt the data store contents at rest.

.NET
Go
Java
Python
TypeScript