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

ScheduleSummary

import type { ScheduleSummary } from "https://aws-api.deno.dev/v0.4/services/scheduler.ts?docs=full";

The details of a schedule.

interface ScheduleSummary {
Arn?: string | null;
CreationDate?: Date | number | null;
GroupName?: string | null;
LastModificationDate?: Date | number | null;
Name?: string | null;
State?: ScheduleState | null;
Target?: TargetSummary | null;
}

§Properties

§
Arn?: string | null
[src]

The Amazon Resource Name (ARN) of the schedule.

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

The time at which the schedule was created.

§
GroupName?: string | null
[src]

The name of the schedule group associated with this schedule.

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

The time at which the schedule was last modified.

§
Name?: string | null
[src]

The name of the schedule.

§
State?: ScheduleState | null
[src]

Specifies whether the schedule is enabled or disabled.

§
Target?: TargetSummary | null
[src]

The schedule's target details.