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

ListCrawlsRequest

import type { ListCrawlsRequest } from "https://aws-api.deno.dev/v0.4/services/glue.ts?docs=full";
interface ListCrawlsRequest {
CrawlerName: string;
Filters?: CrawlsFilter[] | null;
MaxResults?: number | null;
NextToken?: string | null;
}

§Properties

§
CrawlerName: string
[src]

The name of the crawler whose runs you want to retrieve.

§
Filters?: CrawlsFilter[] | null
[src]

Filters the crawls by the criteria you specify in a list of CrawlsFilter objects.

§
MaxResults?: number | null
[src]

The maximum number of results to return. The default is 20, and maximum is 100.

§
NextToken?: string | null
[src]

A continuation token, if this is a continuation call.