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

LastCrawlInfo

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

Status and error information about the most recent crawl.

interface LastCrawlInfo {
ErrorMessage?: string | null;
LogGroup?: string | null;
LogStream?: string | null;
MessagePrefix?: string | null;
StartTime?: Date | number | null;
Status?: LastCrawlStatus | null;
}

§Properties

§
ErrorMessage?: string | null
[src]

If an error occurred, the error information about the last crawl.

§
LogGroup?: string | null
[src]

The log group for the last crawl.

§
LogStream?: string | null
[src]

The log stream for the last crawl.

§
MessagePrefix?: string | null
[src]

The prefix for a message about this crawl.

§
StartTime?: Date | number | null
[src]

The time at which the crawl started.

§
Status?: LastCrawlStatus | null
[src]

Status of the last crawl.