@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
49 lines (48 loc) • 1.96 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* HealthLake FHIR Datastore
*/
export declare function getFhirDatastore(args: GetFhirDatastoreArgs, opts?: pulumi.InvokeOptions): Promise<GetFhirDatastoreResult>;
export interface GetFhirDatastoreArgs {
/**
* The Amazon generated Data Store id. This id is in the output from the initial Data Store creation call.
*/
datastoreId: string;
}
export interface GetFhirDatastoreResult {
readonly createdAt?: outputs.healthlake.FhirDatastoreCreatedAt;
/**
* 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?: string;
/**
* The endpoint for the created Data Store.
*/
readonly datastoreEndpoint?: string;
/**
* The Amazon generated Data Store id. This id is in the output from the initial Data Store creation call.
*/
readonly datastoreId?: string;
/**
* The status of the FHIR Data Store. Possible statuses are ‘CREATING’, ‘ACTIVE’, ‘DELETING’, ‘DELETED’.
*/
readonly datastoreStatus?: enums.healthlake.FhirDatastoreDatastoreStatus;
/**
* 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?: outputs.Tag[];
}
/**
* HealthLake FHIR Datastore
*/
export declare function getFhirDatastoreOutput(args: GetFhirDatastoreOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFhirDatastoreResult>;
export interface GetFhirDatastoreOutputArgs {
/**
* The Amazon generated Data Store id. This id is in the output from the initial Data Store creation call.
*/
datastoreId: pulumi.Input<string>;
}