Interface CfnFHIRDatastoreProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFHIRDatastoreProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:00.389Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFHIRDatastoreProps
static final class
An implementation forCfnFHIRDatastoreProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The user generated name for the data store.The FHIR version of the data store.default Object
The identity provider configuration that you gave when the data store was created.default Object
The preloaded data configuration for the data store.default Object
The 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 version of the data store.The only supported version is R4.
- See Also:
-
getDatastoreName
The user generated name for the data store.- See Also:
-
getIdentityProviderConfiguration
The identity provider configuration that you gave when the data store was created.- See Also:
-
getPreloadDataConfig
The preloaded data configuration for the data store.Only data preloaded from Synthea is supported.
- See Also:
-
getSseConfiguration
The server-side encryption key configuration for a customer provided encryption key specified for creating a data store.- 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.Builder
ofCfnFHIRDatastoreProps
-