aws-cdk-lib.aws_healthlake.CfnFHIRDatastoreProps

interface CfnFHIRDatastoreProps

LanguageType name
.NETAmazon.CDK.AWS.HealthLake.CfnFHIRDatastoreProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awshealthlake#CfnFHIRDatastoreProps
Javasoftware.amazon.awscdk.services.healthlake.CfnFHIRDatastoreProps
Pythonaws_cdk.aws_healthlake.CfnFHIRDatastoreProps
TypeScript aws-cdk-lib » aws_healthlake » CfnFHIRDatastoreProps

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 { aws_healthlake as healthlake } from 'aws-cdk-lib';
const cfnFHIRDatastoreProps: healthlake.CfnFHIRDatastoreProps = {
  datastoreTypeVersion: 'datastoreTypeVersion',

  // the properties below are optional
  datastoreName: 'datastoreName',
  preloadDataConfig: {
    preloadDataType: 'preloadDataType',
  },
  sseConfiguration: {
    kmsEncryptionConfig: {
      cmkType: 'cmkType',

      // the properties below are optional
      kmsKeyId: 'kmsKeyId',
    },
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
datastoreTypeVersionstringThe FHIR version of the Data Store.
datastoreName?stringThe user generated name for the Data Store.
preloadDataConfig?IResolvable | PreloadDataConfigPropertyThe preloaded data configuration for the Data Store.
sseConfiguration?IResolvable | SseConfigurationPropertyThe server-side encryption key configuration for a customer provided encryption key specified for creating a Data Store.
tags?CfnTag[]An array of key-value pairs to apply to this resource.

datastoreTypeVersion

Type: string

The FHIR version of the Data Store.

The only supported version is R4.


datastoreName?

Type: string (optional)

The user generated name for the Data Store.


preloadDataConfig?

Type: IResolvable | PreloadDataConfigProperty (optional)

The preloaded data configuration for the Data Store.

Only data preloaded from Synthea is supported.


sseConfiguration?

Type: IResolvable | SseConfigurationProperty (optional)

The server-side encryption key configuration for a customer provided encryption key specified for creating a Data Store.


tags?

Type: CfnTag[] (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag .