Interface CfnFHIRDatastoreProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFHIRDatastoreProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:41.090Z")
@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")
.identityProviderConfiguration(IdentityProviderConfigurationProperty.builder()
.authorizationStrategy("authorizationStrategy")
// the properties below are optional
.fineGrainedAuthorizationEnabled(false)
.idpLambdaArn("idpLambdaArn")
.metadata("metadata")
.build())
.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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFHIRDatastorePropsstatic final classAn implementation forCfnFHIRDatastoreProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe data store name (user-generated).The FHIR release version supported by the data store.default ObjectThe identity provider configuration selected when the data store was created.default ObjectThe preloaded Synthea 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 release version supported by the data store.Current support is for version
R4.- See Also:
-
getDatastoreName
The data store name (user-generated).- See Also:
-
getIdentityProviderConfiguration
The identity provider configuration selected when the data store was created.Returns union: either
IResolvableorCfnFHIRDatastore.IdentityProviderConfigurationProperty- See Also:
-
getPreloadDataConfig
The preloaded Synthea data configuration for the data store.Returns union: either
IResolvableorCfnFHIRDatastore.PreloadDataConfigProperty- See Also:
-
getSseConfiguration
The server-side encryption key configuration for a customer-provided encryption key specified for creating a data store.Returns union: either
IResolvableorCfnFHIRDatastore.SseConfigurationProperty- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnFHIRDatastoreProps.BuilderofCfnFHIRDatastoreProps
-