import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListMediaPipelinesRequest, ListMediaPipelinesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListMediaPipelinesCommand}. */ export interface ListMediaPipelinesCommandInput extends ListMediaPipelinesRequest { } /** * @public * * The output of {@link ListMediaPipelinesCommand}. */ export interface ListMediaPipelinesCommandOutput extends ListMediaPipelinesResponse, __MetadataBearer { } declare const ListMediaPipelinesCommand_base: { new (input: ListMediaPipelinesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListMediaPipelinesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns a list of media pipelines.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ChimeSDKMediaPipelinesClient, ListMediaPipelinesCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import * // const { ChimeSDKMediaPipelinesClient, ListMediaPipelinesCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS import * // import type { ChimeSDKMediaPipelinesClientConfig } from "@aws-sdk/client-chime-sdk-media-pipelines"; * const config = {}; // type is ChimeSDKMediaPipelinesClientConfig * const client = new ChimeSDKMediaPipelinesClient(config); * const input = { // ListMediaPipelinesRequest * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListMediaPipelinesCommand(input); * const response = await client.send(command); * // { // ListMediaPipelinesResponse * // MediaPipelines: [ // MediaPipelineList * // { // MediaPipelineSummary * // MediaPipelineId: "STRING_VALUE", * // MediaPipelineArn: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListMediaPipelinesCommandInput - {@link ListMediaPipelinesCommandInput} * @returns {@link ListMediaPipelinesCommandOutput} * @see {@link ListMediaPipelinesCommandInput} for command's `input` shape. * @see {@link ListMediaPipelinesCommandOutput} for command's `response` shape. * @see {@link ChimeSDKMediaPipelinesClientResolvedConfig | config} for ChimeSDKMediaPipelinesClient's `config` shape. * * @throws {@link BadRequestException} (client fault) *

The input parameters don't match the service's restrictions.

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

The client is permanently forbidden from making the request.

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

The request exceeds the resource limit.

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

The service encountered an unexpected error.

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

The service is currently unavailable.

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

The client exceeded its request rate limit.

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

The client is not currently authorized to make the request.

* * @throws {@link ChimeSDKMediaPipelinesServiceException} *

Base exception class for all service exceptions from ChimeSDKMediaPipelines service.

* * * @public */ export declare class ListMediaPipelinesCommand extends ListMediaPipelinesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListMediaPipelinesRequest; output: ListMediaPipelinesResponse; }; sdk: { input: ListMediaPipelinesCommandInput; output: ListMediaPipelinesCommandOutput; }; }; }