interface KmsEncryptionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.HealthLake.CfnFHIRDatastorePropsMixin.KmsEncryptionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awshealthlake#CfnFHIRDatastorePropsMixin_KmsEncryptionConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.healthlake.CfnFHIRDatastorePropsMixin.KmsEncryptionConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_healthlake.CfnFHIRDatastorePropsMixin.KmsEncryptionConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_healthlake » 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 { aws_healthlake as healthlake } from '@aws-cdk/cfn-property-mixins';
const kmsEncryptionConfigProperty: healthlake.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