Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HealthLake

import { HealthLake } from "https://aws-api.deno.dev/v0.4/services/healthlake.ts?docs=full";
class HealthLake {
constructor(apiFactory: client.ApiFactory);
async createFHIRDatastore(params: CreateFHIRDatastoreRequest, opts?: client.RequestOptions): Promise<CreateFHIRDatastoreResponse>;
async deleteFHIRDatastore(params?: DeleteFHIRDatastoreRequest, opts?: client.RequestOptions): Promise<DeleteFHIRDatastoreResponse>;
async describeFHIRDatastore(params?: DescribeFHIRDatastoreRequest, opts?: client.RequestOptions): Promise<DescribeFHIRDatastoreResponse>;
async describeFHIRExportJob(params: DescribeFHIRExportJobRequest, opts?: client.RequestOptions): Promise<DescribeFHIRExportJobResponse>;
async describeFHIRImportJob(params: DescribeFHIRImportJobRequest, opts?: client.RequestOptions): Promise<DescribeFHIRImportJobResponse>;
async listFHIRDatastores(params?: ListFHIRDatastoresRequest, opts?: client.RequestOptions): Promise<ListFHIRDatastoresResponse>;
async listFHIRExportJobs(params: ListFHIRExportJobsRequest, opts?: client.RequestOptions): Promise<ListFHIRExportJobsResponse>;
async listFHIRImportJobs(params: ListFHIRImportJobsRequest, opts?: client.RequestOptions): Promise<ListFHIRImportJobsResponse>;
async listTagsForResource(params: ListTagsForResourceRequest, opts?: client.RequestOptions): Promise<ListTagsForResourceResponse>;
async startFHIRExportJob(params: StartFHIRExportJobRequest, opts?: client.RequestOptions): Promise<StartFHIRExportJobResponse>;
async startFHIRImportJob(params: StartFHIRImportJobRequest, opts?: client.RequestOptions): Promise<StartFHIRImportJobResponse>;
async tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>;
async untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new HealthLake(apiFactory: client.ApiFactory)
[src]

§Methods

§

Creates a Data Store that can ingest and export FHIR formatted data.

§

Deletes a Data Store.

§

Gets the properties associated with the FHIR Data Store, including the Data Store ID, Data Store ARN, Data Store name, Data Store status, created at, Data Store type version, and Data Store endpoint.

§

Displays the properties of a FHIR export job, including the ID, ARN, name, and the status of the job.

§

Displays the properties of a FHIR import job, including the ID, ARN, name, and the status of the job.

§

Lists all FHIR Data Stores that are in the user’s account, regardless of Data Store status.

§

Lists all FHIR export jobs associated with an account and their statuses.

§

Lists all FHIR import jobs associated with an account and their statuses.

§

Returns a list of all existing tags associated with a Data Store.

§

Begins a FHIR export job.

§

Begins a FHIR Import job.

§
tagResource(params: TagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Adds a user specifed key and value tag to a Data Store.

§
untagResource(params: UntagResourceRequest, opts?: client.RequestOptions): Promise<void>
[src]

Removes tags from a Data Store.

§Static Properties