Interface CfnFHIRDatastore.SseConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFHIRDatastore.SseConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnFHIRDatastore
@Stability(Stable)
public static interface CfnFHIRDatastore.SseConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.healthlake.*;
SseConfigurationProperty sseConfigurationProperty = SseConfigurationProperty.builder()
.kmsEncryptionConfig(KmsEncryptionConfigProperty.builder()
.cmkType("cmkType")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFHIRDatastore.SseConfigurationPropertystatic final classAn implementation forCfnFHIRDatastore.SseConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The server-side encryption key configuration for a customer provided encryption key (CMK).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsEncryptionConfig
The server-side encryption key configuration for a customer provided encryption key (CMK). -
builder
-