import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListServiceLevelObjectiveExclusionWindowsInput, ListServiceLevelObjectiveExclusionWindowsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListServiceLevelObjectiveExclusionWindowsCommand}. */ export interface ListServiceLevelObjectiveExclusionWindowsCommandInput extends ListServiceLevelObjectiveExclusionWindowsInput { } /** * @public * * The output of {@link ListServiceLevelObjectiveExclusionWindowsCommand}. */ export interface ListServiceLevelObjectiveExclusionWindowsCommandOutput extends ListServiceLevelObjectiveExclusionWindowsOutput, __MetadataBearer { } declare const ListServiceLevelObjectiveExclusionWindowsCommand_base: { new (input: ListServiceLevelObjectiveExclusionWindowsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListServiceLevelObjectiveExclusionWindowsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves all exclusion windows configured for a specific SLO.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationSignalsClient, ListServiceLevelObjectiveExclusionWindowsCommand } from "@aws-sdk/client-application-signals"; // ES Modules import * // const { ApplicationSignalsClient, ListServiceLevelObjectiveExclusionWindowsCommand } = require("@aws-sdk/client-application-signals"); // CommonJS import * // import type { ApplicationSignalsClientConfig } from "@aws-sdk/client-application-signals"; * const config = {}; // type is ApplicationSignalsClientConfig * const client = new ApplicationSignalsClient(config); * const input = { // ListServiceLevelObjectiveExclusionWindowsInput * Id: "STRING_VALUE", // required * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListServiceLevelObjectiveExclusionWindowsCommand(input); * const response = await client.send(command); * // { // ListServiceLevelObjectiveExclusionWindowsOutput * // ExclusionWindows: [ // ExclusionWindows // required * // { // ExclusionWindow * // Window: { // Window * // DurationUnit: "MINUTE" || "HOUR" || "DAY" || "MONTH", // required * // Duration: Number("int"), // required * // }, * // StartTime: new Date("TIMESTAMP"), * // RecurrenceRule: { // RecurrenceRule * // Expression: "STRING_VALUE", // required * // }, * // Reason: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListServiceLevelObjectiveExclusionWindowsCommandInput - {@link ListServiceLevelObjectiveExclusionWindowsCommandInput} * @returns {@link ListServiceLevelObjectiveExclusionWindowsCommandOutput} * @see {@link ListServiceLevelObjectiveExclusionWindowsCommandInput} for command's `input` shape. * @see {@link ListServiceLevelObjectiveExclusionWindowsCommandOutput} for command's `response` shape. * @see {@link ApplicationSignalsClientResolvedConfig | config} for ApplicationSignalsClient's `config` shape. * * @throws {@link ResourceNotFoundException} (client fault) *

Resource not found.

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

The request was throttled because of quota limits.

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

The resource is not valid.

* * @throws {@link ApplicationSignalsServiceException} *

Base exception class for all service exceptions from ApplicationSignals service.

* * * @public */ export declare class ListServiceLevelObjectiveExclusionWindowsCommand extends ListServiceLevelObjectiveExclusionWindowsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListServiceLevelObjectiveExclusionWindowsInput; output: ListServiceLevelObjectiveExclusionWindowsOutput; }; sdk: { input: ListServiceLevelObjectiveExclusionWindowsCommandInput; output: ListServiceLevelObjectiveExclusionWindowsCommandOutput; }; }; }