import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * HealthLake FHIR Datastore */ export declare class FhirDatastore extends pulumi.CustomResource { /** * Get an existing FhirDatastore resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): FhirDatastore; /** * Returns true if the given object is an instance of FhirDatastore. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is FhirDatastore; readonly createdAt: pulumi.Output; /** * The Data Store ARN is generated during the creation of the Data Store and can be found in the output from the initial Data Store creation request. */ readonly datastoreArn: pulumi.Output; /** * The endpoint for the created Data Store. */ readonly datastoreEndpoint: pulumi.Output; /** * The Amazon generated Data Store id. This id is in the output from the initial Data Store creation call. */ readonly datastoreId: pulumi.Output; /** * The data store name (user-generated). */ readonly datastoreName: pulumi.Output; /** * The status of the FHIR Data Store. Possible statuses are ‘CREATING’, ‘ACTIVE’, ‘DELETING’, ‘DELETED’. */ readonly datastoreStatus: pulumi.Output; /** * The FHIR release version supported by the data store. Current support is for version `R4` . */ readonly datastoreTypeVersion: pulumi.Output; /** * The identity provider configuration selected when the data store was created. */ readonly identityProviderConfiguration: pulumi.Output; /** * The preloaded Synthea data configuration for the data store. */ readonly preloadDataConfig: pulumi.Output; /** * The server-side encryption key configuration for a customer-provided encryption key specified for creating a data store. */ readonly sseConfiguration: pulumi.Output; /** * An array of key-value pairs to apply to this resource. * * For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . */ readonly tags: pulumi.Output; /** * Create a FhirDatastore resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: FhirDatastoreArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a FhirDatastore resource. */ export interface FhirDatastoreArgs { /** * The data store name (user-generated). */ datastoreName?: pulumi.Input; /** * The FHIR release version supported by the data store. Current support is for version `R4` . */ datastoreTypeVersion: pulumi.Input; /** * The identity provider configuration selected when the data store was created. */ identityProviderConfiguration?: pulumi.Input; /** * The preloaded Synthea data configuration for the data store. */ preloadDataConfig?: pulumi.Input; /** * The server-side encryption key configuration for a customer-provided encryption key specified for creating a data store. */ sseConfiguration?: pulumi.Input; /** * An array of key-value pairs to apply to this resource. * * For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . */ tags?: pulumi.Input[]>; }