Interface CfnFHIRDatastoreMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFHIRDatastoreMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:13.229Z")
@Stability(Stable)
public interface CfnFHIRDatastoreMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnFHIRDatastorePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.healthlake.*;
CfnFHIRDatastoreMixinProps cfnFHIRDatastoreMixinProps = CfnFHIRDatastoreMixinProps.builder()
.datastoreName("datastoreName")
.datastoreTypeVersion("datastoreTypeVersion")
.identityProviderConfiguration(IdentityProviderConfigurationProperty.builder()
.authorizationStrategy("authorizationStrategy")
.fineGrainedAuthorizationEnabled(false)
.idpLambdaArn("idpLambdaArn")
.metadata("metadata")
.build())
.preloadDataConfig(PreloadDataConfigProperty.builder()
.preloadDataType("preloadDataType")
.build())
.sseConfiguration(SseConfigurationProperty.builder()
.kmsEncryptionConfig(KmsEncryptionConfigProperty.builder()
.cmkType("cmkType")
.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 forCfnFHIRDatastoreMixinPropsstatic final classAn implementation forCfnFHIRDatastoreMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe data store name (user-generated).default StringThe 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
-
getDatastoreName
The data store name (user-generated).- See Also:
-
getDatastoreTypeVersion
The FHIR release version supported by the data store.Current support is for version
R4.- See Also:
-
getIdentityProviderConfiguration
The identity provider configuration selected when the data store was created.Returns union: either
IResolvableorCfnFHIRDatastorePropsMixin.IdentityProviderConfigurationProperty- See Also:
-
getPreloadDataConfig
The preloaded Synthea data configuration for the data store.Returns union: either
IResolvableorCfnFHIRDatastorePropsMixin.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
IResolvableorCfnFHIRDatastorePropsMixin.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
CfnFHIRDatastoreMixinProps.BuilderofCfnFHIRDatastoreMixinProps
-