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

GetExportResponse

import type { GetExportResponse } from "https://aws-api.deno.dev/v0.3/services/lexmodelbuildingservice.ts?docs=full";
interface GetExportResponse {
exportStatus?: ExportStatus | null;
exportType?: ExportType | null;
failureReason?: string | null;
name?: string | null;
resourceType?: ResourceType | null;
url?: string | null;
version?: string | null;
}

§Properties

§
exportStatus?: ExportStatus | null
[src]

The status of the export.

  • IN_PROGRESS - The export is in progress.
  • READY - The export is complete.
  • FAILED - The export could not be completed.
§
exportType?: ExportType | null
[src]

The format of the exported data.

§
failureReason?: string | null
[src]

If status is FAILED, Amazon Lex provides the reason that it failed to export the resource.

§
name?: string | null
[src]

The name of the bot being exported.

§
resourceType?: ResourceType | null
[src]

The type of the exported resource.

§
url?: string | null
[src]

An S3 pre-signed URL that provides the location of the exported resource. The exported resource is a ZIP archive that contains the exported resource in JSON format. The structure of the archive may change. Your code should not rely on the archive structure.

§
version?: string | null
[src]

The version of the bot being exported.