interface CfnFHIRDatastoreProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.HealthLake.CfnFHIRDatastoreProps |
Java | software.amazon.awscdk.services.healthlake.CfnFHIRDatastoreProps |
Python | aws_cdk.aws_healthlake.CfnFHIRDatastoreProps |
TypeScript | @aws-cdk/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 * as healthlake from '@aws-cdk/aws-healthlake';
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
| Name | Type | Description |
|---|---|---|
| datastore | string | The FHIR version of the Data Store. |
| datastore | string | The user generated name for the Data Store. |
| preload | Preload | IResolvable | The preloaded data configuration for the Data Store. |
| sse | IResolvable | Sse | The server-side encryption key configuration for a customer provided encryption key specified for creating a Data Store. |
| tags? | Cfn[] | 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:
Preload | IResolvable
(optional)
The preloaded data configuration for the Data Store.
Only data preloaded from Synthea is supported.
sseConfiguration?
Type:
IResolvable | Sse
(optional)
The server-side encryption key configuration for a customer provided encryption key specified for creating a Data Store.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Java
Python
TypeScript