import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import type { ListChildHoursOfOperationsRequest, ListChildHoursOfOperationsResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListChildHoursOfOperationsCommand}. */ export interface ListChildHoursOfOperationsCommandInput extends ListChildHoursOfOperationsRequest { } /** * @public * * The output of {@link ListChildHoursOfOperationsCommand}. */ export interface ListChildHoursOfOperationsCommandOutput extends ListChildHoursOfOperationsResponse, __MetadataBearer { } declare const ListChildHoursOfOperationsCommand_base: { new (input: ListChildHoursOfOperationsCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ListChildHoursOfOperationsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Provides information about the child hours of operations for the specified parent hours of operation.

*

For more information about child hours of operations, see Link overrides from different hours of operation in the * Administrator Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ConnectClient, ListChildHoursOfOperationsCommand } from "@aws-sdk/client-connect"; // ES Modules import * // const { ConnectClient, ListChildHoursOfOperationsCommand } = require("@aws-sdk/client-connect"); // CommonJS import * // import type { ConnectClientConfig } from "@aws-sdk/client-connect"; * const config = {}; // type is ConnectClientConfig * const client = new ConnectClient(config); * const input = { // ListChildHoursOfOperationsRequest * InstanceId: "STRING_VALUE", // required * HoursOfOperationId: "STRING_VALUE", // required * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListChildHoursOfOperationsCommand(input); * const response = await client.send(command); * // { // ListChildHoursOfOperationsResponse * // NextToken: "STRING_VALUE", * // ChildHoursOfOperationsSummaryList: [ // ChildHoursOfOperationsList * // { // HoursOfOperationsIdentifier * // Name: "STRING_VALUE", // required * // Id: "STRING_VALUE", // required * // Arn: "STRING_VALUE", * // }, * // ], * // LastModifiedTime: new Date("TIMESTAMP"), * // LastModifiedRegion: "STRING_VALUE", * // }; * * ``` * * @param ListChildHoursOfOperationsCommandInput - {@link ListChildHoursOfOperationsCommandInput} * @returns {@link ListChildHoursOfOperationsCommandOutput} * @see {@link ListChildHoursOfOperationsCommandInput} for command's `input` shape. * @see {@link ListChildHoursOfOperationsCommandOutput} for command's `response` shape. * @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape. * * @throws {@link InternalServiceException} (server fault) *

Request processing failed because of an error or failure with the service.

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

One or more of the specified parameters are not valid.

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

The request is not valid.

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

The specified resource was not found.

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

The throttling limit has been exceeded.

* * @throws {@link ConnectServiceException} *

Base exception class for all service exceptions from Connect service.

* * * @public */ export declare class ListChildHoursOfOperationsCommand extends ListChildHoursOfOperationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListChildHoursOfOperationsRequest; output: ListChildHoursOfOperationsResponse; }; sdk: { input: ListChildHoursOfOperationsCommandInput; output: ListChildHoursOfOperationsCommandOutput; }; }; }