import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; import type { ListSignalingChannelsInput, ListSignalingChannelsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListSignalingChannelsCommand}. */ export interface ListSignalingChannelsCommandInput extends ListSignalingChannelsInput { } /** * @public * * The output of {@link ListSignalingChannelsCommand}. */ export interface ListSignalingChannelsCommandOutput extends ListSignalingChannelsOutput, __MetadataBearer { } declare const ListSignalingChannelsCommand_base: { new (input: ListSignalingChannelsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListSignalingChannelsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns an array of ChannelInfo objects. Each object describes a * signaling channel. To retrieve only those channels that satisfy a specific condition, * you can specify a ChannelNameCondition.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { KinesisVideoClient, ListSignalingChannelsCommand } from "@aws-sdk/client-kinesis-video"; // ES Modules import * // const { KinesisVideoClient, ListSignalingChannelsCommand } = require("@aws-sdk/client-kinesis-video"); // CommonJS import * // import type { KinesisVideoClientConfig } from "@aws-sdk/client-kinesis-video"; * const config = {}; // type is KinesisVideoClientConfig * const client = new KinesisVideoClient(config); * const input = { // ListSignalingChannelsInput * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * ChannelNameCondition: { // ChannelNameCondition * ComparisonOperator: "BEGINS_WITH", * ComparisonValue: "STRING_VALUE", * }, * }; * const command = new ListSignalingChannelsCommand(input); * const response = await client.send(command); * // { // ListSignalingChannelsOutput * // ChannelInfoList: [ // ChannelInfoList * // { // ChannelInfo * // ChannelName: "STRING_VALUE", * // ChannelARN: "STRING_VALUE", * // ChannelType: "SINGLE_MASTER" || "FULL_MESH", * // ChannelStatus: "CREATING" || "ACTIVE" || "UPDATING" || "DELETING", * // CreationTime: new Date("TIMESTAMP"), * // SingleMasterConfiguration: { // SingleMasterConfiguration * // MessageTtlSeconds: Number("int"), * // }, * // Version: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListSignalingChannelsCommandInput - {@link ListSignalingChannelsCommandInput} * @returns {@link ListSignalingChannelsCommandOutput} * @see {@link ListSignalingChannelsCommandInput} for command's `input` shape. * @see {@link ListSignalingChannelsCommandOutput} for command's `response` shape. * @see {@link KinesisVideoClientResolvedConfig | config} for KinesisVideoClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have required permissions to perform this operation.

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

Kinesis Video Streams has throttled the request because you have exceeded the limit of * allowed client calls. Try making the call later.

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

The value for this input parameter is invalid.

* * @throws {@link KinesisVideoServiceException} *

Base exception class for all service exceptions from KinesisVideo service.

* * * @public */ export declare class ListSignalingChannelsCommand extends ListSignalingChannelsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListSignalingChannelsInput; output: ListSignalingChannelsOutput; }; sdk: { input: ListSignalingChannelsCommandInput; output: ListSignalingChannelsCommandOutput; }; }; }