UNPKG

cdk-amazon-chime-resources

Version:

![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge)

70 lines (69 loc) 4.8 kB
import { createAggregatedClient } from "@smithy/smithy-client"; import { ChimeSDKMediaPipelinesClient } from "./ChimeSDKMediaPipelinesClient"; import { CreateMediaCapturePipelineCommand, } from "./commands/CreateMediaCapturePipelineCommand"; import { CreateMediaConcatenationPipelineCommand, } from "./commands/CreateMediaConcatenationPipelineCommand"; import { CreateMediaInsightsPipelineCommand, } from "./commands/CreateMediaInsightsPipelineCommand"; import { CreateMediaInsightsPipelineConfigurationCommand, } from "./commands/CreateMediaInsightsPipelineConfigurationCommand"; import { CreateMediaLiveConnectorPipelineCommand, } from "./commands/CreateMediaLiveConnectorPipelineCommand"; import { CreateMediaPipelineKinesisVideoStreamPoolCommand, } from "./commands/CreateMediaPipelineKinesisVideoStreamPoolCommand"; import { CreateMediaStreamPipelineCommand, } from "./commands/CreateMediaStreamPipelineCommand"; import { DeleteMediaCapturePipelineCommand, } from "./commands/DeleteMediaCapturePipelineCommand"; import { DeleteMediaInsightsPipelineConfigurationCommand, } from "./commands/DeleteMediaInsightsPipelineConfigurationCommand"; import { DeleteMediaPipelineCommand, } from "./commands/DeleteMediaPipelineCommand"; import { DeleteMediaPipelineKinesisVideoStreamPoolCommand, } from "./commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand"; import { GetMediaCapturePipelineCommand, } from "./commands/GetMediaCapturePipelineCommand"; import { GetMediaInsightsPipelineConfigurationCommand, } from "./commands/GetMediaInsightsPipelineConfigurationCommand"; import { GetMediaPipelineCommand, } from "./commands/GetMediaPipelineCommand"; import { GetMediaPipelineKinesisVideoStreamPoolCommand, } from "./commands/GetMediaPipelineKinesisVideoStreamPoolCommand"; import { GetSpeakerSearchTaskCommand, } from "./commands/GetSpeakerSearchTaskCommand"; import { GetVoiceToneAnalysisTaskCommand, } from "./commands/GetVoiceToneAnalysisTaskCommand"; import { ListMediaCapturePipelinesCommand, } from "./commands/ListMediaCapturePipelinesCommand"; import { ListMediaInsightsPipelineConfigurationsCommand, } from "./commands/ListMediaInsightsPipelineConfigurationsCommand"; import { ListMediaPipelineKinesisVideoStreamPoolsCommand, } from "./commands/ListMediaPipelineKinesisVideoStreamPoolsCommand"; import { ListMediaPipelinesCommand, } from "./commands/ListMediaPipelinesCommand"; import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand"; import { StartSpeakerSearchTaskCommand, } from "./commands/StartSpeakerSearchTaskCommand"; import { StartVoiceToneAnalysisTaskCommand, } from "./commands/StartVoiceToneAnalysisTaskCommand"; import { StopSpeakerSearchTaskCommand, } from "./commands/StopSpeakerSearchTaskCommand"; import { StopVoiceToneAnalysisTaskCommand, } from "./commands/StopVoiceToneAnalysisTaskCommand"; import { TagResourceCommand } from "./commands/TagResourceCommand"; import { UntagResourceCommand, } from "./commands/UntagResourceCommand"; import { UpdateMediaInsightsPipelineConfigurationCommand, } from "./commands/UpdateMediaInsightsPipelineConfigurationCommand"; import { UpdateMediaInsightsPipelineStatusCommand, } from "./commands/UpdateMediaInsightsPipelineStatusCommand"; import { UpdateMediaPipelineKinesisVideoStreamPoolCommand, } from "./commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand"; const commands = { CreateMediaCapturePipelineCommand, CreateMediaConcatenationPipelineCommand, CreateMediaInsightsPipelineCommand, CreateMediaInsightsPipelineConfigurationCommand, CreateMediaLiveConnectorPipelineCommand, CreateMediaPipelineKinesisVideoStreamPoolCommand, CreateMediaStreamPipelineCommand, DeleteMediaCapturePipelineCommand, DeleteMediaInsightsPipelineConfigurationCommand, DeleteMediaPipelineCommand, DeleteMediaPipelineKinesisVideoStreamPoolCommand, GetMediaCapturePipelineCommand, GetMediaInsightsPipelineConfigurationCommand, GetMediaPipelineCommand, GetMediaPipelineKinesisVideoStreamPoolCommand, GetSpeakerSearchTaskCommand, GetVoiceToneAnalysisTaskCommand, ListMediaCapturePipelinesCommand, ListMediaInsightsPipelineConfigurationsCommand, ListMediaPipelineKinesisVideoStreamPoolsCommand, ListMediaPipelinesCommand, ListTagsForResourceCommand, StartSpeakerSearchTaskCommand, StartVoiceToneAnalysisTaskCommand, StopSpeakerSearchTaskCommand, StopVoiceToneAnalysisTaskCommand, TagResourceCommand, UntagResourceCommand, UpdateMediaInsightsPipelineConfigurationCommand, UpdateMediaInsightsPipelineStatusCommand, UpdateMediaPipelineKinesisVideoStreamPoolCommand, }; export class ChimeSDKMediaPipelines extends ChimeSDKMediaPipelinesClient { } createAggregatedClient(commands, ChimeSDKMediaPipelines);