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

DocumentInfo

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

Identifies a document for which to retrieve status information

interface DocumentInfo {
Attributes?: DocumentAttribute[] | null;
DocumentId: string;
}

§Properties

§
Attributes?: DocumentAttribute[] | null
[src]

Attributes that identify a specific version of a document to check.

The only valid attributes are:

  • version
  • datasourceId
  • jobExecutionId

The attributes follow these rules:

  • dataSourceId and jobExecutionId must be used together.
  • version is ignored if dataSourceId and jobExecutionId are not provided.
  • If dataSourceId and jobExecutionId are provided, but version is not, the version defaults to "0".
§
DocumentId: string
[src]

The unique identifier of the document.