We are excited to announce our new API Documentation.
Protected
Returns a list of media pipelines.
Use a bare-bones client and the command you need to make an API call.
import { ChimeSDKMediaPipelinesClient, ListMediaCapturePipelinesCommand } from "@aws-sdk/client-chime-sdk-media-pipelines"; // ES Modules import// const { ChimeSDKMediaPipelinesClient, ListMediaCapturePipelinesCommand } = require("@aws-sdk/client-chime-sdk-media-pipelines"); // CommonJS importconst client = new ChimeSDKMediaPipelinesClient(config);const input = { // ListMediaCapturePipelinesRequest NextToken: "STRING_VALUE", MaxResults: Number("int"),};const command = new ListMediaCapturePipelinesCommand(input);const response = await client.send(command);// { // ListMediaCapturePipelinesResponse// MediaCapturePipelines: [ // MediaCapturePipelineSummaryList// { // MediaCapturePipelineSummary// MediaPipelineId: "STRING_VALUE",// MediaPipelineArn: "STRING_VALUE",// },// ],// NextToken: "STRING_VALUE",// };
ListMediaCapturePipelinesCommandInput
ListMediaCapturePipelinesCommandOutput
input
response
config
BadRequestException (client fault)
The input parameters don't match the service's restrictions.
ForbiddenException (client fault)
The client is permanently forbidden from making the request.
ResourceLimitExceededException (client fault)
The request exceeds the resource limit.
ServiceFailureException (server fault)
The service encountered an unexpected error.
ServiceUnavailableException (server fault)
The service is currently unavailable.
ThrottledClientException (client fault)
The client exceeded its request rate limit.
UnauthorizedClientException (client fault)
The client is not currently authorized to make the request.
ChimeSDKMediaPipelinesServiceException
Base exception class for all service exceptions from ChimeSDKMediaPipelines service.
Readonly
Static
Returns a list of media pipelines.
Example
Use a bare-bones client and the command you need to make an API call.
Param
ListMediaCapturePipelinesCommandInput
Returns
ListMediaCapturePipelinesCommandOutput
See
input
shape.response
shape.config
shape.Throws
BadRequestException (client fault)
The input parameters don't match the service's restrictions.
Throws
ForbiddenException (client fault)
The client is permanently forbidden from making the request.
Throws
ResourceLimitExceededException (client fault)
The request exceeds the resource limit.
Throws
ServiceFailureException (server fault)
The service encountered an unexpected error.
Throws
ServiceUnavailableException (server fault)
The service is currently unavailable.
Throws
ThrottledClientException (client fault)
The client exceeded its request rate limit.
Throws
UnauthorizedClientException (client fault)
The client is not currently authorized to make the request.
Throws
ChimeSDKMediaPipelinesServiceException
Base exception class for all service exceptions from ChimeSDKMediaPipelines service.