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

Status

import type { Status } from "https://aws-api.deno.dev/v0.3/services/kendra.ts?docs=full";

Provides information about the status of documents submitted for indexing.

interface Status {
DocumentId?: string | null;
DocumentStatus?: DocumentStatus | null;
FailureCode?: string | null;
FailureReason?: string | null;
}

§Properties

§
DocumentId?: string | null
[src]

The unique identifier of the document.

§
DocumentStatus?: DocumentStatus | null
[src]

The current status of a document.

If the document was submitted for deletion, the status is NOT_FOUND after the document is deleted.

§
FailureCode?: string | null
[src]

Indicates the source of the error.

§
FailureReason?: string | null
[src]

Provides detailed information about why the document couldn't be indexed. Use this information to correct the error before you resubmit the document for indexing.