interface CfnFHIRDatastoreProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.HealthLake.CfnFHIRDatastoreProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awshealthlake#CfnFHIRDatastoreProps |
Java | software.amazon.awscdk.services.healthlake.CfnFHIRDatastoreProps |
Python | aws_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',
identityProviderConfiguration: {
authorizationStrategy: 'authorizationStrategy',
// the properties below are optional
fineGrainedAuthorizationEnabled: false,
idpLambdaArn: 'idpLambdaArn',
metadata: 'metadata',
},
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 release version supported by the data store. |
| datastore | string | The data store name (user-generated). |
| identity | IResolvable | Identity | The identity provider configuration selected when the data store was created. |
| preload | IResolvable | Preload | The preloaded Synthea 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 release version supported by the data store.
Current support is for version R4 .
datastoreName?
Type:
string
(optional)
The data store name (user-generated).
identityProviderConfiguration?
Type:
IResolvable | Identity
(optional)
The identity provider configuration selected when the data store was created.
preloadDataConfig?
Type:
IResolvable | Preload
(optional)
The preloaded Synthea data configuration for the data store.
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
Go
Java
Python
TypeScript