import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { PutBandwidthRateLimitScheduleInput, PutBandwidthRateLimitScheduleOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link PutBandwidthRateLimitScheduleCommand}. */ export interface PutBandwidthRateLimitScheduleCommandInput extends PutBandwidthRateLimitScheduleInput { } /** * @public * * The output of {@link PutBandwidthRateLimitScheduleCommand}. */ export interface PutBandwidthRateLimitScheduleCommandOutput extends PutBandwidthRateLimitScheduleOutput, __MetadataBearer { } declare const PutBandwidthRateLimitScheduleCommand_base: { new (input: PutBandwidthRateLimitScheduleCommandInput): import("@smithy/core/client").CommandImpl; new (input: PutBandwidthRateLimitScheduleCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

This action sets the bandwidth rate limit schedule for a specified gateway. By default, gateways do not have a bandwidth rate limit schedule, which means no bandwidth rate limiting is in effect. Use this to initiate a gateway's bandwidth rate limit schedule.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { BackupGatewayClient, PutBandwidthRateLimitScheduleCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import * // const { BackupGatewayClient, PutBandwidthRateLimitScheduleCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import * // import type { BackupGatewayClientConfig } from "@aws-sdk/client-backup-gateway"; * const config = {}; // type is BackupGatewayClientConfig * const client = new BackupGatewayClient(config); * const input = { // PutBandwidthRateLimitScheduleInput * GatewayArn: "STRING_VALUE", // required * BandwidthRateLimitIntervals: [ // BandwidthRateLimitIntervals // required * { // BandwidthRateLimitInterval * AverageUploadRateLimitInBitsPerSec: Number("long"), * StartHourOfDay: Number("int"), // required * EndHourOfDay: Number("int"), // required * StartMinuteOfHour: Number("int"), // required * EndMinuteOfHour: Number("int"), // required * DaysOfWeek: [ // DaysOfWeek // required * Number("int"), * ], * }, * ], * }; * const command = new PutBandwidthRateLimitScheduleCommand(input); * const response = await client.send(command); * // { // PutBandwidthRateLimitScheduleOutput * // GatewayArn: "STRING_VALUE", * // }; * * ``` * * @param PutBandwidthRateLimitScheduleCommandInput - {@link PutBandwidthRateLimitScheduleCommandInput} * @returns {@link PutBandwidthRateLimitScheduleCommandOutput} * @see {@link PutBandwidthRateLimitScheduleCommandInput} for command's `input` shape. * @see {@link PutBandwidthRateLimitScheduleCommandOutput} for command's `response` shape. * @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape. * * @throws {@link ResourceNotFoundException} (client fault) *

A resource that is required for the action wasn't found.

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

The operation did not succeed because an internal error occurred. Try again later.

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

TPS has been limited to protect against intentional or unintentional high request volumes.

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

The operation did not succeed because a validation error occurred.

* * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* * * @public */ export declare class PutBandwidthRateLimitScheduleCommand extends PutBandwidthRateLimitScheduleCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: PutBandwidthRateLimitScheduleInput; output: PutBandwidthRateLimitScheduleOutput; }; sdk: { input: PutBandwidthRateLimitScheduleCommandInput; output: PutBandwidthRateLimitScheduleCommandOutput; }; }; }