Interface CfnFHIRDatastoreProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFHIRDatastoreProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.194Z")
@Stability(Stable)
public interface CfnFHIRDatastoreProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnFHIRDatastore.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFHIRDatastorePropsstatic final classAn implementation forCfnFHIRDatastoreProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe user generated name for the Data Store.The FHIR version of the Data Store.default ObjectThe preloaded data configuration for the Data Store.default ObjectThe server-side encryption key configuration for a customer provided encryption key specified for creating a Data Store.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatastoreTypeVersion
The FHIR version of the Data Store.The only supported version is R4.
-
getDatastoreName
The user generated name for the Data Store. -
getPreloadDataConfig
The preloaded data configuration for the Data Store.Only data preloaded from Synthea is supported.
-
getSseConfiguration
The server-side encryption key configuration for a customer provided encryption key specified for creating a Data Store. -
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
-
builder
- Returns:
- a
CfnFHIRDatastoreProps.BuilderofCfnFHIRDatastoreProps
-