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

Crawl

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

The details of a crawl in the workflow.

interface Crawl {
CompletedOn?: Date | number | null;
ErrorMessage?: string | null;
LogGroup?: string | null;
LogStream?: string | null;
StartedOn?: Date | number | null;
State?: CrawlState | null;
}

§Properties

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

The date and time on which the crawl completed.

§
ErrorMessage?: string | null
[src]

The error message associated with the crawl.

§
LogGroup?: string | null
[src]

The log group associated with the crawl.

§
LogStream?: string | null
[src]

The log stream associated with the crawl.

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

The date and time on which the crawl started.

§
State?: CrawlState | null
[src]

The state of the crawler.