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();
 

See Also: