@Stability(value=Stable)
public static interface CfnFHIRDatastore.KmsEncryptionConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.healthlake.*;
KmsEncryptionConfigProperty kmsEncryptionConfigProperty = KmsEncryptionConfigProperty.builder()
.cmkType("cmkType")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFHIRDatastore.KmsEncryptionConfigProperty.Builder
A builder for
CfnFHIRDatastore.KmsEncryptionConfigProperty |
static class |
CfnFHIRDatastore.KmsEncryptionConfigProperty.Jsii$Proxy
An implementation for
CfnFHIRDatastore.KmsEncryptionConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnFHIRDatastore.KmsEncryptionConfigProperty.Builder |
builder() |
String |
getCmkType()
The type of customer-managed-key(CMK) used for encryption.
|
default String |
getKmsKeyId()
The KMS encryption key id/alias used to encrypt the Data Store contents at rest.
|
@Stability(value=Stable) @NotNull String getCmkType()
The two types of supported CMKs are customer owned CMKs and Amazon owned CMKs. For more information on CMK types, see KmsEncryptionConfig .
@Stability(value=Stable) @Nullable default String getKmsKeyId()
@Stability(value=Stable) static CfnFHIRDatastore.KmsEncryptionConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.