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

ListSchedulesInput

import type { ListSchedulesInput } from "https://aws-api.deno.dev/v0.4/services/scheduler.ts?docs=full";
interface ListSchedulesInput {
GroupName?: string | null;
MaxResults?: number | null;
NamePrefix?: string | null;
NextToken?: string | null;
State?: ScheduleState | null;
}

§Properties

§
GroupName?: string | null
[src]

If specified, only lists the schedules whose associated schedule group matches the given filter.

§
MaxResults?: number | null
[src]

If specified, limits the number of results returned by this operation. The operation also returns a NextToken which you can use in a subsequent operation to retrieve the next set of results.

§
NamePrefix?: string | null
[src]

Schedule name prefix to return the filtered list of resources.

§
NextToken?: string | null
[src]

The token returned by a previous call to retrieve the next set of results.

§
State?: ScheduleState | null
[src]

If specified, only lists the schedules whose current state matches the given filter.