import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateScheduleRequest, CreateScheduleResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CreateScheduleCommand}. */ export interface CreateScheduleCommandInput extends CreateScheduleRequest { } /** * @public * * The output of {@link CreateScheduleCommand}. */ export interface CreateScheduleCommandOutput extends CreateScheduleResponse, __MetadataBearer { } declare const CreateScheduleCommand_base: { new (input: CreateScheduleCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateScheduleCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Creates a new schedule for one or more DataBrew jobs. Jobs can be run at a specific * date and time, or at regular intervals.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, CreateScheduleCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, CreateScheduleCommand } = 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 = { // CreateScheduleRequest * JobNames: [ // JobNameList * "STRING_VALUE", * ], * CronExpression: "STRING_VALUE", // required * Tags: { // TagMap * "": "STRING_VALUE", * }, * Name: "STRING_VALUE", // required * }; * const command = new CreateScheduleCommand(input); * const response = await client.send(command); * // { // CreateScheduleResponse * // Name: "STRING_VALUE", // required * // }; * * ``` * * @param CreateScheduleCommandInput - {@link CreateScheduleCommandInput} * @returns {@link CreateScheduleCommandOutput} * @see {@link CreateScheduleCommandInput} for command's `input` shape. * @see {@link CreateScheduleCommandOutput} for command's `response` shape. * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

Updating or deleting a resource can cause an inconsistent state.

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

A service quota is exceeded.

* * @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 CreateScheduleCommand extends CreateScheduleCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateScheduleRequest; output: CreateScheduleResponse; }; sdk: { input: CreateScheduleCommandInput; output: CreateScheduleCommandOutput; }; }; }