@aws-sdk/client-chime-sdk-media-pipelines 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateMediaCapturePipelineCommand.js +2 -2
- package/dist-cjs/commands/DeleteMediaCapturePipelineCommand.js +1 -1
- package/dist-cjs/commands/GetMediaCapturePipelineCommand.js +2 -2
- package/dist-cjs/commands/ListMediaCapturePipelinesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/models/models_0.js +117 -163
- package/dist-cjs/protocols/Aws_restJson1.js +109 -164
- package/dist-es/commands/CreateMediaCapturePipelineCommand.js +3 -3
- package/dist-es/commands/DeleteMediaCapturePipelineCommand.js +2 -2
- package/dist-es/commands/GetMediaCapturePipelineCommand.js +3 -3
- package/dist-es/commands/ListMediaCapturePipelinesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/models/models_0.js +35 -104
- package/dist-es/protocols/Aws_restJson1.js +133 -162
- package/dist-types/models/models_0.d.ts +92 -138
- package/dist-types/ts3.4/models/models_0.d.ts +46 -92
- package/package.json +6 -6
|
@@ -13,12 +13,6 @@ export interface AudioArtifactsConfiguration {
|
|
|
13
13
|
*/
|
|
14
14
|
MuxType: AudioMuxType | string | undefined;
|
|
15
15
|
}
|
|
16
|
-
export declare namespace AudioArtifactsConfiguration {
|
|
17
|
-
/**
|
|
18
|
-
* @internal
|
|
19
|
-
*/
|
|
20
|
-
const filterSensitiveLog: (obj: AudioArtifactsConfiguration) => any;
|
|
21
|
-
}
|
|
22
16
|
export declare enum ContentMuxType {
|
|
23
17
|
ContentOnly = "ContentOnly"
|
|
24
18
|
}
|
|
@@ -39,12 +33,6 @@ export interface ContentArtifactsConfiguration {
|
|
|
39
33
|
*/
|
|
40
34
|
MuxType?: ContentMuxType | string;
|
|
41
35
|
}
|
|
42
|
-
export declare namespace ContentArtifactsConfiguration {
|
|
43
|
-
/**
|
|
44
|
-
* @internal
|
|
45
|
-
*/
|
|
46
|
-
const filterSensitiveLog: (obj: ContentArtifactsConfiguration) => any;
|
|
47
|
-
}
|
|
48
36
|
export declare enum VideoMuxType {
|
|
49
37
|
VideoOnly = "VideoOnly"
|
|
50
38
|
}
|
|
@@ -61,12 +49,6 @@ export interface VideoArtifactsConfiguration {
|
|
|
61
49
|
*/
|
|
62
50
|
MuxType?: VideoMuxType | string;
|
|
63
51
|
}
|
|
64
|
-
export declare namespace VideoArtifactsConfiguration {
|
|
65
|
-
/**
|
|
66
|
-
* @internal
|
|
67
|
-
*/
|
|
68
|
-
const filterSensitiveLog: (obj: VideoArtifactsConfiguration) => any;
|
|
69
|
-
}
|
|
70
52
|
/**
|
|
71
53
|
* <p>The configuration for the artifacts.</p>
|
|
72
54
|
*/
|
|
@@ -84,12 +66,6 @@ export interface ArtifactsConfiguration {
|
|
|
84
66
|
*/
|
|
85
67
|
Content: ContentArtifactsConfiguration | undefined;
|
|
86
68
|
}
|
|
87
|
-
export declare namespace ArtifactsConfiguration {
|
|
88
|
-
/**
|
|
89
|
-
* @internal
|
|
90
|
-
*/
|
|
91
|
-
const filterSensitiveLog: (obj: ArtifactsConfiguration) => any;
|
|
92
|
-
}
|
|
93
69
|
export declare enum ErrorCode {
|
|
94
70
|
BadRequest = "BadRequest",
|
|
95
71
|
Forbidden = "Forbidden",
|
|
@@ -129,12 +105,6 @@ export interface SelectedVideoStreams {
|
|
|
129
105
|
*/
|
|
130
106
|
ExternalUserIds?: string[];
|
|
131
107
|
}
|
|
132
|
-
export declare namespace SelectedVideoStreams {
|
|
133
|
-
/**
|
|
134
|
-
* @internal
|
|
135
|
-
*/
|
|
136
|
-
const filterSensitiveLog: (obj: SelectedVideoStreams) => any;
|
|
137
|
-
}
|
|
138
108
|
/**
|
|
139
109
|
* <p>Source configuration for a specified media capture pipeline.</p>
|
|
140
110
|
*/
|
|
@@ -144,12 +114,6 @@ export interface SourceConfiguration {
|
|
|
144
114
|
*/
|
|
145
115
|
SelectedVideoStreams?: SelectedVideoStreams;
|
|
146
116
|
}
|
|
147
|
-
export declare namespace SourceConfiguration {
|
|
148
|
-
/**
|
|
149
|
-
* @internal
|
|
150
|
-
*/
|
|
151
|
-
const filterSensitiveLog: (obj: SourceConfiguration) => any;
|
|
152
|
-
}
|
|
153
117
|
/**
|
|
154
118
|
* <p>The configuration object of the Amazon Chime SDK meeting for a specified media capture pipeline. <code>SourceType</code> must be <code>ChimeSdkMeeting</code>.</p>
|
|
155
119
|
*/
|
|
@@ -163,12 +127,6 @@ export interface ChimeSdkMeetingConfiguration {
|
|
|
163
127
|
*/
|
|
164
128
|
ArtifactsConfiguration?: ArtifactsConfiguration;
|
|
165
129
|
}
|
|
166
|
-
export declare namespace ChimeSdkMeetingConfiguration {
|
|
167
|
-
/**
|
|
168
|
-
* @internal
|
|
169
|
-
*/
|
|
170
|
-
const filterSensitiveLog: (obj: ChimeSdkMeetingConfiguration) => any;
|
|
171
|
-
}
|
|
172
130
|
export declare enum MediaPipelineSinkType {
|
|
173
131
|
S3Bucket = "S3Bucket"
|
|
174
132
|
}
|
|
@@ -188,12 +146,6 @@ export interface Tag {
|
|
|
188
146
|
*/
|
|
189
147
|
Value: string | undefined;
|
|
190
148
|
}
|
|
191
|
-
export declare namespace Tag {
|
|
192
|
-
/**
|
|
193
|
-
* @internal
|
|
194
|
-
*/
|
|
195
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
196
|
-
}
|
|
197
149
|
export interface CreateMediaCapturePipelineRequest {
|
|
198
150
|
/**
|
|
199
151
|
* <p>Source type from which the media artifacts are captured. A Chime SDK Meeting
|
|
@@ -225,12 +177,6 @@ export interface CreateMediaCapturePipelineRequest {
|
|
|
225
177
|
*/
|
|
226
178
|
Tags?: Tag[];
|
|
227
179
|
}
|
|
228
|
-
export declare namespace CreateMediaCapturePipelineRequest {
|
|
229
|
-
/**
|
|
230
|
-
* @internal
|
|
231
|
-
*/
|
|
232
|
-
const filterSensitiveLog: (obj: CreateMediaCapturePipelineRequest) => any;
|
|
233
|
-
}
|
|
234
180
|
export declare enum MediaPipelineStatus {
|
|
235
181
|
Failed = "Failed",
|
|
236
182
|
InProgress = "InProgress",
|
|
@@ -283,24 +229,12 @@ export interface MediaCapturePipeline {
|
|
|
283
229
|
*/
|
|
284
230
|
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
|
|
285
231
|
}
|
|
286
|
-
export declare namespace MediaCapturePipeline {
|
|
287
|
-
/**
|
|
288
|
-
* @internal
|
|
289
|
-
*/
|
|
290
|
-
const filterSensitiveLog: (obj: MediaCapturePipeline) => any;
|
|
291
|
-
}
|
|
292
232
|
export interface CreateMediaCapturePipelineResponse {
|
|
293
233
|
/**
|
|
294
234
|
* <p>A media capture pipeline object, the ID, source type, source ARN, sink type, and sink ARN of a media capture pipeline object.</p>
|
|
295
235
|
*/
|
|
296
236
|
MediaCapturePipeline?: MediaCapturePipeline;
|
|
297
237
|
}
|
|
298
|
-
export declare namespace CreateMediaCapturePipelineResponse {
|
|
299
|
-
/**
|
|
300
|
-
* @internal
|
|
301
|
-
*/
|
|
302
|
-
const filterSensitiveLog: (obj: CreateMediaCapturePipelineResponse) => any;
|
|
303
|
-
}
|
|
304
238
|
/**
|
|
305
239
|
* <p>The client is permanently forbidden from making the request.</p>
|
|
306
240
|
*/
|
|
@@ -409,12 +343,6 @@ export interface DeleteMediaCapturePipelineRequest {
|
|
|
409
343
|
*/
|
|
410
344
|
MediaPipelineId: string | undefined;
|
|
411
345
|
}
|
|
412
|
-
export declare namespace DeleteMediaCapturePipelineRequest {
|
|
413
|
-
/**
|
|
414
|
-
* @internal
|
|
415
|
-
*/
|
|
416
|
-
const filterSensitiveLog: (obj: DeleteMediaCapturePipelineRequest) => any;
|
|
417
|
-
}
|
|
418
346
|
/**
|
|
419
347
|
* <p>One or more of the resources in the request does not exist in the system.</p>
|
|
420
348
|
*/
|
|
@@ -438,24 +366,12 @@ export interface GetMediaCapturePipelineRequest {
|
|
|
438
366
|
*/
|
|
439
367
|
MediaPipelineId: string | undefined;
|
|
440
368
|
}
|
|
441
|
-
export declare namespace GetMediaCapturePipelineRequest {
|
|
442
|
-
/**
|
|
443
|
-
* @internal
|
|
444
|
-
*/
|
|
445
|
-
const filterSensitiveLog: (obj: GetMediaCapturePipelineRequest) => any;
|
|
446
|
-
}
|
|
447
369
|
export interface GetMediaCapturePipelineResponse {
|
|
448
370
|
/**
|
|
449
371
|
* <p>The media capture pipeline object.</p>
|
|
450
372
|
*/
|
|
451
373
|
MediaCapturePipeline?: MediaCapturePipeline;
|
|
452
374
|
}
|
|
453
|
-
export declare namespace GetMediaCapturePipelineResponse {
|
|
454
|
-
/**
|
|
455
|
-
* @internal
|
|
456
|
-
*/
|
|
457
|
-
const filterSensitiveLog: (obj: GetMediaCapturePipelineResponse) => any;
|
|
458
|
-
}
|
|
459
375
|
export interface ListMediaCapturePipelinesRequest {
|
|
460
376
|
/**
|
|
461
377
|
* <p>The token used to retrieve the next page of results.</p>
|
|
@@ -466,12 +382,6 @@ export interface ListMediaCapturePipelinesRequest {
|
|
|
466
382
|
*/
|
|
467
383
|
MaxResults?: number;
|
|
468
384
|
}
|
|
469
|
-
export declare namespace ListMediaCapturePipelinesRequest {
|
|
470
|
-
/**
|
|
471
|
-
* @internal
|
|
472
|
-
*/
|
|
473
|
-
const filterSensitiveLog: (obj: ListMediaCapturePipelinesRequest) => any;
|
|
474
|
-
}
|
|
475
385
|
/**
|
|
476
386
|
* <p>A summary of a media capture pipeline.</p>
|
|
477
387
|
*/
|
|
@@ -485,12 +395,6 @@ export interface MediaCapturePipelineSummary {
|
|
|
485
395
|
*/
|
|
486
396
|
MediaPipelineArn?: string;
|
|
487
397
|
}
|
|
488
|
-
export declare namespace MediaCapturePipelineSummary {
|
|
489
|
-
/**
|
|
490
|
-
* @internal
|
|
491
|
-
*/
|
|
492
|
-
const filterSensitiveLog: (obj: MediaCapturePipelineSummary) => any;
|
|
493
|
-
}
|
|
494
398
|
export interface ListMediaCapturePipelinesResponse {
|
|
495
399
|
/**
|
|
496
400
|
* <p>The media capture pipeline objects in the list.</p>
|
|
@@ -501,36 +405,18 @@ export interface ListMediaCapturePipelinesResponse {
|
|
|
501
405
|
*/
|
|
502
406
|
NextToken?: string;
|
|
503
407
|
}
|
|
504
|
-
export declare namespace ListMediaCapturePipelinesResponse {
|
|
505
|
-
/**
|
|
506
|
-
* @internal
|
|
507
|
-
*/
|
|
508
|
-
const filterSensitiveLog: (obj: ListMediaCapturePipelinesResponse) => any;
|
|
509
|
-
}
|
|
510
408
|
export interface ListTagsForResourceRequest {
|
|
511
409
|
/**
|
|
512
410
|
* <p>The resource ARN.</p>
|
|
513
411
|
*/
|
|
514
412
|
ResourceARN: string | undefined;
|
|
515
413
|
}
|
|
516
|
-
export declare namespace ListTagsForResourceRequest {
|
|
517
|
-
/**
|
|
518
|
-
* @internal
|
|
519
|
-
*/
|
|
520
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
521
|
-
}
|
|
522
414
|
export interface ListTagsForResourceResponse {
|
|
523
415
|
/**
|
|
524
416
|
* <p>The tag key-value pairs.</p>
|
|
525
417
|
*/
|
|
526
418
|
Tags?: Tag[];
|
|
527
419
|
}
|
|
528
|
-
export declare namespace ListTagsForResourceResponse {
|
|
529
|
-
/**
|
|
530
|
-
* @internal
|
|
531
|
-
*/
|
|
532
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
533
|
-
}
|
|
534
420
|
export interface TagResourceRequest {
|
|
535
421
|
/**
|
|
536
422
|
* <p>The resource ARN.</p>
|
|
@@ -541,20 +427,8 @@ export interface TagResourceRequest {
|
|
|
541
427
|
*/
|
|
542
428
|
Tags: Tag[] | undefined;
|
|
543
429
|
}
|
|
544
|
-
export declare namespace TagResourceRequest {
|
|
545
|
-
/**
|
|
546
|
-
* @internal
|
|
547
|
-
*/
|
|
548
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
549
|
-
}
|
|
550
430
|
export interface TagResourceResponse {
|
|
551
431
|
}
|
|
552
|
-
export declare namespace TagResourceResponse {
|
|
553
|
-
/**
|
|
554
|
-
* @internal
|
|
555
|
-
*/
|
|
556
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
557
|
-
}
|
|
558
432
|
export interface UntagResourceRequest {
|
|
559
433
|
/**
|
|
560
434
|
* <p>The resource ARN.</p>
|
|
@@ -565,17 +439,97 @@ export interface UntagResourceRequest {
|
|
|
565
439
|
*/
|
|
566
440
|
TagKeys: string[] | undefined;
|
|
567
441
|
}
|
|
568
|
-
export declare namespace UntagResourceRequest {
|
|
569
|
-
/**
|
|
570
|
-
* @internal
|
|
571
|
-
*/
|
|
572
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
573
|
-
}
|
|
574
442
|
export interface UntagResourceResponse {
|
|
575
443
|
}
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
444
|
+
/**
|
|
445
|
+
* @internal
|
|
446
|
+
*/
|
|
447
|
+
export declare const AudioArtifactsConfigurationFilterSensitiveLog: (obj: AudioArtifactsConfiguration) => any;
|
|
448
|
+
/**
|
|
449
|
+
* @internal
|
|
450
|
+
*/
|
|
451
|
+
export declare const ContentArtifactsConfigurationFilterSensitiveLog: (obj: ContentArtifactsConfiguration) => any;
|
|
452
|
+
/**
|
|
453
|
+
* @internal
|
|
454
|
+
*/
|
|
455
|
+
export declare const VideoArtifactsConfigurationFilterSensitiveLog: (obj: VideoArtifactsConfiguration) => any;
|
|
456
|
+
/**
|
|
457
|
+
* @internal
|
|
458
|
+
*/
|
|
459
|
+
export declare const ArtifactsConfigurationFilterSensitiveLog: (obj: ArtifactsConfiguration) => any;
|
|
460
|
+
/**
|
|
461
|
+
* @internal
|
|
462
|
+
*/
|
|
463
|
+
export declare const SelectedVideoStreamsFilterSensitiveLog: (obj: SelectedVideoStreams) => any;
|
|
464
|
+
/**
|
|
465
|
+
* @internal
|
|
466
|
+
*/
|
|
467
|
+
export declare const SourceConfigurationFilterSensitiveLog: (obj: SourceConfiguration) => any;
|
|
468
|
+
/**
|
|
469
|
+
* @internal
|
|
470
|
+
*/
|
|
471
|
+
export declare const ChimeSdkMeetingConfigurationFilterSensitiveLog: (obj: ChimeSdkMeetingConfiguration) => any;
|
|
472
|
+
/**
|
|
473
|
+
* @internal
|
|
474
|
+
*/
|
|
475
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
476
|
+
/**
|
|
477
|
+
* @internal
|
|
478
|
+
*/
|
|
479
|
+
export declare const CreateMediaCapturePipelineRequestFilterSensitiveLog: (obj: CreateMediaCapturePipelineRequest) => any;
|
|
480
|
+
/**
|
|
481
|
+
* @internal
|
|
482
|
+
*/
|
|
483
|
+
export declare const MediaCapturePipelineFilterSensitiveLog: (obj: MediaCapturePipeline) => any;
|
|
484
|
+
/**
|
|
485
|
+
* @internal
|
|
486
|
+
*/
|
|
487
|
+
export declare const CreateMediaCapturePipelineResponseFilterSensitiveLog: (obj: CreateMediaCapturePipelineResponse) => any;
|
|
488
|
+
/**
|
|
489
|
+
* @internal
|
|
490
|
+
*/
|
|
491
|
+
export declare const DeleteMediaCapturePipelineRequestFilterSensitiveLog: (obj: DeleteMediaCapturePipelineRequest) => any;
|
|
492
|
+
/**
|
|
493
|
+
* @internal
|
|
494
|
+
*/
|
|
495
|
+
export declare const GetMediaCapturePipelineRequestFilterSensitiveLog: (obj: GetMediaCapturePipelineRequest) => any;
|
|
496
|
+
/**
|
|
497
|
+
* @internal
|
|
498
|
+
*/
|
|
499
|
+
export declare const GetMediaCapturePipelineResponseFilterSensitiveLog: (obj: GetMediaCapturePipelineResponse) => any;
|
|
500
|
+
/**
|
|
501
|
+
* @internal
|
|
502
|
+
*/
|
|
503
|
+
export declare const ListMediaCapturePipelinesRequestFilterSensitiveLog: (obj: ListMediaCapturePipelinesRequest) => any;
|
|
504
|
+
/**
|
|
505
|
+
* @internal
|
|
506
|
+
*/
|
|
507
|
+
export declare const MediaCapturePipelineSummaryFilterSensitiveLog: (obj: MediaCapturePipelineSummary) => any;
|
|
508
|
+
/**
|
|
509
|
+
* @internal
|
|
510
|
+
*/
|
|
511
|
+
export declare const ListMediaCapturePipelinesResponseFilterSensitiveLog: (obj: ListMediaCapturePipelinesResponse) => any;
|
|
512
|
+
/**
|
|
513
|
+
* @internal
|
|
514
|
+
*/
|
|
515
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
516
|
+
/**
|
|
517
|
+
* @internal
|
|
518
|
+
*/
|
|
519
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
520
|
+
/**
|
|
521
|
+
* @internal
|
|
522
|
+
*/
|
|
523
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
524
|
+
/**
|
|
525
|
+
* @internal
|
|
526
|
+
*/
|
|
527
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
528
|
+
/**
|
|
529
|
+
* @internal
|
|
530
|
+
*/
|
|
531
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
532
|
+
/**
|
|
533
|
+
* @internal
|
|
534
|
+
*/
|
|
535
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
@@ -9,10 +9,6 @@ export interface AudioArtifactsConfiguration {
|
|
|
9
9
|
|
|
10
10
|
MuxType: AudioMuxType | string | undefined;
|
|
11
11
|
}
|
|
12
|
-
export declare namespace AudioArtifactsConfiguration {
|
|
13
|
-
|
|
14
|
-
const filterSensitiveLog: (obj: AudioArtifactsConfiguration) => any;
|
|
15
|
-
}
|
|
16
12
|
export declare enum ContentMuxType {
|
|
17
13
|
ContentOnly = "ContentOnly"
|
|
18
14
|
}
|
|
@@ -27,10 +23,6 @@ export interface ContentArtifactsConfiguration {
|
|
|
27
23
|
|
|
28
24
|
MuxType?: ContentMuxType | string;
|
|
29
25
|
}
|
|
30
|
-
export declare namespace ContentArtifactsConfiguration {
|
|
31
|
-
|
|
32
|
-
const filterSensitiveLog: (obj: ContentArtifactsConfiguration) => any;
|
|
33
|
-
}
|
|
34
26
|
export declare enum VideoMuxType {
|
|
35
27
|
VideoOnly = "VideoOnly"
|
|
36
28
|
}
|
|
@@ -41,10 +33,6 @@ export interface VideoArtifactsConfiguration {
|
|
|
41
33
|
|
|
42
34
|
MuxType?: VideoMuxType | string;
|
|
43
35
|
}
|
|
44
|
-
export declare namespace VideoArtifactsConfiguration {
|
|
45
|
-
|
|
46
|
-
const filterSensitiveLog: (obj: VideoArtifactsConfiguration) => any;
|
|
47
|
-
}
|
|
48
36
|
|
|
49
37
|
export interface ArtifactsConfiguration {
|
|
50
38
|
|
|
@@ -54,10 +42,6 @@ export interface ArtifactsConfiguration {
|
|
|
54
42
|
|
|
55
43
|
Content: ContentArtifactsConfiguration | undefined;
|
|
56
44
|
}
|
|
57
|
-
export declare namespace ArtifactsConfiguration {
|
|
58
|
-
|
|
59
|
-
const filterSensitiveLog: (obj: ArtifactsConfiguration) => any;
|
|
60
|
-
}
|
|
61
45
|
export declare enum ErrorCode {
|
|
62
46
|
BadRequest = "BadRequest",
|
|
63
47
|
Forbidden = "Forbidden",
|
|
@@ -85,19 +69,11 @@ export interface SelectedVideoStreams {
|
|
|
85
69
|
|
|
86
70
|
ExternalUserIds?: string[];
|
|
87
71
|
}
|
|
88
|
-
export declare namespace SelectedVideoStreams {
|
|
89
|
-
|
|
90
|
-
const filterSensitiveLog: (obj: SelectedVideoStreams) => any;
|
|
91
|
-
}
|
|
92
72
|
|
|
93
73
|
export interface SourceConfiguration {
|
|
94
74
|
|
|
95
75
|
SelectedVideoStreams?: SelectedVideoStreams;
|
|
96
76
|
}
|
|
97
|
-
export declare namespace SourceConfiguration {
|
|
98
|
-
|
|
99
|
-
const filterSensitiveLog: (obj: SourceConfiguration) => any;
|
|
100
|
-
}
|
|
101
77
|
|
|
102
78
|
export interface ChimeSdkMeetingConfiguration {
|
|
103
79
|
|
|
@@ -105,10 +81,6 @@ export interface ChimeSdkMeetingConfiguration {
|
|
|
105
81
|
|
|
106
82
|
ArtifactsConfiguration?: ArtifactsConfiguration;
|
|
107
83
|
}
|
|
108
|
-
export declare namespace ChimeSdkMeetingConfiguration {
|
|
109
|
-
|
|
110
|
-
const filterSensitiveLog: (obj: ChimeSdkMeetingConfiguration) => any;
|
|
111
|
-
}
|
|
112
84
|
export declare enum MediaPipelineSinkType {
|
|
113
85
|
S3Bucket = "S3Bucket"
|
|
114
86
|
}
|
|
@@ -122,10 +94,6 @@ export interface Tag {
|
|
|
122
94
|
|
|
123
95
|
Value: string | undefined;
|
|
124
96
|
}
|
|
125
|
-
export declare namespace Tag {
|
|
126
|
-
|
|
127
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
128
|
-
}
|
|
129
97
|
export interface CreateMediaCapturePipelineRequest {
|
|
130
98
|
|
|
131
99
|
SourceType: MediaPipelineSourceType | string | undefined;
|
|
@@ -142,10 +110,6 @@ export interface CreateMediaCapturePipelineRequest {
|
|
|
142
110
|
|
|
143
111
|
Tags?: Tag[];
|
|
144
112
|
}
|
|
145
|
-
export declare namespace CreateMediaCapturePipelineRequest {
|
|
146
|
-
|
|
147
|
-
const filterSensitiveLog: (obj: CreateMediaCapturePipelineRequest) => any;
|
|
148
|
-
}
|
|
149
113
|
export declare enum MediaPipelineStatus {
|
|
150
114
|
Failed = "Failed",
|
|
151
115
|
InProgress = "InProgress",
|
|
@@ -176,18 +140,10 @@ export interface MediaCapturePipeline {
|
|
|
176
140
|
|
|
177
141
|
ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
|
|
178
142
|
}
|
|
179
|
-
export declare namespace MediaCapturePipeline {
|
|
180
|
-
|
|
181
|
-
const filterSensitiveLog: (obj: MediaCapturePipeline) => any;
|
|
182
|
-
}
|
|
183
143
|
export interface CreateMediaCapturePipelineResponse {
|
|
184
144
|
|
|
185
145
|
MediaCapturePipeline?: MediaCapturePipeline;
|
|
186
146
|
}
|
|
187
|
-
export declare namespace CreateMediaCapturePipelineResponse {
|
|
188
|
-
|
|
189
|
-
const filterSensitiveLog: (obj: CreateMediaCapturePipelineResponse) => any;
|
|
190
|
-
}
|
|
191
147
|
|
|
192
148
|
export declare class ForbiddenException extends __BaseException {
|
|
193
149
|
readonly name: "ForbiddenException";
|
|
@@ -258,10 +214,6 @@ export interface DeleteMediaCapturePipelineRequest {
|
|
|
258
214
|
|
|
259
215
|
MediaPipelineId: string | undefined;
|
|
260
216
|
}
|
|
261
|
-
export declare namespace DeleteMediaCapturePipelineRequest {
|
|
262
|
-
|
|
263
|
-
const filterSensitiveLog: (obj: DeleteMediaCapturePipelineRequest) => any;
|
|
264
|
-
}
|
|
265
217
|
|
|
266
218
|
export declare class NotFoundException extends __BaseException {
|
|
267
219
|
readonly name: "NotFoundException";
|
|
@@ -277,28 +229,16 @@ export interface GetMediaCapturePipelineRequest {
|
|
|
277
229
|
|
|
278
230
|
MediaPipelineId: string | undefined;
|
|
279
231
|
}
|
|
280
|
-
export declare namespace GetMediaCapturePipelineRequest {
|
|
281
|
-
|
|
282
|
-
const filterSensitiveLog: (obj: GetMediaCapturePipelineRequest) => any;
|
|
283
|
-
}
|
|
284
232
|
export interface GetMediaCapturePipelineResponse {
|
|
285
233
|
|
|
286
234
|
MediaCapturePipeline?: MediaCapturePipeline;
|
|
287
235
|
}
|
|
288
|
-
export declare namespace GetMediaCapturePipelineResponse {
|
|
289
|
-
|
|
290
|
-
const filterSensitiveLog: (obj: GetMediaCapturePipelineResponse) => any;
|
|
291
|
-
}
|
|
292
236
|
export interface ListMediaCapturePipelinesRequest {
|
|
293
237
|
|
|
294
238
|
NextToken?: string;
|
|
295
239
|
|
|
296
240
|
MaxResults?: number;
|
|
297
241
|
}
|
|
298
|
-
export declare namespace ListMediaCapturePipelinesRequest {
|
|
299
|
-
|
|
300
|
-
const filterSensitiveLog: (obj: ListMediaCapturePipelinesRequest) => any;
|
|
301
|
-
}
|
|
302
242
|
|
|
303
243
|
export interface MediaCapturePipelineSummary {
|
|
304
244
|
|
|
@@ -306,65 +246,79 @@ export interface MediaCapturePipelineSummary {
|
|
|
306
246
|
|
|
307
247
|
MediaPipelineArn?: string;
|
|
308
248
|
}
|
|
309
|
-
export declare namespace MediaCapturePipelineSummary {
|
|
310
|
-
|
|
311
|
-
const filterSensitiveLog: (obj: MediaCapturePipelineSummary) => any;
|
|
312
|
-
}
|
|
313
249
|
export interface ListMediaCapturePipelinesResponse {
|
|
314
250
|
|
|
315
251
|
MediaCapturePipelines?: MediaCapturePipelineSummary[];
|
|
316
252
|
|
|
317
253
|
NextToken?: string;
|
|
318
254
|
}
|
|
319
|
-
export declare namespace ListMediaCapturePipelinesResponse {
|
|
320
|
-
|
|
321
|
-
const filterSensitiveLog: (obj: ListMediaCapturePipelinesResponse) => any;
|
|
322
|
-
}
|
|
323
255
|
export interface ListTagsForResourceRequest {
|
|
324
256
|
|
|
325
257
|
ResourceARN: string | undefined;
|
|
326
258
|
}
|
|
327
|
-
export declare namespace ListTagsForResourceRequest {
|
|
328
|
-
|
|
329
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
330
|
-
}
|
|
331
259
|
export interface ListTagsForResourceResponse {
|
|
332
260
|
|
|
333
261
|
Tags?: Tag[];
|
|
334
262
|
}
|
|
335
|
-
export declare namespace ListTagsForResourceResponse {
|
|
336
|
-
|
|
337
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
338
|
-
}
|
|
339
263
|
export interface TagResourceRequest {
|
|
340
264
|
|
|
341
265
|
ResourceARN: string | undefined;
|
|
342
266
|
|
|
343
267
|
Tags: Tag[] | undefined;
|
|
344
268
|
}
|
|
345
|
-
export declare namespace TagResourceRequest {
|
|
346
|
-
|
|
347
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
348
|
-
}
|
|
349
269
|
export interface TagResourceResponse {
|
|
350
270
|
}
|
|
351
|
-
export declare namespace TagResourceResponse {
|
|
352
|
-
|
|
353
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
354
|
-
}
|
|
355
271
|
export interface UntagResourceRequest {
|
|
356
272
|
|
|
357
273
|
ResourceARN: string | undefined;
|
|
358
274
|
|
|
359
275
|
TagKeys: string[] | undefined;
|
|
360
276
|
}
|
|
361
|
-
export declare namespace UntagResourceRequest {
|
|
362
|
-
|
|
363
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
364
|
-
}
|
|
365
277
|
export interface UntagResourceResponse {
|
|
366
278
|
}
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
279
|
+
|
|
280
|
+
export declare const AudioArtifactsConfigurationFilterSensitiveLog: (obj: AudioArtifactsConfiguration) => any;
|
|
281
|
+
|
|
282
|
+
export declare const ContentArtifactsConfigurationFilterSensitiveLog: (obj: ContentArtifactsConfiguration) => any;
|
|
283
|
+
|
|
284
|
+
export declare const VideoArtifactsConfigurationFilterSensitiveLog: (obj: VideoArtifactsConfiguration) => any;
|
|
285
|
+
|
|
286
|
+
export declare const ArtifactsConfigurationFilterSensitiveLog: (obj: ArtifactsConfiguration) => any;
|
|
287
|
+
|
|
288
|
+
export declare const SelectedVideoStreamsFilterSensitiveLog: (obj: SelectedVideoStreams) => any;
|
|
289
|
+
|
|
290
|
+
export declare const SourceConfigurationFilterSensitiveLog: (obj: SourceConfiguration) => any;
|
|
291
|
+
|
|
292
|
+
export declare const ChimeSdkMeetingConfigurationFilterSensitiveLog: (obj: ChimeSdkMeetingConfiguration) => any;
|
|
293
|
+
|
|
294
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
295
|
+
|
|
296
|
+
export declare const CreateMediaCapturePipelineRequestFilterSensitiveLog: (obj: CreateMediaCapturePipelineRequest) => any;
|
|
297
|
+
|
|
298
|
+
export declare const MediaCapturePipelineFilterSensitiveLog: (obj: MediaCapturePipeline) => any;
|
|
299
|
+
|
|
300
|
+
export declare const CreateMediaCapturePipelineResponseFilterSensitiveLog: (obj: CreateMediaCapturePipelineResponse) => any;
|
|
301
|
+
|
|
302
|
+
export declare const DeleteMediaCapturePipelineRequestFilterSensitiveLog: (obj: DeleteMediaCapturePipelineRequest) => any;
|
|
303
|
+
|
|
304
|
+
export declare const GetMediaCapturePipelineRequestFilterSensitiveLog: (obj: GetMediaCapturePipelineRequest) => any;
|
|
305
|
+
|
|
306
|
+
export declare const GetMediaCapturePipelineResponseFilterSensitiveLog: (obj: GetMediaCapturePipelineResponse) => any;
|
|
307
|
+
|
|
308
|
+
export declare const ListMediaCapturePipelinesRequestFilterSensitiveLog: (obj: ListMediaCapturePipelinesRequest) => any;
|
|
309
|
+
|
|
310
|
+
export declare const MediaCapturePipelineSummaryFilterSensitiveLog: (obj: MediaCapturePipelineSummary) => any;
|
|
311
|
+
|
|
312
|
+
export declare const ListMediaCapturePipelinesResponseFilterSensitiveLog: (obj: ListMediaCapturePipelinesResponse) => any;
|
|
313
|
+
|
|
314
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
315
|
+
|
|
316
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
317
|
+
|
|
318
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
319
|
+
|
|
320
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
321
|
+
|
|
322
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
323
|
+
|
|
324
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
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.142.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.142.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.142.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",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.142.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
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
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|