import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeScheduleRequest, DescribeScheduleResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeScheduleCommand}. */ export interface DescribeScheduleCommandInput extends DescribeScheduleRequest { } /** * @public * * The output of {@link DescribeScheduleCommand}. */ export interface DescribeScheduleCommandOutput extends DescribeScheduleResponse, __MetadataBearer { } declare const DescribeScheduleCommand_base: { new (input: DescribeScheduleCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeScheduleCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the definition of a specific DataBrew schedule.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, DescribeScheduleCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, DescribeScheduleCommand } = require("@aws-sdk/client-databrew"); // CommonJS import * // import type { DataBrewClientConfig } from "@aws-sdk/client-databrew"; * const config = {}; // type is DataBrewClientConfig * const client = new DataBrewClient(config); * const input = { // DescribeScheduleRequest * Name: "STRING_VALUE", // required * }; * const command = new DescribeScheduleCommand(input); * const response = await client.send(command); * // { // DescribeScheduleResponse * // CreateDate: new Date("TIMESTAMP"), * // CreatedBy: "STRING_VALUE", * // JobNames: [ // JobNameList * // "STRING_VALUE", * // ], * // LastModifiedBy: "STRING_VALUE", * // LastModifiedDate: new Date("TIMESTAMP"), * // ResourceArn: "STRING_VALUE", * // CronExpression: "STRING_VALUE", * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // Name: "STRING_VALUE", // required * // }; * * ``` * * @param DescribeScheduleCommandInput - {@link DescribeScheduleCommandInput} * @returns {@link DescribeScheduleCommandOutput} * @see {@link DescribeScheduleCommandInput} for command's `input` shape. * @see {@link DescribeScheduleCommandOutput} for command's `response` shape. * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape. * * @throws {@link ResourceNotFoundException} (client fault) *

One or more resources can't be found.

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

The input parameters for this request failed validation.

* * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* * * @public */ export declare class DescribeScheduleCommand extends DescribeScheduleCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeScheduleRequest; output: DescribeScheduleResponse; }; sdk: { input: DescribeScheduleCommandInput; output: DescribeScheduleCommandOutput; }; }; }