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();
 
  • Method Details

    • getDatastoreTypeVersion

      @Stability(Stable) @NotNull String getDatastoreTypeVersion()
      The FHIR version of the Data Store.

      The only supported version is R4.

    • getDatastoreName

      @Stability(Stable) @Nullable default String getDatastoreName()
      The user generated name for the Data Store.
    • getPreloadDataConfig

      @Stability(Stable) @Nullable default Object getPreloadDataConfig()
      The preloaded data configuration for the Data Store.

      Only data preloaded from Synthea is supported.

    • getSseConfiguration

      @Stability(Stable) @Nullable default Object getSseConfiguration()
      The server-side encryption key configuration for a customer provided encryption key specified for creating a Data Store.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      An array of key-value pairs to apply to this resource.

      For more information, see Tag .

    • builder

      @Stability(Stable) static CfnFHIRDatastoreProps.Builder builder()
      Returns:
      a CfnFHIRDatastoreProps.Builder of CfnFHIRDatastoreProps