@aws-sdk/client-chime-sdk-media-pipelines 3.145.0 → 3.154.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/CHANGELOG.md +27 -0
- package/README.md +2 -4
- package/dist-cjs/ChimeSDKMediaPipelines.js +75 -0
- package/dist-cjs/commands/CreateMediaConcatenationPipelineCommand.js +36 -0
- package/dist-cjs/commands/CreateMediaLiveConnectorPipelineCommand.js +36 -0
- package/dist-cjs/commands/DeleteMediaPipelineCommand.js +36 -0
- package/dist-cjs/commands/GetMediaPipelineCommand.js +36 -0
- package/dist-cjs/commands/ListMediaPipelinesCommand.js +36 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +237 -1
- package/dist-cjs/pagination/ListMediaPipelinesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +878 -85
- package/dist-es/ChimeSDKMediaPipelines.js +75 -0
- package/dist-es/commands/CreateMediaConcatenationPipelineCommand.js +39 -0
- package/dist-es/commands/CreateMediaLiveConnectorPipelineCommand.js +39 -0
- package/dist-es/commands/DeleteMediaPipelineCommand.js +39 -0
- package/dist-es/commands/GetMediaPipelineCommand.js +39 -0
- package/dist-es/commands/ListMediaPipelinesCommand.js +39 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +111 -0
- package/dist-es/pagination/ListMediaPipelinesPaginator.js +75 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +912 -26
- package/dist-types/ChimeSDKMediaPipelines.d.ts +44 -11
- package/dist-types/ChimeSDKMediaPipelinesClient.d.ts +9 -6
- package/dist-types/commands/CreateMediaCapturePipelineCommand.d.ts +1 -1
- package/dist-types/commands/CreateMediaConcatenationPipelineCommand.d.ts +35 -0
- package/dist-types/commands/CreateMediaLiveConnectorPipelineCommand.d.ts +35 -0
- package/dist-types/commands/DeleteMediaCapturePipelineCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMediaPipelineCommand.d.ts +35 -0
- package/dist-types/commands/GetMediaCapturePipelineCommand.d.ts +1 -1
- package/dist-types/commands/GetMediaPipelineCommand.d.ts +35 -0
- package/dist-types/commands/ListMediaCapturePipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListMediaPipelinesCommand.d.ts +35 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +674 -39
- package/dist-types/pagination/ListMediaPipelinesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/ChimeSDKMediaPipelines.d.ts +25 -0
- package/dist-types/ts3.4/ChimeSDKMediaPipelinesClient.d.ts +7 -2
- package/dist-types/ts3.4/commands/CreateMediaConcatenationPipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateMediaLiveConnectorPipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteMediaPipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetMediaPipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListMediaPipelinesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +355 -1
- package/dist-types/ts3.4/pagination/ListMediaPipelinesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
- package/package.json +4 -4
|
@@ -1,14 +1,113 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ChimeSDKMediaPipelinesServiceException as __BaseException } from "./ChimeSDKMediaPipelinesServiceException";
|
|
3
|
+
export declare enum AudioArtifactsConcatenationState {
|
|
4
|
+
Enabled = "Enabled"
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export interface AudioConcatenationConfiguration {
|
|
8
|
+
|
|
9
|
+
State: AudioArtifactsConcatenationState | string | undefined;
|
|
10
|
+
}
|
|
11
|
+
export declare enum ArtifactsConcatenationState {
|
|
12
|
+
Disabled = "Disabled",
|
|
13
|
+
Enabled = "Enabled"
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export interface CompositedVideoConcatenationConfiguration {
|
|
17
|
+
|
|
18
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface ContentConcatenationConfiguration {
|
|
22
|
+
|
|
23
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface DataChannelConcatenationConfiguration {
|
|
27
|
+
|
|
28
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export interface MeetingEventsConcatenationConfiguration {
|
|
32
|
+
|
|
33
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface TranscriptionMessagesConcatenationConfiguration {
|
|
37
|
+
|
|
38
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface VideoConcatenationConfiguration {
|
|
42
|
+
|
|
43
|
+
State: ArtifactsConcatenationState | string | undefined;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export interface ArtifactsConcatenationConfiguration {
|
|
47
|
+
|
|
48
|
+
Audio: AudioConcatenationConfiguration | undefined;
|
|
49
|
+
|
|
50
|
+
Video: VideoConcatenationConfiguration | undefined;
|
|
51
|
+
|
|
52
|
+
Content: ContentConcatenationConfiguration | undefined;
|
|
53
|
+
|
|
54
|
+
DataChannel: DataChannelConcatenationConfiguration | undefined;
|
|
55
|
+
|
|
56
|
+
TranscriptionMessages: TranscriptionMessagesConcatenationConfiguration | undefined;
|
|
57
|
+
|
|
58
|
+
MeetingEvents: MeetingEventsConcatenationConfiguration | undefined;
|
|
59
|
+
|
|
60
|
+
CompositedVideo: CompositedVideoConcatenationConfiguration | undefined;
|
|
61
|
+
}
|
|
3
62
|
export declare enum AudioMuxType {
|
|
4
63
|
AudioOnly = "AudioOnly",
|
|
5
|
-
AudioWithActiveSpeakerVideo = "AudioWithActiveSpeakerVideo"
|
|
64
|
+
AudioWithActiveSpeakerVideo = "AudioWithActiveSpeakerVideo",
|
|
65
|
+
AudioWithCompositedVideo = "AudioWithCompositedVideo"
|
|
6
66
|
}
|
|
7
67
|
|
|
8
68
|
export interface AudioArtifactsConfiguration {
|
|
9
69
|
|
|
10
70
|
MuxType: AudioMuxType | string | undefined;
|
|
11
71
|
}
|
|
72
|
+
export declare enum ContentShareLayoutOption {
|
|
73
|
+
Horizontal = "Horizontal",
|
|
74
|
+
PresenterOnly = "PresenterOnly",
|
|
75
|
+
Vertical = "Vertical"
|
|
76
|
+
}
|
|
77
|
+
export declare enum PresenterPosition {
|
|
78
|
+
BottomLeft = "BottomLeft",
|
|
79
|
+
BottomRight = "BottomRight",
|
|
80
|
+
TopLeft = "TopLeft",
|
|
81
|
+
TopRight = "TopRight"
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export interface PresenterOnlyConfiguration {
|
|
85
|
+
|
|
86
|
+
PresenterPosition?: PresenterPosition | string;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export interface GridViewConfiguration {
|
|
90
|
+
|
|
91
|
+
ContentShareLayout: ContentShareLayoutOption | string | undefined;
|
|
92
|
+
|
|
93
|
+
PresenterOnlyConfiguration?: PresenterOnlyConfiguration;
|
|
94
|
+
}
|
|
95
|
+
export declare enum LayoutOption {
|
|
96
|
+
GridView = "GridView"
|
|
97
|
+
}
|
|
98
|
+
export declare enum ResolutionOption {
|
|
99
|
+
FHD = "FHD",
|
|
100
|
+
HD = "HD"
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export interface CompositedVideoArtifactsConfiguration {
|
|
104
|
+
|
|
105
|
+
Layout?: LayoutOption | string;
|
|
106
|
+
|
|
107
|
+
Resolution?: ResolutionOption | string;
|
|
108
|
+
|
|
109
|
+
GridViewConfiguration: GridViewConfiguration | undefined;
|
|
110
|
+
}
|
|
12
111
|
export declare enum ContentMuxType {
|
|
13
112
|
ContentOnly = "ContentOnly"
|
|
14
113
|
}
|
|
@@ -41,6 +140,12 @@ export interface ArtifactsConfiguration {
|
|
|
41
140
|
Video: VideoArtifactsConfiguration | undefined;
|
|
42
141
|
|
|
43
142
|
Content: ContentArtifactsConfiguration | undefined;
|
|
143
|
+
|
|
144
|
+
CompositedVideo?: CompositedVideoArtifactsConfiguration;
|
|
145
|
+
}
|
|
146
|
+
export declare enum AudioChannelsOption {
|
|
147
|
+
Mono = "Mono",
|
|
148
|
+
Stereo = "Stereo"
|
|
44
149
|
}
|
|
45
150
|
export declare enum ErrorCode {
|
|
46
151
|
BadRequest = "BadRequest",
|
|
@@ -210,6 +315,149 @@ export declare class UnauthorizedClientException extends __BaseException {
|
|
|
210
315
|
|
|
211
316
|
constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
|
|
212
317
|
}
|
|
318
|
+
|
|
319
|
+
export interface S3BucketSinkConfiguration {
|
|
320
|
+
|
|
321
|
+
Destination: string | undefined;
|
|
322
|
+
}
|
|
323
|
+
export declare enum ConcatenationSinkType {
|
|
324
|
+
S3Bucket = "S3Bucket"
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
export interface ConcatenationSink {
|
|
328
|
+
|
|
329
|
+
Type: ConcatenationSinkType | string | undefined;
|
|
330
|
+
|
|
331
|
+
S3BucketSinkConfiguration: S3BucketSinkConfiguration | undefined;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
export interface ChimeSdkMeetingConcatenationConfiguration {
|
|
335
|
+
|
|
336
|
+
ArtifactsConfiguration: ArtifactsConcatenationConfiguration | undefined;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
export interface MediaCapturePipelineSourceConfiguration {
|
|
340
|
+
|
|
341
|
+
MediaPipelineArn: string | undefined;
|
|
342
|
+
|
|
343
|
+
ChimeSdkMeetingConfiguration: ChimeSdkMeetingConcatenationConfiguration | undefined;
|
|
344
|
+
}
|
|
345
|
+
export declare enum ConcatenationSourceType {
|
|
346
|
+
MediaCapturePipeline = "MediaCapturePipeline"
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
export interface ConcatenationSource {
|
|
350
|
+
|
|
351
|
+
Type: ConcatenationSourceType | string | undefined;
|
|
352
|
+
|
|
353
|
+
MediaCapturePipelineSourceConfiguration: MediaCapturePipelineSourceConfiguration | undefined;
|
|
354
|
+
}
|
|
355
|
+
export interface CreateMediaConcatenationPipelineRequest {
|
|
356
|
+
|
|
357
|
+
Sources: ConcatenationSource[] | undefined;
|
|
358
|
+
|
|
359
|
+
Sinks: ConcatenationSink[] | undefined;
|
|
360
|
+
|
|
361
|
+
ClientRequestToken?: string;
|
|
362
|
+
|
|
363
|
+
Tags?: Tag[];
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
export interface MediaConcatenationPipeline {
|
|
367
|
+
|
|
368
|
+
MediaPipelineId?: string;
|
|
369
|
+
|
|
370
|
+
MediaPipelineArn?: string;
|
|
371
|
+
|
|
372
|
+
Sources?: ConcatenationSource[];
|
|
373
|
+
|
|
374
|
+
Sinks?: ConcatenationSink[];
|
|
375
|
+
|
|
376
|
+
Status?: MediaPipelineStatus | string;
|
|
377
|
+
|
|
378
|
+
CreatedTimestamp?: Date;
|
|
379
|
+
|
|
380
|
+
UpdatedTimestamp?: Date;
|
|
381
|
+
}
|
|
382
|
+
export interface CreateMediaConcatenationPipelineResponse {
|
|
383
|
+
|
|
384
|
+
MediaConcatenationPipeline?: MediaConcatenationPipeline;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
export interface LiveConnectorRTMPConfiguration {
|
|
388
|
+
|
|
389
|
+
Url: string | undefined;
|
|
390
|
+
|
|
391
|
+
AudioChannels?: AudioChannelsOption | string;
|
|
392
|
+
|
|
393
|
+
AudioSampleRate?: string;
|
|
394
|
+
}
|
|
395
|
+
export declare enum LiveConnectorSinkType {
|
|
396
|
+
RTMP = "RTMP"
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
export interface LiveConnectorSinkConfiguration {
|
|
400
|
+
|
|
401
|
+
SinkType: LiveConnectorSinkType | string | undefined;
|
|
402
|
+
|
|
403
|
+
RTMPConfiguration: LiveConnectorRTMPConfiguration | undefined;
|
|
404
|
+
}
|
|
405
|
+
export declare enum LiveConnectorMuxType {
|
|
406
|
+
AudioWithActiveSpeakerVideo = "AudioWithActiveSpeakerVideo",
|
|
407
|
+
AudioWithCompositedVideo = "AudioWithCompositedVideo"
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
export interface ChimeSdkMeetingLiveConnectorConfiguration {
|
|
411
|
+
|
|
412
|
+
Arn: string | undefined;
|
|
413
|
+
|
|
414
|
+
MuxType: LiveConnectorMuxType | string | undefined;
|
|
415
|
+
|
|
416
|
+
CompositedVideo?: CompositedVideoArtifactsConfiguration;
|
|
417
|
+
|
|
418
|
+
SourceConfiguration?: SourceConfiguration;
|
|
419
|
+
}
|
|
420
|
+
export declare enum LiveConnectorSourceType {
|
|
421
|
+
ChimeSdkMeeting = "ChimeSdkMeeting"
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
export interface LiveConnectorSourceConfiguration {
|
|
425
|
+
|
|
426
|
+
SourceType: LiveConnectorSourceType | string | undefined;
|
|
427
|
+
|
|
428
|
+
ChimeSdkMeetingLiveConnectorConfiguration: ChimeSdkMeetingLiveConnectorConfiguration | undefined;
|
|
429
|
+
}
|
|
430
|
+
export interface CreateMediaLiveConnectorPipelineRequest {
|
|
431
|
+
|
|
432
|
+
Sources: LiveConnectorSourceConfiguration[] | undefined;
|
|
433
|
+
|
|
434
|
+
Sinks: LiveConnectorSinkConfiguration[] | undefined;
|
|
435
|
+
|
|
436
|
+
ClientRequestToken?: string;
|
|
437
|
+
|
|
438
|
+
Tags?: Tag[];
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
export interface MediaLiveConnectorPipeline {
|
|
442
|
+
|
|
443
|
+
Sources?: LiveConnectorSourceConfiguration[];
|
|
444
|
+
|
|
445
|
+
Sinks?: LiveConnectorSinkConfiguration[];
|
|
446
|
+
|
|
447
|
+
MediaPipelineId?: string;
|
|
448
|
+
|
|
449
|
+
MediaPipelineArn?: string;
|
|
450
|
+
|
|
451
|
+
Status?: MediaPipelineStatus | string;
|
|
452
|
+
|
|
453
|
+
CreatedTimestamp?: Date;
|
|
454
|
+
|
|
455
|
+
UpdatedTimestamp?: Date;
|
|
456
|
+
}
|
|
457
|
+
export interface CreateMediaLiveConnectorPipelineResponse {
|
|
458
|
+
|
|
459
|
+
MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline;
|
|
460
|
+
}
|
|
213
461
|
export interface DeleteMediaCapturePipelineRequest {
|
|
214
462
|
|
|
215
463
|
MediaPipelineId: string | undefined;
|
|
@@ -225,6 +473,10 @@ export declare class NotFoundException extends __BaseException {
|
|
|
225
473
|
|
|
226
474
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
227
475
|
}
|
|
476
|
+
export interface DeleteMediaPipelineRequest {
|
|
477
|
+
|
|
478
|
+
MediaPipelineId: string | undefined;
|
|
479
|
+
}
|
|
228
480
|
export interface GetMediaCapturePipelineRequest {
|
|
229
481
|
|
|
230
482
|
MediaPipelineId: string | undefined;
|
|
@@ -233,6 +485,23 @@ export interface GetMediaCapturePipelineResponse {
|
|
|
233
485
|
|
|
234
486
|
MediaCapturePipeline?: MediaCapturePipeline;
|
|
235
487
|
}
|
|
488
|
+
export interface GetMediaPipelineRequest {
|
|
489
|
+
|
|
490
|
+
MediaPipelineId: string | undefined;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
export interface MediaPipeline {
|
|
494
|
+
|
|
495
|
+
MediaCapturePipeline?: MediaCapturePipeline;
|
|
496
|
+
|
|
497
|
+
MediaLiveConnectorPipeline?: MediaLiveConnectorPipeline;
|
|
498
|
+
|
|
499
|
+
MediaConcatenationPipeline?: MediaConcatenationPipeline;
|
|
500
|
+
}
|
|
501
|
+
export interface GetMediaPipelineResponse {
|
|
502
|
+
|
|
503
|
+
MediaPipeline?: MediaPipeline;
|
|
504
|
+
}
|
|
236
505
|
export interface ListMediaCapturePipelinesRequest {
|
|
237
506
|
|
|
238
507
|
NextToken?: string;
|
|
@@ -252,6 +521,25 @@ export interface ListMediaCapturePipelinesResponse {
|
|
|
252
521
|
|
|
253
522
|
NextToken?: string;
|
|
254
523
|
}
|
|
524
|
+
export interface ListMediaPipelinesRequest {
|
|
525
|
+
|
|
526
|
+
NextToken?: string;
|
|
527
|
+
|
|
528
|
+
MaxResults?: number;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
export interface MediaPipelineSummary {
|
|
532
|
+
|
|
533
|
+
MediaPipelineId?: string;
|
|
534
|
+
|
|
535
|
+
MediaPipelineArn?: string;
|
|
536
|
+
}
|
|
537
|
+
export interface ListMediaPipelinesResponse {
|
|
538
|
+
|
|
539
|
+
MediaPipelines?: MediaPipelineSummary[];
|
|
540
|
+
|
|
541
|
+
NextToken?: string;
|
|
542
|
+
}
|
|
255
543
|
export interface ListTagsForResourceRequest {
|
|
256
544
|
|
|
257
545
|
ResourceARN: string | undefined;
|
|
@@ -277,8 +565,30 @@ export interface UntagResourceRequest {
|
|
|
277
565
|
export interface UntagResourceResponse {
|
|
278
566
|
}
|
|
279
567
|
|
|
568
|
+
export declare const AudioConcatenationConfigurationFilterSensitiveLog: (obj: AudioConcatenationConfiguration) => any;
|
|
569
|
+
|
|
570
|
+
export declare const CompositedVideoConcatenationConfigurationFilterSensitiveLog: (obj: CompositedVideoConcatenationConfiguration) => any;
|
|
571
|
+
|
|
572
|
+
export declare const ContentConcatenationConfigurationFilterSensitiveLog: (obj: ContentConcatenationConfiguration) => any;
|
|
573
|
+
|
|
574
|
+
export declare const DataChannelConcatenationConfigurationFilterSensitiveLog: (obj: DataChannelConcatenationConfiguration) => any;
|
|
575
|
+
|
|
576
|
+
export declare const MeetingEventsConcatenationConfigurationFilterSensitiveLog: (obj: MeetingEventsConcatenationConfiguration) => any;
|
|
577
|
+
|
|
578
|
+
export declare const TranscriptionMessagesConcatenationConfigurationFilterSensitiveLog: (obj: TranscriptionMessagesConcatenationConfiguration) => any;
|
|
579
|
+
|
|
580
|
+
export declare const VideoConcatenationConfigurationFilterSensitiveLog: (obj: VideoConcatenationConfiguration) => any;
|
|
581
|
+
|
|
582
|
+
export declare const ArtifactsConcatenationConfigurationFilterSensitiveLog: (obj: ArtifactsConcatenationConfiguration) => any;
|
|
583
|
+
|
|
280
584
|
export declare const AudioArtifactsConfigurationFilterSensitiveLog: (obj: AudioArtifactsConfiguration) => any;
|
|
281
585
|
|
|
586
|
+
export declare const PresenterOnlyConfigurationFilterSensitiveLog: (obj: PresenterOnlyConfiguration) => any;
|
|
587
|
+
|
|
588
|
+
export declare const GridViewConfigurationFilterSensitiveLog: (obj: GridViewConfiguration) => any;
|
|
589
|
+
|
|
590
|
+
export declare const CompositedVideoArtifactsConfigurationFilterSensitiveLog: (obj: CompositedVideoArtifactsConfiguration) => any;
|
|
591
|
+
|
|
282
592
|
export declare const ContentArtifactsConfigurationFilterSensitiveLog: (obj: ContentArtifactsConfiguration) => any;
|
|
283
593
|
|
|
284
594
|
export declare const VideoArtifactsConfigurationFilterSensitiveLog: (obj: VideoArtifactsConfiguration) => any;
|
|
@@ -299,18 +609,62 @@ export declare const MediaCapturePipelineFilterSensitiveLog: (obj: MediaCaptureP
|
|
|
299
609
|
|
|
300
610
|
export declare const CreateMediaCapturePipelineResponseFilterSensitiveLog: (obj: CreateMediaCapturePipelineResponse) => any;
|
|
301
611
|
|
|
612
|
+
export declare const S3BucketSinkConfigurationFilterSensitiveLog: (obj: S3BucketSinkConfiguration) => any;
|
|
613
|
+
|
|
614
|
+
export declare const ConcatenationSinkFilterSensitiveLog: (obj: ConcatenationSink) => any;
|
|
615
|
+
|
|
616
|
+
export declare const ChimeSdkMeetingConcatenationConfigurationFilterSensitiveLog: (obj: ChimeSdkMeetingConcatenationConfiguration) => any;
|
|
617
|
+
|
|
618
|
+
export declare const MediaCapturePipelineSourceConfigurationFilterSensitiveLog: (obj: MediaCapturePipelineSourceConfiguration) => any;
|
|
619
|
+
|
|
620
|
+
export declare const ConcatenationSourceFilterSensitiveLog: (obj: ConcatenationSource) => any;
|
|
621
|
+
|
|
622
|
+
export declare const CreateMediaConcatenationPipelineRequestFilterSensitiveLog: (obj: CreateMediaConcatenationPipelineRequest) => any;
|
|
623
|
+
|
|
624
|
+
export declare const MediaConcatenationPipelineFilterSensitiveLog: (obj: MediaConcatenationPipeline) => any;
|
|
625
|
+
|
|
626
|
+
export declare const CreateMediaConcatenationPipelineResponseFilterSensitiveLog: (obj: CreateMediaConcatenationPipelineResponse) => any;
|
|
627
|
+
|
|
628
|
+
export declare const LiveConnectorRTMPConfigurationFilterSensitiveLog: (obj: LiveConnectorRTMPConfiguration) => any;
|
|
629
|
+
|
|
630
|
+
export declare const LiveConnectorSinkConfigurationFilterSensitiveLog: (obj: LiveConnectorSinkConfiguration) => any;
|
|
631
|
+
|
|
632
|
+
export declare const ChimeSdkMeetingLiveConnectorConfigurationFilterSensitiveLog: (obj: ChimeSdkMeetingLiveConnectorConfiguration) => any;
|
|
633
|
+
|
|
634
|
+
export declare const LiveConnectorSourceConfigurationFilterSensitiveLog: (obj: LiveConnectorSourceConfiguration) => any;
|
|
635
|
+
|
|
636
|
+
export declare const CreateMediaLiveConnectorPipelineRequestFilterSensitiveLog: (obj: CreateMediaLiveConnectorPipelineRequest) => any;
|
|
637
|
+
|
|
638
|
+
export declare const MediaLiveConnectorPipelineFilterSensitiveLog: (obj: MediaLiveConnectorPipeline) => any;
|
|
639
|
+
|
|
640
|
+
export declare const CreateMediaLiveConnectorPipelineResponseFilterSensitiveLog: (obj: CreateMediaLiveConnectorPipelineResponse) => any;
|
|
641
|
+
|
|
302
642
|
export declare const DeleteMediaCapturePipelineRequestFilterSensitiveLog: (obj: DeleteMediaCapturePipelineRequest) => any;
|
|
303
643
|
|
|
644
|
+
export declare const DeleteMediaPipelineRequestFilterSensitiveLog: (obj: DeleteMediaPipelineRequest) => any;
|
|
645
|
+
|
|
304
646
|
export declare const GetMediaCapturePipelineRequestFilterSensitiveLog: (obj: GetMediaCapturePipelineRequest) => any;
|
|
305
647
|
|
|
306
648
|
export declare const GetMediaCapturePipelineResponseFilterSensitiveLog: (obj: GetMediaCapturePipelineResponse) => any;
|
|
307
649
|
|
|
650
|
+
export declare const GetMediaPipelineRequestFilterSensitiveLog: (obj: GetMediaPipelineRequest) => any;
|
|
651
|
+
|
|
652
|
+
export declare const MediaPipelineFilterSensitiveLog: (obj: MediaPipeline) => any;
|
|
653
|
+
|
|
654
|
+
export declare const GetMediaPipelineResponseFilterSensitiveLog: (obj: GetMediaPipelineResponse) => any;
|
|
655
|
+
|
|
308
656
|
export declare const ListMediaCapturePipelinesRequestFilterSensitiveLog: (obj: ListMediaCapturePipelinesRequest) => any;
|
|
309
657
|
|
|
310
658
|
export declare const MediaCapturePipelineSummaryFilterSensitiveLog: (obj: MediaCapturePipelineSummary) => any;
|
|
311
659
|
|
|
312
660
|
export declare const ListMediaCapturePipelinesResponseFilterSensitiveLog: (obj: ListMediaCapturePipelinesResponse) => any;
|
|
313
661
|
|
|
662
|
+
export declare const ListMediaPipelinesRequestFilterSensitiveLog: (obj: ListMediaPipelinesRequest) => any;
|
|
663
|
+
|
|
664
|
+
export declare const MediaPipelineSummaryFilterSensitiveLog: (obj: MediaPipelineSummary) => any;
|
|
665
|
+
|
|
666
|
+
export declare const ListMediaPipelinesResponseFilterSensitiveLog: (obj: ListMediaPipelinesResponse) => any;
|
|
667
|
+
|
|
314
668
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
315
669
|
|
|
316
670
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListMediaPipelinesCommandInput, ListMediaPipelinesCommandOutput } from "../commands/ListMediaPipelinesCommand";
|
|
3
|
+
import { ChimeSDKMediaPipelinesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListMediaPipelines(config: ChimeSDKMediaPipelinesPaginationConfiguration, input: ListMediaPipelinesCommandInput, ...additionalArguments: any): Paginator<ListMediaPipelinesCommandOutput>;
|
|
@@ -1,23 +1,38 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
3
|
import { CreateMediaCapturePipelineCommandInput, CreateMediaCapturePipelineCommandOutput } from "../commands/CreateMediaCapturePipelineCommand";
|
|
4
|
+
import { CreateMediaConcatenationPipelineCommandInput, CreateMediaConcatenationPipelineCommandOutput } from "../commands/CreateMediaConcatenationPipelineCommand";
|
|
5
|
+
import { CreateMediaLiveConnectorPipelineCommandInput, CreateMediaLiveConnectorPipelineCommandOutput } from "../commands/CreateMediaLiveConnectorPipelineCommand";
|
|
4
6
|
import { DeleteMediaCapturePipelineCommandInput, DeleteMediaCapturePipelineCommandOutput } from "../commands/DeleteMediaCapturePipelineCommand";
|
|
7
|
+
import { DeleteMediaPipelineCommandInput, DeleteMediaPipelineCommandOutput } from "../commands/DeleteMediaPipelineCommand";
|
|
5
8
|
import { GetMediaCapturePipelineCommandInput, GetMediaCapturePipelineCommandOutput } from "../commands/GetMediaCapturePipelineCommand";
|
|
9
|
+
import { GetMediaPipelineCommandInput, GetMediaPipelineCommandOutput } from "../commands/GetMediaPipelineCommand";
|
|
6
10
|
import { ListMediaCapturePipelinesCommandInput, ListMediaCapturePipelinesCommandOutput } from "../commands/ListMediaCapturePipelinesCommand";
|
|
11
|
+
import { ListMediaPipelinesCommandInput, ListMediaPipelinesCommandOutput } from "../commands/ListMediaPipelinesCommand";
|
|
7
12
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
8
13
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
9
14
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
10
15
|
export declare const serializeAws_restJson1CreateMediaCapturePipelineCommand: (input: CreateMediaCapturePipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
|
+
export declare const serializeAws_restJson1CreateMediaConcatenationPipelineCommand: (input: CreateMediaConcatenationPipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
|
+
export declare const serializeAws_restJson1CreateMediaLiveConnectorPipelineCommand: (input: CreateMediaLiveConnectorPipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
18
|
export declare const serializeAws_restJson1DeleteMediaCapturePipelineCommand: (input: DeleteMediaCapturePipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
+
export declare const serializeAws_restJson1DeleteMediaPipelineCommand: (input: DeleteMediaPipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
12
20
|
export declare const serializeAws_restJson1GetMediaCapturePipelineCommand: (input: GetMediaCapturePipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
21
|
+
export declare const serializeAws_restJson1GetMediaPipelineCommand: (input: GetMediaPipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
13
22
|
export declare const serializeAws_restJson1ListMediaCapturePipelinesCommand: (input: ListMediaCapturePipelinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
export declare const serializeAws_restJson1ListMediaPipelinesCommand: (input: ListMediaPipelinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
24
|
export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
15
25
|
export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
26
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
27
|
export declare const deserializeAws_restJson1CreateMediaCapturePipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMediaCapturePipelineCommandOutput>;
|
|
28
|
+
export declare const deserializeAws_restJson1CreateMediaConcatenationPipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMediaConcatenationPipelineCommandOutput>;
|
|
29
|
+
export declare const deserializeAws_restJson1CreateMediaLiveConnectorPipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMediaLiveConnectorPipelineCommandOutput>;
|
|
18
30
|
export declare const deserializeAws_restJson1DeleteMediaCapturePipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMediaCapturePipelineCommandOutput>;
|
|
31
|
+
export declare const deserializeAws_restJson1DeleteMediaPipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMediaPipelineCommandOutput>;
|
|
19
32
|
export declare const deserializeAws_restJson1GetMediaCapturePipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMediaCapturePipelineCommandOutput>;
|
|
33
|
+
export declare const deserializeAws_restJson1GetMediaPipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMediaPipelineCommandOutput>;
|
|
20
34
|
export declare const deserializeAws_restJson1ListMediaCapturePipelinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMediaCapturePipelinesCommandOutput>;
|
|
35
|
+
export declare const deserializeAws_restJson1ListMediaPipelinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMediaPipelinesCommandOutput>;
|
|
21
36
|
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
22
37
|
export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
23
38
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
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.154.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.154.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.154.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
+
"@aws-sdk/util-body-length-browser": "3.154.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
46
|
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
47
|
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|