@aws-sdk/client-chime-sdk-media-pipelines 3.418.0 → 3.419.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +48 -0
- package/dist-cjs/ChimeSDKMediaPipelines.js +12 -0
- package/dist-cjs/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.js +52 -0
- package/dist-cjs/commands/CreateMediaStreamPipelineCommand.js +52 -0
- package/dist-cjs/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.js +51 -0
- package/dist-cjs/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.js +52 -0
- package/dist-cjs/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.js +52 -0
- package/dist-cjs/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.js +52 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +92 -1
- package/dist-cjs/pagination/ListMediaPipelineKinesisVideoStreamPoolsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +477 -1
- package/dist-es/ChimeSDKMediaPipelines.js +12 -0
- package/dist-es/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.js +48 -0
- package/dist-es/commands/CreateMediaStreamPipelineCommand.js +48 -0
- package/dist-es/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.js +47 -0
- package/dist-es/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.js +48 -0
- package/dist-es/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.js +48 -0
- package/dist-es/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.js +48 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +78 -0
- package/dist-es/pagination/ListMediaPipelineKinesisVideoStreamPoolsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +464 -1
- package/dist-types/ChimeSDKMediaPipelines.d.ts +42 -0
- package/dist-types/ChimeSDKMediaPipelinesClient.d.ts +8 -2
- package/dist-types/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.d.ts +121 -0
- package/dist-types/commands/CreateMediaStreamPipelineCommand.d.ts +137 -0
- package/dist-types/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.d.ts +96 -0
- package/dist-types/commands/GetMediaPipelineCommand.d.ts +21 -0
- package/dist-types/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.d.ts +106 -0
- package/dist-types/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.d.ts +102 -0
- package/dist-types/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.d.ts +113 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +435 -12
- package/dist-types/pagination/ListMediaPipelineKinesisVideoStreamPoolsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/ChimeSDKMediaPipelines.d.ts +132 -0
- package/dist-types/ts3.4/ChimeSDKMediaPipelinesClient.d.ts +38 -2
- package/dist-types/ts3.4/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateMediaStreamPipelineCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +143 -3
- package/dist-types/ts3.4/pagination/ListMediaPipelineKinesisVideoStreamPoolsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +1 -1
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ChimeSDKMediaPipelinesClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateMediaPipelineKinesisVideoStreamPoolRequest,
|
|
16
|
+
UpdateMediaPipelineKinesisVideoStreamPoolResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateMediaPipelineKinesisVideoStreamPoolCommandInput
|
|
20
|
+
extends UpdateMediaPipelineKinesisVideoStreamPoolRequest {}
|
|
21
|
+
export interface UpdateMediaPipelineKinesisVideoStreamPoolCommandOutput
|
|
22
|
+
extends UpdateMediaPipelineKinesisVideoStreamPoolResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateMediaPipelineKinesisVideoStreamPoolCommand extends $Command<
|
|
25
|
+
UpdateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
26
|
+
UpdateMediaPipelineKinesisVideoStreamPoolCommandOutput,
|
|
27
|
+
ChimeSDKMediaPipelinesClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateMediaPipelineKinesisVideoStreamPoolCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateMediaPipelineKinesisVideoStreamPoolCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ChimeSDKMediaPipelinesClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
UpdateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
38
|
+
UpdateMediaPipelineKinesisVideoStreamPoolCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -3,16 +3,21 @@ export * from "./CreateMediaConcatenationPipelineCommand";
|
|
|
3
3
|
export * from "./CreateMediaInsightsPipelineCommand";
|
|
4
4
|
export * from "./CreateMediaInsightsPipelineConfigurationCommand";
|
|
5
5
|
export * from "./CreateMediaLiveConnectorPipelineCommand";
|
|
6
|
+
export * from "./CreateMediaPipelineKinesisVideoStreamPoolCommand";
|
|
7
|
+
export * from "./CreateMediaStreamPipelineCommand";
|
|
6
8
|
export * from "./DeleteMediaCapturePipelineCommand";
|
|
7
9
|
export * from "./DeleteMediaInsightsPipelineConfigurationCommand";
|
|
8
10
|
export * from "./DeleteMediaPipelineCommand";
|
|
11
|
+
export * from "./DeleteMediaPipelineKinesisVideoStreamPoolCommand";
|
|
9
12
|
export * from "./GetMediaCapturePipelineCommand";
|
|
10
13
|
export * from "./GetMediaInsightsPipelineConfigurationCommand";
|
|
11
14
|
export * from "./GetMediaPipelineCommand";
|
|
15
|
+
export * from "./GetMediaPipelineKinesisVideoStreamPoolCommand";
|
|
12
16
|
export * from "./GetSpeakerSearchTaskCommand";
|
|
13
17
|
export * from "./GetVoiceToneAnalysisTaskCommand";
|
|
14
18
|
export * from "./ListMediaCapturePipelinesCommand";
|
|
15
19
|
export * from "./ListMediaInsightsPipelineConfigurationsCommand";
|
|
20
|
+
export * from "./ListMediaPipelineKinesisVideoStreamPoolsCommand";
|
|
16
21
|
export * from "./ListMediaPipelinesCommand";
|
|
17
22
|
export * from "./ListTagsForResourceCommand";
|
|
18
23
|
export * from "./StartSpeakerSearchTaskCommand";
|
|
@@ -23,3 +28,4 @@ export * from "./TagResourceCommand";
|
|
|
23
28
|
export * from "./UntagResourceCommand";
|
|
24
29
|
export * from "./UpdateMediaInsightsPipelineConfigurationCommand";
|
|
25
30
|
export * from "./UpdateMediaInsightsPipelineStatusCommand";
|
|
31
|
+
export * from "./UpdateMediaPipelineKinesisVideoStreamPoolCommand";
|
|
@@ -737,9 +737,6 @@ export interface MediaLiveConnectorPipeline {
|
|
|
737
737
|
export interface CreateMediaLiveConnectorPipelineResponse {
|
|
738
738
|
MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline;
|
|
739
739
|
}
|
|
740
|
-
export interface DeleteMediaCapturePipelineRequest {
|
|
741
|
-
MediaPipelineId: string | undefined;
|
|
742
|
-
}
|
|
743
740
|
export declare class ConflictException extends __BaseException {
|
|
744
741
|
readonly name: "ConflictException";
|
|
745
742
|
readonly $fault: "client";
|
|
@@ -748,12 +745,89 @@ export declare class ConflictException extends __BaseException {
|
|
|
748
745
|
RequestId?: string;
|
|
749
746
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
750
747
|
}
|
|
748
|
+
export interface KinesisVideoStreamConfiguration {
|
|
749
|
+
Region: string | undefined;
|
|
750
|
+
DataRetentionInHours?: number;
|
|
751
|
+
}
|
|
752
|
+
export interface CreateMediaPipelineKinesisVideoStreamPoolRequest {
|
|
753
|
+
StreamConfiguration: KinesisVideoStreamConfiguration | undefined;
|
|
754
|
+
PoolName: string | undefined;
|
|
755
|
+
ClientRequestToken?: string;
|
|
756
|
+
Tags?: Tag[];
|
|
757
|
+
}
|
|
758
|
+
export declare const KinesisVideoStreamPoolStatus: {
|
|
759
|
+
readonly ACTIVE: "ACTIVE";
|
|
760
|
+
readonly CREATING: "CREATING";
|
|
761
|
+
readonly DELETING: "DELETING";
|
|
762
|
+
readonly FAILED: "FAILED";
|
|
763
|
+
readonly UPDATING: "UPDATING";
|
|
764
|
+
};
|
|
765
|
+
export type KinesisVideoStreamPoolStatus =
|
|
766
|
+
(typeof KinesisVideoStreamPoolStatus)[keyof typeof KinesisVideoStreamPoolStatus];
|
|
767
|
+
export interface KinesisVideoStreamPoolConfiguration {
|
|
768
|
+
PoolArn?: string;
|
|
769
|
+
PoolName?: string;
|
|
770
|
+
PoolId?: string;
|
|
771
|
+
PoolStatus?: KinesisVideoStreamPoolStatus | string;
|
|
772
|
+
PoolSize?: number;
|
|
773
|
+
StreamConfiguration?: KinesisVideoStreamConfiguration;
|
|
774
|
+
CreatedTimestamp?: Date;
|
|
775
|
+
UpdatedTimestamp?: Date;
|
|
776
|
+
}
|
|
777
|
+
export interface CreateMediaPipelineKinesisVideoStreamPoolResponse {
|
|
778
|
+
KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration;
|
|
779
|
+
}
|
|
780
|
+
export declare const MediaStreamType: {
|
|
781
|
+
readonly IndividualAudio: "IndividualAudio";
|
|
782
|
+
readonly MixedAudio: "MixedAudio";
|
|
783
|
+
};
|
|
784
|
+
export type MediaStreamType =
|
|
785
|
+
(typeof MediaStreamType)[keyof typeof MediaStreamType];
|
|
786
|
+
export declare const MediaStreamPipelineSinkType: {
|
|
787
|
+
readonly KinesisVideoStreamPool: "KinesisVideoStreamPool";
|
|
788
|
+
};
|
|
789
|
+
export type MediaStreamPipelineSinkType =
|
|
790
|
+
(typeof MediaStreamPipelineSinkType)[keyof typeof MediaStreamPipelineSinkType];
|
|
791
|
+
export interface MediaStreamSink {
|
|
792
|
+
SinkArn: string | undefined;
|
|
793
|
+
SinkType: MediaStreamPipelineSinkType | string | undefined;
|
|
794
|
+
ReservedStreamCapacity: number | undefined;
|
|
795
|
+
MediaStreamType: MediaStreamType | string | undefined;
|
|
796
|
+
}
|
|
797
|
+
export interface MediaStreamSource {
|
|
798
|
+
SourceType: MediaPipelineSourceType | string | undefined;
|
|
799
|
+
SourceArn: string | undefined;
|
|
800
|
+
}
|
|
801
|
+
export interface CreateMediaStreamPipelineRequest {
|
|
802
|
+
Sources: MediaStreamSource[] | undefined;
|
|
803
|
+
Sinks: MediaStreamSink[] | undefined;
|
|
804
|
+
ClientRequestToken?: string;
|
|
805
|
+
Tags?: Tag[];
|
|
806
|
+
}
|
|
807
|
+
export interface MediaStreamPipeline {
|
|
808
|
+
MediaPipelineId?: string;
|
|
809
|
+
MediaPipelineArn?: string;
|
|
810
|
+
CreatedTimestamp?: Date;
|
|
811
|
+
UpdatedTimestamp?: Date;
|
|
812
|
+
Status?: MediaPipelineStatus | string;
|
|
813
|
+
Sources?: MediaStreamSource[];
|
|
814
|
+
Sinks?: MediaStreamSink[];
|
|
815
|
+
}
|
|
816
|
+
export interface CreateMediaStreamPipelineResponse {
|
|
817
|
+
MediaStreamPipeline?: MediaStreamPipeline;
|
|
818
|
+
}
|
|
819
|
+
export interface DeleteMediaCapturePipelineRequest {
|
|
820
|
+
MediaPipelineId: string | undefined;
|
|
821
|
+
}
|
|
751
822
|
export interface DeleteMediaInsightsPipelineConfigurationRequest {
|
|
752
823
|
Identifier: string | undefined;
|
|
753
824
|
}
|
|
754
825
|
export interface DeleteMediaPipelineRequest {
|
|
755
826
|
MediaPipelineId: string | undefined;
|
|
756
827
|
}
|
|
828
|
+
export interface DeleteMediaPipelineKinesisVideoStreamPoolRequest {
|
|
829
|
+
Identifier: string | undefined;
|
|
830
|
+
}
|
|
757
831
|
export interface GetMediaCapturePipelineRequest {
|
|
758
832
|
MediaPipelineId: string | undefined;
|
|
759
833
|
}
|
|
@@ -774,10 +848,17 @@ export interface MediaPipeline {
|
|
|
774
848
|
MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline;
|
|
775
849
|
MediaConcatenationPipeline?: MediaConcatenationPipeline;
|
|
776
850
|
MediaInsightsPipeline?: MediaInsightsPipeline;
|
|
851
|
+
MediaStreamPipeline?: MediaStreamPipeline;
|
|
777
852
|
}
|
|
778
853
|
export interface GetMediaPipelineResponse {
|
|
779
854
|
MediaPipeline?: MediaPipeline;
|
|
780
855
|
}
|
|
856
|
+
export interface GetMediaPipelineKinesisVideoStreamPoolRequest {
|
|
857
|
+
Identifier: string | undefined;
|
|
858
|
+
}
|
|
859
|
+
export interface GetMediaPipelineKinesisVideoStreamPoolResponse {
|
|
860
|
+
KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration;
|
|
861
|
+
}
|
|
781
862
|
export interface GetSpeakerSearchTaskRequest {
|
|
782
863
|
Identifier: string | undefined;
|
|
783
864
|
SpeakerSearchTaskId: string | undefined;
|
|
@@ -839,6 +920,19 @@ export interface ListMediaInsightsPipelineConfigurationsResponse {
|
|
|
839
920
|
MediaInsightsPipelineConfigurations?: MediaInsightsPipelineConfigurationSummary[];
|
|
840
921
|
NextToken?: string;
|
|
841
922
|
}
|
|
923
|
+
export interface ListMediaPipelineKinesisVideoStreamPoolsRequest {
|
|
924
|
+
NextToken?: string;
|
|
925
|
+
MaxResults?: number;
|
|
926
|
+
}
|
|
927
|
+
export interface KinesisVideoStreamPoolSummary {
|
|
928
|
+
PoolName?: string;
|
|
929
|
+
PoolId?: string;
|
|
930
|
+
PoolArn?: string;
|
|
931
|
+
}
|
|
932
|
+
export interface ListMediaPipelineKinesisVideoStreamPoolsResponse {
|
|
933
|
+
KinesisVideoStreamPools?: KinesisVideoStreamPoolSummary[];
|
|
934
|
+
NextToken?: string;
|
|
935
|
+
}
|
|
842
936
|
export interface ListMediaPipelinesRequest {
|
|
843
937
|
NextToken?: string;
|
|
844
938
|
MaxResults?: number;
|
|
@@ -922,6 +1016,16 @@ export interface UpdateMediaInsightsPipelineStatusRequest {
|
|
|
922
1016
|
Identifier: string | undefined;
|
|
923
1017
|
UpdateStatus: MediaPipelineStatusUpdate | string | undefined;
|
|
924
1018
|
}
|
|
1019
|
+
export interface KinesisVideoStreamConfigurationUpdate {
|
|
1020
|
+
DataRetentionInHours?: number;
|
|
1021
|
+
}
|
|
1022
|
+
export interface UpdateMediaPipelineKinesisVideoStreamPoolRequest {
|
|
1023
|
+
Identifier: string | undefined;
|
|
1024
|
+
StreamConfiguration?: KinesisVideoStreamConfigurationUpdate;
|
|
1025
|
+
}
|
|
1026
|
+
export interface UpdateMediaPipelineKinesisVideoStreamPoolResponse {
|
|
1027
|
+
KinesisVideoStreamPoolConfiguration?: KinesisVideoStreamPoolConfiguration;
|
|
1028
|
+
}
|
|
925
1029
|
export declare const SelectedVideoStreamsFilterSensitiveLog: (
|
|
926
1030
|
obj: SelectedVideoStreams
|
|
927
1031
|
) => any;
|
|
@@ -1021,6 +1125,30 @@ export declare const MediaLiveConnectorPipelineFilterSensitiveLog: (
|
|
|
1021
1125
|
export declare const CreateMediaLiveConnectorPipelineResponseFilterSensitiveLog: (
|
|
1022
1126
|
obj: CreateMediaLiveConnectorPipelineResponse
|
|
1023
1127
|
) => any;
|
|
1128
|
+
export declare const CreateMediaPipelineKinesisVideoStreamPoolRequestFilterSensitiveLog: (
|
|
1129
|
+
obj: CreateMediaPipelineKinesisVideoStreamPoolRequest
|
|
1130
|
+
) => any;
|
|
1131
|
+
export declare const KinesisVideoStreamPoolConfigurationFilterSensitiveLog: (
|
|
1132
|
+
obj: KinesisVideoStreamPoolConfiguration
|
|
1133
|
+
) => any;
|
|
1134
|
+
export declare const CreateMediaPipelineKinesisVideoStreamPoolResponseFilterSensitiveLog: (
|
|
1135
|
+
obj: CreateMediaPipelineKinesisVideoStreamPoolResponse
|
|
1136
|
+
) => any;
|
|
1137
|
+
export declare const MediaStreamSinkFilterSensitiveLog: (
|
|
1138
|
+
obj: MediaStreamSink
|
|
1139
|
+
) => any;
|
|
1140
|
+
export declare const MediaStreamSourceFilterSensitiveLog: (
|
|
1141
|
+
obj: MediaStreamSource
|
|
1142
|
+
) => any;
|
|
1143
|
+
export declare const CreateMediaStreamPipelineRequestFilterSensitiveLog: (
|
|
1144
|
+
obj: CreateMediaStreamPipelineRequest
|
|
1145
|
+
) => any;
|
|
1146
|
+
export declare const MediaStreamPipelineFilterSensitiveLog: (
|
|
1147
|
+
obj: MediaStreamPipeline
|
|
1148
|
+
) => any;
|
|
1149
|
+
export declare const CreateMediaStreamPipelineResponseFilterSensitiveLog: (
|
|
1150
|
+
obj: CreateMediaStreamPipelineResponse
|
|
1151
|
+
) => any;
|
|
1024
1152
|
export declare const GetMediaCapturePipelineResponseFilterSensitiveLog: (
|
|
1025
1153
|
obj: GetMediaCapturePipelineResponse
|
|
1026
1154
|
) => any;
|
|
@@ -1033,12 +1161,21 @@ export declare const MediaPipelineFilterSensitiveLog: (
|
|
|
1033
1161
|
export declare const GetMediaPipelineResponseFilterSensitiveLog: (
|
|
1034
1162
|
obj: GetMediaPipelineResponse
|
|
1035
1163
|
) => any;
|
|
1164
|
+
export declare const GetMediaPipelineKinesisVideoStreamPoolResponseFilterSensitiveLog: (
|
|
1165
|
+
obj: GetMediaPipelineKinesisVideoStreamPoolResponse
|
|
1166
|
+
) => any;
|
|
1036
1167
|
export declare const MediaInsightsPipelineConfigurationSummaryFilterSensitiveLog: (
|
|
1037
1168
|
obj: MediaInsightsPipelineConfigurationSummary
|
|
1038
1169
|
) => any;
|
|
1039
1170
|
export declare const ListMediaInsightsPipelineConfigurationsResponseFilterSensitiveLog: (
|
|
1040
1171
|
obj: ListMediaInsightsPipelineConfigurationsResponse
|
|
1041
1172
|
) => any;
|
|
1173
|
+
export declare const KinesisVideoStreamPoolSummaryFilterSensitiveLog: (
|
|
1174
|
+
obj: KinesisVideoStreamPoolSummary
|
|
1175
|
+
) => any;
|
|
1176
|
+
export declare const ListMediaPipelineKinesisVideoStreamPoolsResponseFilterSensitiveLog: (
|
|
1177
|
+
obj: ListMediaPipelineKinesisVideoStreamPoolsResponse
|
|
1178
|
+
) => any;
|
|
1042
1179
|
export declare const StartSpeakerSearchTaskRequestFilterSensitiveLog: (
|
|
1043
1180
|
obj: StartSpeakerSearchTaskRequest
|
|
1044
1181
|
) => any;
|
|
@@ -1051,3 +1188,6 @@ export declare const UpdateMediaInsightsPipelineConfigurationRequestFilterSensit
|
|
|
1051
1188
|
export declare const UpdateMediaInsightsPipelineConfigurationResponseFilterSensitiveLog: (
|
|
1052
1189
|
obj: UpdateMediaInsightsPipelineConfigurationResponse
|
|
1053
1190
|
) => any;
|
|
1191
|
+
export declare const UpdateMediaPipelineKinesisVideoStreamPoolResponseFilterSensitiveLog: (
|
|
1192
|
+
obj: UpdateMediaPipelineKinesisVideoStreamPoolResponse
|
|
1193
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListMediaPipelineKinesisVideoStreamPoolsCommandInput,
|
|
4
|
+
ListMediaPipelineKinesisVideoStreamPoolsCommandOutput,
|
|
5
|
+
} from "../commands/ListMediaPipelineKinesisVideoStreamPoolsCommand";
|
|
6
|
+
import { ChimeSDKMediaPipelinesPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListMediaPipelineKinesisVideoStreamPools(
|
|
8
|
+
config: ChimeSDKMediaPipelinesPaginationConfiguration,
|
|
9
|
+
input: ListMediaPipelineKinesisVideoStreamPoolsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListMediaPipelineKinesisVideoStreamPoolsCommandOutput>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListMediaCapturePipelinesPaginator";
|
|
3
3
|
export * from "./ListMediaInsightsPipelineConfigurationsPaginator";
|
|
4
|
+
export * from "./ListMediaPipelineKinesisVideoStreamPoolsPaginator";
|
|
4
5
|
export * from "./ListMediaPipelinesPaginator";
|
|
@@ -23,6 +23,14 @@ import {
|
|
|
23
23
|
CreateMediaLiveConnectorPipelineCommandInput,
|
|
24
24
|
CreateMediaLiveConnectorPipelineCommandOutput,
|
|
25
25
|
} from "../commands/CreateMediaLiveConnectorPipelineCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
28
|
+
CreateMediaPipelineKinesisVideoStreamPoolCommandOutput,
|
|
29
|
+
} from "../commands/CreateMediaPipelineKinesisVideoStreamPoolCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateMediaStreamPipelineCommandInput,
|
|
32
|
+
CreateMediaStreamPipelineCommandOutput,
|
|
33
|
+
} from "../commands/CreateMediaStreamPipelineCommand";
|
|
26
34
|
import {
|
|
27
35
|
DeleteMediaCapturePipelineCommandInput,
|
|
28
36
|
DeleteMediaCapturePipelineCommandOutput,
|
|
@@ -35,6 +43,10 @@ import {
|
|
|
35
43
|
DeleteMediaPipelineCommandInput,
|
|
36
44
|
DeleteMediaPipelineCommandOutput,
|
|
37
45
|
} from "../commands/DeleteMediaPipelineCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
48
|
+
DeleteMediaPipelineKinesisVideoStreamPoolCommandOutput,
|
|
49
|
+
} from "../commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand";
|
|
38
50
|
import {
|
|
39
51
|
GetMediaCapturePipelineCommandInput,
|
|
40
52
|
GetMediaCapturePipelineCommandOutput,
|
|
@@ -47,6 +59,10 @@ import {
|
|
|
47
59
|
GetMediaPipelineCommandInput,
|
|
48
60
|
GetMediaPipelineCommandOutput,
|
|
49
61
|
} from "../commands/GetMediaPipelineCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
64
|
+
GetMediaPipelineKinesisVideoStreamPoolCommandOutput,
|
|
65
|
+
} from "../commands/GetMediaPipelineKinesisVideoStreamPoolCommand";
|
|
50
66
|
import {
|
|
51
67
|
GetSpeakerSearchTaskCommandInput,
|
|
52
68
|
GetSpeakerSearchTaskCommandOutput,
|
|
@@ -63,6 +79,10 @@ import {
|
|
|
63
79
|
ListMediaInsightsPipelineConfigurationsCommandInput,
|
|
64
80
|
ListMediaInsightsPipelineConfigurationsCommandOutput,
|
|
65
81
|
} from "../commands/ListMediaInsightsPipelineConfigurationsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListMediaPipelineKinesisVideoStreamPoolsCommandInput,
|
|
84
|
+
ListMediaPipelineKinesisVideoStreamPoolsCommandOutput,
|
|
85
|
+
} from "../commands/ListMediaPipelineKinesisVideoStreamPoolsCommand";
|
|
66
86
|
import {
|
|
67
87
|
ListMediaPipelinesCommandInput,
|
|
68
88
|
ListMediaPipelinesCommandOutput,
|
|
@@ -103,6 +123,10 @@ import {
|
|
|
103
123
|
UpdateMediaInsightsPipelineStatusCommandInput,
|
|
104
124
|
UpdateMediaInsightsPipelineStatusCommandOutput,
|
|
105
125
|
} from "../commands/UpdateMediaInsightsPipelineStatusCommand";
|
|
126
|
+
import {
|
|
127
|
+
UpdateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
128
|
+
UpdateMediaPipelineKinesisVideoStreamPoolCommandOutput,
|
|
129
|
+
} from "../commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand";
|
|
106
130
|
export declare const se_CreateMediaCapturePipelineCommand: (
|
|
107
131
|
input: CreateMediaCapturePipelineCommandInput,
|
|
108
132
|
context: __SerdeContext
|
|
@@ -123,6 +147,14 @@ export declare const se_CreateMediaLiveConnectorPipelineCommand: (
|
|
|
123
147
|
input: CreateMediaLiveConnectorPipelineCommandInput,
|
|
124
148
|
context: __SerdeContext
|
|
125
149
|
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_CreateMediaPipelineKinesisVideoStreamPoolCommand: (
|
|
151
|
+
input: CreateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const se_CreateMediaStreamPipelineCommand: (
|
|
155
|
+
input: CreateMediaStreamPipelineCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
126
158
|
export declare const se_DeleteMediaCapturePipelineCommand: (
|
|
127
159
|
input: DeleteMediaCapturePipelineCommandInput,
|
|
128
160
|
context: __SerdeContext
|
|
@@ -135,6 +167,10 @@ export declare const se_DeleteMediaPipelineCommand: (
|
|
|
135
167
|
input: DeleteMediaPipelineCommandInput,
|
|
136
168
|
context: __SerdeContext
|
|
137
169
|
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_DeleteMediaPipelineKinesisVideoStreamPoolCommand: (
|
|
171
|
+
input: DeleteMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
138
174
|
export declare const se_GetMediaCapturePipelineCommand: (
|
|
139
175
|
input: GetMediaCapturePipelineCommandInput,
|
|
140
176
|
context: __SerdeContext
|
|
@@ -147,6 +183,10 @@ export declare const se_GetMediaPipelineCommand: (
|
|
|
147
183
|
input: GetMediaPipelineCommandInput,
|
|
148
184
|
context: __SerdeContext
|
|
149
185
|
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const se_GetMediaPipelineKinesisVideoStreamPoolCommand: (
|
|
187
|
+
input: GetMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
150
190
|
export declare const se_GetSpeakerSearchTaskCommand: (
|
|
151
191
|
input: GetSpeakerSearchTaskCommandInput,
|
|
152
192
|
context: __SerdeContext
|
|
@@ -163,6 +203,10 @@ export declare const se_ListMediaInsightsPipelineConfigurationsCommand: (
|
|
|
163
203
|
input: ListMediaInsightsPipelineConfigurationsCommandInput,
|
|
164
204
|
context: __SerdeContext
|
|
165
205
|
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const se_ListMediaPipelineKinesisVideoStreamPoolsCommand: (
|
|
207
|
+
input: ListMediaPipelineKinesisVideoStreamPoolsCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
166
210
|
export declare const se_ListMediaPipelinesCommand: (
|
|
167
211
|
input: ListMediaPipelinesCommandInput,
|
|
168
212
|
context: __SerdeContext
|
|
@@ -203,6 +247,10 @@ export declare const se_UpdateMediaInsightsPipelineStatusCommand: (
|
|
|
203
247
|
input: UpdateMediaInsightsPipelineStatusCommandInput,
|
|
204
248
|
context: __SerdeContext
|
|
205
249
|
) => Promise<__HttpRequest>;
|
|
250
|
+
export declare const se_UpdateMediaPipelineKinesisVideoStreamPoolCommand: (
|
|
251
|
+
input: UpdateMediaPipelineKinesisVideoStreamPoolCommandInput,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<__HttpRequest>;
|
|
206
254
|
export declare const de_CreateMediaCapturePipelineCommand: (
|
|
207
255
|
output: __HttpResponse,
|
|
208
256
|
context: __SerdeContext
|
|
@@ -223,6 +271,14 @@ export declare const de_CreateMediaLiveConnectorPipelineCommand: (
|
|
|
223
271
|
output: __HttpResponse,
|
|
224
272
|
context: __SerdeContext
|
|
225
273
|
) => Promise<CreateMediaLiveConnectorPipelineCommandOutput>;
|
|
274
|
+
export declare const de_CreateMediaPipelineKinesisVideoStreamPoolCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<CreateMediaPipelineKinesisVideoStreamPoolCommandOutput>;
|
|
278
|
+
export declare const de_CreateMediaStreamPipelineCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<CreateMediaStreamPipelineCommandOutput>;
|
|
226
282
|
export declare const de_DeleteMediaCapturePipelineCommand: (
|
|
227
283
|
output: __HttpResponse,
|
|
228
284
|
context: __SerdeContext
|
|
@@ -235,6 +291,10 @@ export declare const de_DeleteMediaPipelineCommand: (
|
|
|
235
291
|
output: __HttpResponse,
|
|
236
292
|
context: __SerdeContext
|
|
237
293
|
) => Promise<DeleteMediaPipelineCommandOutput>;
|
|
294
|
+
export declare const de_DeleteMediaPipelineKinesisVideoStreamPoolCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<DeleteMediaPipelineKinesisVideoStreamPoolCommandOutput>;
|
|
238
298
|
export declare const de_GetMediaCapturePipelineCommand: (
|
|
239
299
|
output: __HttpResponse,
|
|
240
300
|
context: __SerdeContext
|
|
@@ -247,6 +307,10 @@ export declare const de_GetMediaPipelineCommand: (
|
|
|
247
307
|
output: __HttpResponse,
|
|
248
308
|
context: __SerdeContext
|
|
249
309
|
) => Promise<GetMediaPipelineCommandOutput>;
|
|
310
|
+
export declare const de_GetMediaPipelineKinesisVideoStreamPoolCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<GetMediaPipelineKinesisVideoStreamPoolCommandOutput>;
|
|
250
314
|
export declare const de_GetSpeakerSearchTaskCommand: (
|
|
251
315
|
output: __HttpResponse,
|
|
252
316
|
context: __SerdeContext
|
|
@@ -263,6 +327,10 @@ export declare const de_ListMediaInsightsPipelineConfigurationsCommand: (
|
|
|
263
327
|
output: __HttpResponse,
|
|
264
328
|
context: __SerdeContext
|
|
265
329
|
) => Promise<ListMediaInsightsPipelineConfigurationsCommandOutput>;
|
|
330
|
+
export declare const de_ListMediaPipelineKinesisVideoStreamPoolsCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<ListMediaPipelineKinesisVideoStreamPoolsCommandOutput>;
|
|
266
334
|
export declare const de_ListMediaPipelinesCommand: (
|
|
267
335
|
output: __HttpResponse,
|
|
268
336
|
context: __SerdeContext
|
|
@@ -303,3 +371,7 @@ export declare const de_UpdateMediaInsightsPipelineStatusCommand: (
|
|
|
303
371
|
output: __HttpResponse,
|
|
304
372
|
context: __SerdeContext
|
|
305
373
|
) => Promise<UpdateMediaInsightsPipelineStatusCommandOutput>;
|
|
374
|
+
export declare const de_UpdateMediaPipelineKinesisVideoStreamPoolCommand: (
|
|
375
|
+
output: __HttpResponse,
|
|
376
|
+
context: __SerdeContext
|
|
377
|
+
) => Promise<UpdateMediaPipelineKinesisVideoStreamPoolCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-media-pipelines",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Media Pipelines Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.419.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|