import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateScheduleGroupInput, CreateScheduleGroupOutput } from "../models/models_0"; import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CreateScheduleGroupCommand}. */ export interface CreateScheduleGroupCommandInput extends CreateScheduleGroupInput { } /** * @public * * The output of {@link CreateScheduleGroupCommand}. */ export interface CreateScheduleGroupCommandOutput extends CreateScheduleGroupOutput, __MetadataBearer { } declare const CreateScheduleGroupCommand_base: { new (input: CreateScheduleGroupCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateScheduleGroupCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Creates the specified schedule group.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SchedulerClient, CreateScheduleGroupCommand } from "@aws-sdk/client-scheduler"; // ES Modules import * // const { SchedulerClient, CreateScheduleGroupCommand } = 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 = { // CreateScheduleGroupInput * Name: "STRING_VALUE", // required * Tags: [ // TagList * { // Tag * Key: "STRING_VALUE", // required * Value: "STRING_VALUE", // required * }, * ], * ClientToken: "STRING_VALUE", * }; * const command = new CreateScheduleGroupCommand(input); * const response = await client.send(command); * // { // CreateScheduleGroupOutput * // ScheduleGroupArn: "STRING_VALUE", // required * // }; * * ``` * * @param CreateScheduleGroupCommandInput - {@link CreateScheduleGroupCommandInput} * @returns {@link CreateScheduleGroupCommandOutput} * @see {@link CreateScheduleGroupCommandInput} for command's `input` shape. * @see {@link CreateScheduleGroupCommandOutput} for command's `response` shape. * @see {@link SchedulerClientResolvedConfig | config} for SchedulerClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

Updating or deleting the resource can cause an inconsistent state.

* * @throws {@link InternalServerException} (server fault) *

Unexpected error encountered while processing the request.

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

The request exceeds a service quota.

* * @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 CreateScheduleGroupCommand extends CreateScheduleGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateScheduleGroupInput; output: CreateScheduleGroupOutput; }; sdk: { input: CreateScheduleGroupCommandInput; output: CreateScheduleGroupCommandOutput; }; }; }