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.1/services/healthlake.ts?docs=full";
class HealthLake {
constructor(apiFactory: client.ApiFactory);
async createFHIRDatastore(params: CreateFHIRDatastoreRequest): Promise<CreateFHIRDatastoreResponse>;
async deleteFHIRDatastore(params?: DeleteFHIRDatastoreRequest): Promise<DeleteFHIRDatastoreResponse>;
async describeFHIRDatastore(params?: DescribeFHIRDatastoreRequest): Promise<DescribeFHIRDatastoreResponse>;
async describeFHIRExportJob(params: DescribeFHIRExportJobRequest): Promise<DescribeFHIRExportJobResponse>;
async describeFHIRImportJob(params: DescribeFHIRImportJobRequest): Promise<DescribeFHIRImportJobResponse>;
async listFHIRDatastores(params?: ListFHIRDatastoresRequest): Promise<ListFHIRDatastoresResponse>;
async startFHIRExportJob(params: StartFHIRExportJobRequest): Promise<StartFHIRExportJobResponse>;
async startFHIRImportJob(params: StartFHIRImportJobRequest): Promise<StartFHIRImportJobResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

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

§Methods

§
createFHIRDatastore(params: CreateFHIRDatastoreRequest): Promise<CreateFHIRDatastoreResponse>
[src]

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

§
deleteFHIRDatastore(params?: DeleteFHIRDatastoreRequest): Promise<DeleteFHIRDatastoreResponse>
[src]

Deletes a Data Store.

§
describeFHIRDatastore(params?: DescribeFHIRDatastoreRequest): Promise<DescribeFHIRDatastoreResponse>
[src]

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.

§
describeFHIRExportJob(params: DescribeFHIRExportJobRequest): Promise<DescribeFHIRExportJobResponse>
[src]

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

§
describeFHIRImportJob(params: DescribeFHIRImportJobRequest): Promise<DescribeFHIRImportJobResponse>
[src]

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

§
listFHIRDatastores(params?: ListFHIRDatastoresRequest): Promise<ListFHIRDatastoresResponse>
[src]

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

§
startFHIRExportJob(params: StartFHIRExportJobRequest): Promise<StartFHIRExportJobResponse>
[src]

Begins a FHIR export job.

§
startFHIRImportJob(params: StartFHIRImportJobRequest): Promise<StartFHIRImportJobResponse>
[src]

Begins a FHIR Import job.

§Static Properties