import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListSchedulesInput, ListSchedulesOutput } from "../models/models_0"; import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListSchedulesCommand}. */ export interface ListSchedulesCommandInput extends ListSchedulesInput { } /** * @public * * The output of {@link ListSchedulesCommand}. */ export interface ListSchedulesCommandOutput extends ListSchedulesOutput, __MetadataBearer { } declare const ListSchedulesCommand_base: { new (input: ListSchedulesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListSchedulesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Returns a paginated list of your EventBridge Scheduler schedules.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SchedulerClient, ListSchedulesCommand } from "@aws-sdk/client-scheduler"; // ES Modules import * // const { SchedulerClient, ListSchedulesCommand } = require("@aws-sdk/client-scheduler"); // CommonJS import * // import type { SchedulerClientConfig } from "@aws-sdk/client-scheduler"; * const config = {}; // type is SchedulerClientConfig * const client = new SchedulerClient(config); * const input = { // ListSchedulesInput * GroupName: "STRING_VALUE", * NamePrefix: "STRING_VALUE", * State: "STRING_VALUE", * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListSchedulesCommand(input); * const response = await client.send(command); * // { // ListSchedulesOutput * // NextToken: "STRING_VALUE", * // Schedules: [ // ScheduleList // required * // { // ScheduleSummary * // Arn: "STRING_VALUE", * // Name: "STRING_VALUE", * // GroupName: "STRING_VALUE", * // State: "STRING_VALUE", * // CreationDate: new Date("TIMESTAMP"), * // LastModificationDate: new Date("TIMESTAMP"), * // Target: { // TargetSummary * // Arn: "STRING_VALUE", // required * // }, * // }, * // ], * // }; * * ``` * * @param ListSchedulesCommandInput - {@link ListSchedulesCommandInput} * @returns {@link ListSchedulesCommandOutput} * @see {@link ListSchedulesCommandInput} for command's `input` shape. * @see {@link ListSchedulesCommandOutput} for command's `response` shape. * @see {@link SchedulerClientResolvedConfig | config} for SchedulerClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

Unexpected error encountered while processing the request.

* * @throws {@link ResourceNotFoundException} (client fault) *

The request references a resource which does not exist.

* * @throws {@link ThrottlingException} (client fault) *

The request was denied due to request throttling.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the constraints specified by an AWS service.

* * @throws {@link SchedulerServiceException} *

Base exception class for all service exceptions from Scheduler service.

* * * @public */ export declare class ListSchedulesCommand extends ListSchedulesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListSchedulesInput; output: ListSchedulesOutput; }; sdk: { input: ListSchedulesCommandInput; output: ListSchedulesCommandOutput; }; }; }