Class CfnFHIRDatastorePropsMixin.KmsEncryptionConfigProperty
The customer-managed-key(CMK) used when creating a Data Store.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.HealthLake
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFHIRDatastorePropsMixin.KmsEncryptionConfigProperty : CfnFHIRDatastorePropsMixin.IKmsEncryptionConfigProperty
Syntax (vb)
Public Class CfnFHIRDatastorePropsMixin.KmsEncryptionConfigProperty Implements CfnFHIRDatastorePropsMixin.IKmsEncryptionConfigProperty
Remarks
If a customer owned key is not specified, an Amazon owned key will be used for encryption.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.HealthLake;
var kmsEncryptionConfigProperty = new KmsEncryptionConfigProperty {
CmkType = "cmkType",
KmsKeyId = "kmsKeyId"
};
Synopsis
Constructors
| KmsEncryptionConfigProperty() | The customer-managed-key(CMK) used when creating a Data Store. |
Properties
| CmkType | The type of customer-managed-key(CMK) used for encryption. |
| KmsKeyId | The Key Management Service (KMS) encryption key id/alias used to encrypt the data store contents at rest. |
Constructors
KmsEncryptionConfigProperty()
The customer-managed-key(CMK) used when creating a Data Store.
public KmsEncryptionConfigProperty()
Remarks
If a customer owned key is not specified, an Amazon owned key will be used for encryption.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.HealthLake;
var kmsEncryptionConfigProperty = new KmsEncryptionConfigProperty {
CmkType = "cmkType",
KmsKeyId = "kmsKeyId"
};
Properties
CmkType
The type of customer-managed-key(CMK) used for encryption.
public string? CmkType { get; set; }
Property Value
Remarks
The two types of supported CMKs are customer owned CMKs and Amazon owned CMKs. For more information on CMK types, see KmsEncryptionConfig .
KmsKeyId
The Key Management Service (KMS) encryption key id/alias used to encrypt the data store contents at rest.
public string? KmsKeyId { get; set; }