@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.707Z") @Stability(value=Stable) public interface CfnFHIRDatastoreProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnFHIRDatastoreProps cfnFHIRDatastoreProps = CfnFHIRDatastoreProps.builder()
.datastoreTypeVersion("datastoreTypeVersion")
// the properties below are optional
.datastoreName("datastoreName")
.preloadDataConfig(PreloadDataConfigProperty.builder()
.preloadDataType("preloadDataType")
.build())
.sseConfiguration(SseConfigurationProperty.builder()
.kmsEncryptionConfig(KmsEncryptionConfigProperty.builder()
.cmkType("cmkType")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFHIRDatastoreProps.Builder
A builder for
CfnFHIRDatastoreProps |
static class |
CfnFHIRDatastoreProps.Jsii$Proxy
An implementation for
CfnFHIRDatastoreProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnFHIRDatastoreProps.Builder |
builder() |
default String |
getDatastoreName()
The user generated name for the Data Store.
|
String |
getDatastoreTypeVersion()
The FHIR version of the Data Store.
|
default Object |
getPreloadDataConfig()
The preloaded data configuration for the Data Store.
|
default Object |
getSseConfiguration()
The server-side encryption key configuration for a customer provided encryption key specified for creating a Data Store.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull String getDatastoreTypeVersion()
The only supported version is R4.
@Stability(value=Stable) @Nullable default String getDatastoreName()
@Stability(value=Stable) @Nullable default Object getPreloadDataConfig()
Only data preloaded from Synthea is supported.
@Stability(value=Stable) @Nullable default Object getSseConfiguration()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnFHIRDatastoreProps.Builder builder()
CfnFHIRDatastoreProps.Builder of CfnFHIRDatastorePropsCopyright © 2022. All rights reserved.