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

ModifyScheduledActionMessage

import type { ModifyScheduledActionMessage } from "https://aws-api.deno.dev/v0.3/services/redshift.ts?docs=full";
interface ModifyScheduledActionMessage {
Enable?: boolean | null;
EndTime?: Date | number | null;
IamRole?: string | null;
Schedule?: string | null;
ScheduledActionDescription?: string | null;
ScheduledActionName: string;
StartTime?: Date | number | null;
TargetAction?: ScheduledActionType | null;
}

§Properties

§
Enable?: boolean | null
[src]

A modified enable flag of the scheduled action. If true, the scheduled action is active. If false, the scheduled action is disabled.

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

A modified end time of the scheduled action. For more information about this parameter, see "ScheduledAction".

§
IamRole?: string | null
[src]

A different IAM role to assume to run the target action. For more information about this parameter, see "ScheduledAction".

§
Schedule?: string | null
[src]

A modified schedule in either at( ) or cron( ) format. For more information about this parameter, see "ScheduledAction".

§
ScheduledActionDescription?: string | null
[src]

A modified description of the scheduled action.

§
ScheduledActionName: string
[src]

The name of the scheduled action to modify.

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

A modified start time of the scheduled action. For more information about this parameter, see "ScheduledAction".

§
TargetAction?: ScheduledActionType | null
[src]

A modified JSON format of the scheduled action. For more information about this parameter, see "ScheduledAction".