import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types"; import { type CreateScheduleCommandInput, type CreateScheduleCommandOutput } from "./commands/CreateScheduleCommand"; import { type CreateScheduleGroupCommandInput, type CreateScheduleGroupCommandOutput } from "./commands/CreateScheduleGroupCommand"; import { type DeleteScheduleCommandInput, type DeleteScheduleCommandOutput } from "./commands/DeleteScheduleCommand"; import { type DeleteScheduleGroupCommandInput, type DeleteScheduleGroupCommandOutput } from "./commands/DeleteScheduleGroupCommand"; import { type GetScheduleCommandInput, type GetScheduleCommandOutput } from "./commands/GetScheduleCommand"; import { type GetScheduleGroupCommandInput, type GetScheduleGroupCommandOutput } from "./commands/GetScheduleGroupCommand"; import { type ListScheduleGroupsCommandInput, type ListScheduleGroupsCommandOutput } from "./commands/ListScheduleGroupsCommand"; import { type ListSchedulesCommandInput, type ListSchedulesCommandOutput } from "./commands/ListSchedulesCommand"; import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand"; import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand"; import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand"; import { type UpdateScheduleCommandInput, type UpdateScheduleCommandOutput } from "./commands/UpdateScheduleCommand"; import { SchedulerClient } from "./SchedulerClient"; export interface Scheduler { /** * @see {@link CreateScheduleCommand} */ createSchedule(args: CreateScheduleCommandInput, options?: __HttpHandlerOptions): Promise; createSchedule(args: CreateScheduleCommandInput, cb: (err: any, data?: CreateScheduleCommandOutput) => void): void; createSchedule(args: CreateScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateScheduleCommandOutput) => void): void; /** * @see {@link CreateScheduleGroupCommand} */ createScheduleGroup(args: CreateScheduleGroupCommandInput, options?: __HttpHandlerOptions): Promise; createScheduleGroup(args: CreateScheduleGroupCommandInput, cb: (err: any, data?: CreateScheduleGroupCommandOutput) => void): void; createScheduleGroup(args: CreateScheduleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateScheduleGroupCommandOutput) => void): void; /** * @see {@link DeleteScheduleCommand} */ deleteSchedule(args: DeleteScheduleCommandInput, options?: __HttpHandlerOptions): Promise; deleteSchedule(args: DeleteScheduleCommandInput, cb: (err: any, data?: DeleteScheduleCommandOutput) => void): void; deleteSchedule(args: DeleteScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteScheduleCommandOutput) => void): void; /** * @see {@link DeleteScheduleGroupCommand} */ deleteScheduleGroup(args: DeleteScheduleGroupCommandInput, options?: __HttpHandlerOptions): Promise; deleteScheduleGroup(args: DeleteScheduleGroupCommandInput, cb: (err: any, data?: DeleteScheduleGroupCommandOutput) => void): void; deleteScheduleGroup(args: DeleteScheduleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteScheduleGroupCommandOutput) => void): void; /** * @see {@link GetScheduleCommand} */ getSchedule(args: GetScheduleCommandInput, options?: __HttpHandlerOptions): Promise; getSchedule(args: GetScheduleCommandInput, cb: (err: any, data?: GetScheduleCommandOutput) => void): void; getSchedule(args: GetScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetScheduleCommandOutput) => void): void; /** * @see {@link GetScheduleGroupCommand} */ getScheduleGroup(args: GetScheduleGroupCommandInput, options?: __HttpHandlerOptions): Promise; getScheduleGroup(args: GetScheduleGroupCommandInput, cb: (err: any, data?: GetScheduleGroupCommandOutput) => void): void; getScheduleGroup(args: GetScheduleGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetScheduleGroupCommandOutput) => void): void; /** * @see {@link ListScheduleGroupsCommand} */ listScheduleGroups(): Promise; listScheduleGroups(args: ListScheduleGroupsCommandInput, options?: __HttpHandlerOptions): Promise; listScheduleGroups(args: ListScheduleGroupsCommandInput, cb: (err: any, data?: ListScheduleGroupsCommandOutput) => void): void; listScheduleGroups(args: ListScheduleGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListScheduleGroupsCommandOutput) => void): void; /** * @see {@link ListSchedulesCommand} */ listSchedules(): Promise; listSchedules(args: ListSchedulesCommandInput, options?: __HttpHandlerOptions): Promise; listSchedules(args: ListSchedulesCommandInput, cb: (err: any, data?: ListSchedulesCommandOutput) => void): void; listSchedules(args: ListSchedulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSchedulesCommandOutput) => void): void; /** * @see {@link ListTagsForResourceCommand} */ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise; listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void; listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void; /** * @see {@link TagResourceCommand} */ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise; tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void; tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void; /** * @see {@link UntagResourceCommand} */ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise; untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void; untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void; /** * @see {@link UpdateScheduleCommand} */ updateSchedule(args: UpdateScheduleCommandInput, options?: __HttpHandlerOptions): Promise; updateSchedule(args: UpdateScheduleCommandInput, cb: (err: any, data?: UpdateScheduleCommandOutput) => void): void; updateSchedule(args: UpdateScheduleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateScheduleCommandOutput) => void): void; /** * @see {@link ListScheduleGroupsCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link ListScheduleGroupsCommandOutput}. */ paginateListScheduleGroups(args?: ListScheduleGroupsCommandInput, paginationConfig?: Omit): Paginator; /** * @see {@link ListSchedulesCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link ListSchedulesCommandOutput}. */ paginateListSchedules(args?: ListSchedulesCommandInput, paginationConfig?: Omit): Paginator; } /** *

* Amazon EventBridge Scheduler is a serverless scheduler that allows you to create, run, and manage tasks from one central, managed service. * EventBridge Scheduler delivers your tasks reliably, with built-in mechanisms that adjust your schedules based on the availability of downstream targets. * The following reference lists the available API actions, and data types for EventBridge Scheduler. *

* @public */ export declare class Scheduler extends SchedulerClient implements Scheduler { }