@aws-sdk/client-ivs-realtime 3.379.1 → 3.385.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/dist-types/models/models_0.d.ts +106 -0
- package/package.json +5 -5
|
@@ -8,6 +8,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
10
|
/**
|
|
11
|
+
* @public
|
|
11
12
|
* <p>User does not have sufficient access to perform this action.</p>
|
|
12
13
|
*/
|
|
13
14
|
exceptionMessage?: string;
|
|
@@ -33,14 +34,17 @@ export type ParticipantTokenCapability = (typeof ParticipantTokenCapability)[key
|
|
|
33
34
|
*/
|
|
34
35
|
export interface CreateParticipantTokenRequest {
|
|
35
36
|
/**
|
|
37
|
+
* @public
|
|
36
38
|
* <p>ARN of the stage to which this token is scoped.</p>
|
|
37
39
|
*/
|
|
38
40
|
stageArn: string | undefined;
|
|
39
41
|
/**
|
|
42
|
+
* @public
|
|
40
43
|
* <p>Duration (in minutes), after which the token expires. Default: 720 (12 hours).</p>
|
|
41
44
|
*/
|
|
42
45
|
duration?: number;
|
|
43
46
|
/**
|
|
47
|
+
* @public
|
|
44
48
|
* <p>Name that can be specified to help identify the token. This can be any UTF-8 encoded
|
|
45
49
|
* text. <i>This field is exposed to all stage participants and should not be used for
|
|
46
50
|
* personally identifying, confidential, or sensitive information.</i>
|
|
@@ -48,6 +52,7 @@ export interface CreateParticipantTokenRequest {
|
|
|
48
52
|
*/
|
|
49
53
|
userId?: string;
|
|
50
54
|
/**
|
|
55
|
+
* @public
|
|
51
56
|
* <p>Application-provided attributes to encode into the token and attach to a stage. Map keys
|
|
52
57
|
* and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total.
|
|
53
58
|
* <i>This field is exposed to all stage participants and should not be used for
|
|
@@ -56,6 +61,7 @@ export interface CreateParticipantTokenRequest {
|
|
|
56
61
|
*/
|
|
57
62
|
attributes?: Record<string, string>;
|
|
58
63
|
/**
|
|
64
|
+
* @public
|
|
59
65
|
* <p>Set of capabilities that the user is allowed to perform in the stage. Default:
|
|
60
66
|
* <code>PUBLISH, SUBSCRIBE</code>.</p>
|
|
61
67
|
*/
|
|
@@ -67,14 +73,17 @@ export interface CreateParticipantTokenRequest {
|
|
|
67
73
|
*/
|
|
68
74
|
export interface ParticipantToken {
|
|
69
75
|
/**
|
|
76
|
+
* @public
|
|
70
77
|
* <p>Unique identifier for this participant token, assigned by IVS.</p>
|
|
71
78
|
*/
|
|
72
79
|
participantId?: string;
|
|
73
80
|
/**
|
|
81
|
+
* @public
|
|
74
82
|
* <p>The issued client token, encrypted.</p>
|
|
75
83
|
*/
|
|
76
84
|
token?: string;
|
|
77
85
|
/**
|
|
86
|
+
* @public
|
|
78
87
|
* <p>Customer-assigned name to help identify the token; this can be used to link a
|
|
79
88
|
* participant to a user in the customer’s own systems. This can be any UTF-8 encoded text.
|
|
80
89
|
* <i>This field is exposed to all stage participants and should not be used for
|
|
@@ -83,6 +92,7 @@ export interface ParticipantToken {
|
|
|
83
92
|
*/
|
|
84
93
|
userId?: string;
|
|
85
94
|
/**
|
|
95
|
+
* @public
|
|
86
96
|
* <p>Application-provided attributes to encode into the token and attach to a stage.
|
|
87
97
|
* <i>This field is exposed to all stage participants and should not be used for
|
|
88
98
|
* personally identifying, confidential, or sensitive information.</i>
|
|
@@ -90,14 +100,17 @@ export interface ParticipantToken {
|
|
|
90
100
|
*/
|
|
91
101
|
attributes?: Record<string, string>;
|
|
92
102
|
/**
|
|
103
|
+
* @public
|
|
93
104
|
* <p>Duration (in minutes), after which the participant token expires. Default: 720 (12 hours).</p>
|
|
94
105
|
*/
|
|
95
106
|
duration?: number;
|
|
96
107
|
/**
|
|
108
|
+
* @public
|
|
97
109
|
* <p>Set of capabilities that the user is allowed to perform in the stage.</p>
|
|
98
110
|
*/
|
|
99
111
|
capabilities?: (ParticipantTokenCapability | string)[];
|
|
100
112
|
/**
|
|
113
|
+
* @public
|
|
101
114
|
* <p>ISO 8601 timestamp (returned as a string) for when this token expires.</p>
|
|
102
115
|
*/
|
|
103
116
|
expirationTime?: Date;
|
|
@@ -107,6 +120,7 @@ export interface ParticipantToken {
|
|
|
107
120
|
*/
|
|
108
121
|
export interface CreateParticipantTokenResponse {
|
|
109
122
|
/**
|
|
123
|
+
* @public
|
|
110
124
|
* <p>The participant token that was created.</p>
|
|
111
125
|
*/
|
|
112
126
|
participantToken?: ParticipantToken;
|
|
@@ -119,6 +133,7 @@ export declare class PendingVerification extends __BaseException {
|
|
|
119
133
|
readonly name: "PendingVerification";
|
|
120
134
|
readonly $fault: "client";
|
|
121
135
|
/**
|
|
136
|
+
* @public
|
|
122
137
|
* <p> Your account is pending verification. </p>
|
|
123
138
|
*/
|
|
124
139
|
exceptionMessage?: string;
|
|
@@ -135,6 +150,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
135
150
|
readonly name: "ResourceNotFoundException";
|
|
136
151
|
readonly $fault: "client";
|
|
137
152
|
/**
|
|
153
|
+
* @public
|
|
138
154
|
* <p>Request references a resource which does not exist.</p>
|
|
139
155
|
*/
|
|
140
156
|
exceptionMessage?: string;
|
|
@@ -151,6 +167,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
151
167
|
readonly name: "ServiceQuotaExceededException";
|
|
152
168
|
readonly $fault: "client";
|
|
153
169
|
/**
|
|
170
|
+
* @public
|
|
154
171
|
* <p>Request would cause a service quota to be exceeded.</p>
|
|
155
172
|
*/
|
|
156
173
|
exceptionMessage?: string;
|
|
@@ -167,6 +184,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
167
184
|
readonly name: "ValidationException";
|
|
168
185
|
readonly $fault: "client";
|
|
169
186
|
/**
|
|
187
|
+
* @public
|
|
170
188
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
171
189
|
*/
|
|
172
190
|
exceptionMessage?: string;
|
|
@@ -181,11 +199,13 @@ export declare class ValidationException extends __BaseException {
|
|
|
181
199
|
*/
|
|
182
200
|
export interface ParticipantTokenConfiguration {
|
|
183
201
|
/**
|
|
202
|
+
* @public
|
|
184
203
|
* <p>Duration (in minutes), after which the corresponding participant token expires. Default:
|
|
185
204
|
* 720 (12 hours).</p>
|
|
186
205
|
*/
|
|
187
206
|
duration?: number;
|
|
188
207
|
/**
|
|
208
|
+
* @public
|
|
189
209
|
* <p>Customer-assigned name to help identify the token; this can be used to link a
|
|
190
210
|
* participant to a user in the customer’s own systems. This can be any UTF-8 encoded text.
|
|
191
211
|
* <i>This field is exposed to all stage participants and should not be used for
|
|
@@ -194,6 +214,7 @@ export interface ParticipantTokenConfiguration {
|
|
|
194
214
|
*/
|
|
195
215
|
userId?: string;
|
|
196
216
|
/**
|
|
217
|
+
* @public
|
|
197
218
|
* <p>Application-provided attributes to encode into the corresponding participant token and
|
|
198
219
|
* attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length
|
|
199
220
|
* of this field is 1 KB total. <i>This field is exposed to all stage participants and
|
|
@@ -203,6 +224,7 @@ export interface ParticipantTokenConfiguration {
|
|
|
203
224
|
*/
|
|
204
225
|
attributes?: Record<string, string>;
|
|
205
226
|
/**
|
|
227
|
+
* @public
|
|
206
228
|
* <p>Set of capabilities that the user is allowed to perform in the stage.</p>
|
|
207
229
|
*/
|
|
208
230
|
capabilities?: (ParticipantTokenCapability | string)[];
|
|
@@ -212,14 +234,17 @@ export interface ParticipantTokenConfiguration {
|
|
|
212
234
|
*/
|
|
213
235
|
export interface CreateStageRequest {
|
|
214
236
|
/**
|
|
237
|
+
* @public
|
|
215
238
|
* <p>Optional name that can be specified for the stage being created.</p>
|
|
216
239
|
*/
|
|
217
240
|
name?: string;
|
|
218
241
|
/**
|
|
242
|
+
* @public
|
|
219
243
|
* <p>Array of participant token configuration objects to attach to the new stage.</p>
|
|
220
244
|
*/
|
|
221
245
|
participantTokenConfigurations?: ParticipantTokenConfiguration[];
|
|
222
246
|
/**
|
|
247
|
+
* @public
|
|
223
248
|
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
224
249
|
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
|
|
225
250
|
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
|
|
@@ -234,18 +259,22 @@ export interface CreateStageRequest {
|
|
|
234
259
|
*/
|
|
235
260
|
export interface Stage {
|
|
236
261
|
/**
|
|
262
|
+
* @public
|
|
237
263
|
* <p>Stage ARN.</p>
|
|
238
264
|
*/
|
|
239
265
|
arn: string | undefined;
|
|
240
266
|
/**
|
|
267
|
+
* @public
|
|
241
268
|
* <p>Stage name.</p>
|
|
242
269
|
*/
|
|
243
270
|
name?: string;
|
|
244
271
|
/**
|
|
272
|
+
* @public
|
|
245
273
|
* <p>ID of the active session within the stage.</p>
|
|
246
274
|
*/
|
|
247
275
|
activeSessionId?: string;
|
|
248
276
|
/**
|
|
277
|
+
* @public
|
|
249
278
|
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
250
279
|
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
|
|
251
280
|
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
|
|
@@ -259,10 +288,12 @@ export interface Stage {
|
|
|
259
288
|
*/
|
|
260
289
|
export interface CreateStageResponse {
|
|
261
290
|
/**
|
|
291
|
+
* @public
|
|
262
292
|
* <p>The stage that was created.</p>
|
|
263
293
|
*/
|
|
264
294
|
stage?: Stage;
|
|
265
295
|
/**
|
|
296
|
+
* @public
|
|
266
297
|
* <p>Participant tokens attached to the stage. These correspond to the
|
|
267
298
|
* <code>participants</code> in the request.</p>
|
|
268
299
|
*/
|
|
@@ -276,6 +307,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
276
307
|
readonly name: "ConflictException";
|
|
277
308
|
readonly $fault: "client";
|
|
278
309
|
/**
|
|
310
|
+
* @public
|
|
279
311
|
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
280
312
|
*/
|
|
281
313
|
exceptionMessage?: string;
|
|
@@ -289,6 +321,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
289
321
|
*/
|
|
290
322
|
export interface DeleteStageRequest {
|
|
291
323
|
/**
|
|
324
|
+
* @public
|
|
292
325
|
* <p>ARN of the stage to be deleted.</p>
|
|
293
326
|
*/
|
|
294
327
|
arn: string | undefined;
|
|
@@ -303,15 +336,18 @@ export interface DeleteStageResponse {
|
|
|
303
336
|
*/
|
|
304
337
|
export interface DisconnectParticipantRequest {
|
|
305
338
|
/**
|
|
339
|
+
* @public
|
|
306
340
|
* <p>ARN of the stage to which the participant is attached.</p>
|
|
307
341
|
*/
|
|
308
342
|
stageArn: string | undefined;
|
|
309
343
|
/**
|
|
344
|
+
* @public
|
|
310
345
|
* <p>Identifier of the participant to be disconnected. This is assigned by IVS and returned
|
|
311
346
|
* by <a>CreateParticipantToken</a>.</p>
|
|
312
347
|
*/
|
|
313
348
|
participantId: string | undefined;
|
|
314
349
|
/**
|
|
350
|
+
* @public
|
|
315
351
|
* <p>Description of why this participant is being disconnected.</p>
|
|
316
352
|
*/
|
|
317
353
|
reason?: string;
|
|
@@ -326,14 +362,17 @@ export interface DisconnectParticipantResponse {
|
|
|
326
362
|
*/
|
|
327
363
|
export interface GetParticipantRequest {
|
|
328
364
|
/**
|
|
365
|
+
* @public
|
|
329
366
|
* <p>Stage ARN.</p>
|
|
330
367
|
*/
|
|
331
368
|
stageArn: string | undefined;
|
|
332
369
|
/**
|
|
370
|
+
* @public
|
|
333
371
|
* <p>ID of a session within the stage.</p>
|
|
334
372
|
*/
|
|
335
373
|
sessionId: string | undefined;
|
|
336
374
|
/**
|
|
375
|
+
* @public
|
|
337
376
|
* <p>Unique identifier for the participant. This is assigned by IVS and returned by <a>CreateParticipantToken</a>.</p>
|
|
338
377
|
*/
|
|
339
378
|
participantId: string | undefined;
|
|
@@ -356,10 +395,12 @@ export type ParticipantState = (typeof ParticipantState)[keyof typeof Participan
|
|
|
356
395
|
*/
|
|
357
396
|
export interface Participant {
|
|
358
397
|
/**
|
|
398
|
+
* @public
|
|
359
399
|
* <p>Unique identifier for this participant, assigned by IVS.</p>
|
|
360
400
|
*/
|
|
361
401
|
participantId?: string;
|
|
362
402
|
/**
|
|
403
|
+
* @public
|
|
363
404
|
* <p>Customer-assigned name to help identify the token; this can be used to link a
|
|
364
405
|
* participant to a user in the customer’s own systems. This can be any UTF-8 encoded text.
|
|
365
406
|
* <i>This field is exposed to all stage participants and should not be used for
|
|
@@ -367,15 +408,18 @@ export interface Participant {
|
|
|
367
408
|
*/
|
|
368
409
|
userId?: string;
|
|
369
410
|
/**
|
|
411
|
+
* @public
|
|
370
412
|
* <p>Whether the participant is connected to or disconnected from the stage.</p>
|
|
371
413
|
*/
|
|
372
414
|
state?: ParticipantState | string;
|
|
373
415
|
/**
|
|
416
|
+
* @public
|
|
374
417
|
* <p>ISO 8601 timestamp (returned as a string) when the participant first joined the stage
|
|
375
418
|
* session.</p>
|
|
376
419
|
*/
|
|
377
420
|
firstJoinTime?: Date;
|
|
378
421
|
/**
|
|
422
|
+
* @public
|
|
379
423
|
* <p>Application-provided attributes to encode into the token and attach to a stage. Map keys
|
|
380
424
|
* and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total.
|
|
381
425
|
* <i>This field is exposed to all stage participants and should not be used for
|
|
@@ -383,6 +427,7 @@ export interface Participant {
|
|
|
383
427
|
*/
|
|
384
428
|
attributes?: Record<string, string>;
|
|
385
429
|
/**
|
|
430
|
+
* @public
|
|
386
431
|
* <p>Whether the participant ever published to the stage session.</p>
|
|
387
432
|
*/
|
|
388
433
|
published?: boolean;
|
|
@@ -392,6 +437,7 @@ export interface Participant {
|
|
|
392
437
|
*/
|
|
393
438
|
export interface GetParticipantResponse {
|
|
394
439
|
/**
|
|
440
|
+
* @public
|
|
395
441
|
* <p>The participant that is returned.</p>
|
|
396
442
|
*/
|
|
397
443
|
participant?: Participant;
|
|
@@ -401,6 +447,7 @@ export interface GetParticipantResponse {
|
|
|
401
447
|
*/
|
|
402
448
|
export interface GetStageRequest {
|
|
403
449
|
/**
|
|
450
|
+
* @public
|
|
404
451
|
* <p>ARN of the stage for which the information is to be retrieved.</p>
|
|
405
452
|
*/
|
|
406
453
|
arn: string | undefined;
|
|
@@ -410,6 +457,7 @@ export interface GetStageRequest {
|
|
|
410
457
|
*/
|
|
411
458
|
export interface GetStageResponse {
|
|
412
459
|
/**
|
|
460
|
+
* @public
|
|
413
461
|
* <p>The stage that is returned.</p>
|
|
414
462
|
*/
|
|
415
463
|
stage?: Stage;
|
|
@@ -419,10 +467,12 @@ export interface GetStageResponse {
|
|
|
419
467
|
*/
|
|
420
468
|
export interface GetStageSessionRequest {
|
|
421
469
|
/**
|
|
470
|
+
* @public
|
|
422
471
|
* <p>ARN of the stage for which the information is to be retrieved.</p>
|
|
423
472
|
*/
|
|
424
473
|
stageArn: string | undefined;
|
|
425
474
|
/**
|
|
475
|
+
* @public
|
|
426
476
|
* <p>ID of a session within the stage.</p>
|
|
427
477
|
*/
|
|
428
478
|
sessionId: string | undefined;
|
|
@@ -436,14 +486,17 @@ export interface GetStageSessionRequest {
|
|
|
436
486
|
*/
|
|
437
487
|
export interface StageSession {
|
|
438
488
|
/**
|
|
489
|
+
* @public
|
|
439
490
|
* <p>ID of the session within the stage.</p>
|
|
440
491
|
*/
|
|
441
492
|
sessionId?: string;
|
|
442
493
|
/**
|
|
494
|
+
* @public
|
|
443
495
|
* <p> ISO 8601 timestamp (returned as a string) when this stage session began.</p>
|
|
444
496
|
*/
|
|
445
497
|
startTime?: Date;
|
|
446
498
|
/**
|
|
499
|
+
* @public
|
|
447
500
|
* <p>ISO 8601 timestamp (returned as a string) when the stage session ended. This is null if
|
|
448
501
|
* the stage is active.</p>
|
|
449
502
|
*/
|
|
@@ -454,6 +507,7 @@ export interface StageSession {
|
|
|
454
507
|
*/
|
|
455
508
|
export interface GetStageSessionResponse {
|
|
456
509
|
/**
|
|
510
|
+
* @public
|
|
457
511
|
* <p>The stage session that is returned.</p>
|
|
458
512
|
*/
|
|
459
513
|
stageSession?: StageSession;
|
|
@@ -463,23 +517,28 @@ export interface GetStageSessionResponse {
|
|
|
463
517
|
*/
|
|
464
518
|
export interface ListParticipantEventsRequest {
|
|
465
519
|
/**
|
|
520
|
+
* @public
|
|
466
521
|
* <p>Stage ARN.</p>
|
|
467
522
|
*/
|
|
468
523
|
stageArn: string | undefined;
|
|
469
524
|
/**
|
|
525
|
+
* @public
|
|
470
526
|
* <p>ID of a session within the stage.</p>
|
|
471
527
|
*/
|
|
472
528
|
sessionId: string | undefined;
|
|
473
529
|
/**
|
|
530
|
+
* @public
|
|
474
531
|
* <p>Unique identifier for this participant. This is assigned by IVS and returned by <a>CreateParticipantToken</a>.</p>
|
|
475
532
|
*/
|
|
476
533
|
participantId: string | undefined;
|
|
477
534
|
/**
|
|
535
|
+
* @public
|
|
478
536
|
* <p>The first participant to retrieve. This is used for pagination; see the
|
|
479
537
|
* <code>nextToken</code> response field.</p>
|
|
480
538
|
*/
|
|
481
539
|
nextToken?: string;
|
|
482
540
|
/**
|
|
541
|
+
* @public
|
|
483
542
|
* <p>Maximum number of results to return. Default: 50.</p>
|
|
484
543
|
*/
|
|
485
544
|
maxResults?: number;
|
|
@@ -520,24 +579,29 @@ export type EventName = (typeof EventName)[keyof typeof EventName];
|
|
|
520
579
|
*/
|
|
521
580
|
export interface Event {
|
|
522
581
|
/**
|
|
582
|
+
* @public
|
|
523
583
|
* <p>The name of the event.</p>
|
|
524
584
|
*/
|
|
525
585
|
name?: EventName | string;
|
|
526
586
|
/**
|
|
587
|
+
* @public
|
|
527
588
|
* <p>Unique identifier for the participant who triggered the event. This is assigned by
|
|
528
589
|
* IVS.</p>
|
|
529
590
|
*/
|
|
530
591
|
participantId?: string;
|
|
531
592
|
/**
|
|
593
|
+
* @public
|
|
532
594
|
* <p>ISO 8601 timestamp (returned as a string) for when the event occurred.</p>
|
|
533
595
|
*/
|
|
534
596
|
eventTime?: Date;
|
|
535
597
|
/**
|
|
598
|
+
* @public
|
|
536
599
|
* <p>Unique identifier for the remote participant. For a subscribe event, this is the
|
|
537
600
|
* publisher. For a publish or join event, this is null. This is assigned by IVS.</p>
|
|
538
601
|
*/
|
|
539
602
|
remoteParticipantId?: string;
|
|
540
603
|
/**
|
|
604
|
+
* @public
|
|
541
605
|
* <p>If the event is an error event, the error code is provided to give insight into the
|
|
542
606
|
* specific error that occurred. If the event is not an error event, this field is null.
|
|
543
607
|
* <code>INSUFFICIENT_CAPABILITIES</code> indicates that the participant tried to take an action that the
|
|
@@ -551,10 +615,12 @@ export interface Event {
|
|
|
551
615
|
*/
|
|
552
616
|
export interface ListParticipantEventsResponse {
|
|
553
617
|
/**
|
|
618
|
+
* @public
|
|
554
619
|
* <p>List of the matching events.</p>
|
|
555
620
|
*/
|
|
556
621
|
events: Event[] | undefined;
|
|
557
622
|
/**
|
|
623
|
+
* @public
|
|
558
624
|
* <p>If there are more rooms than <code>maxResults</code>, use <code>nextToken</code> in the
|
|
559
625
|
* request to get the next set. </p>
|
|
560
626
|
*/
|
|
@@ -565,14 +631,17 @@ export interface ListParticipantEventsResponse {
|
|
|
565
631
|
*/
|
|
566
632
|
export interface ListParticipantsRequest {
|
|
567
633
|
/**
|
|
634
|
+
* @public
|
|
568
635
|
* <p>Stage ARN.</p>
|
|
569
636
|
*/
|
|
570
637
|
stageArn: string | undefined;
|
|
571
638
|
/**
|
|
639
|
+
* @public
|
|
572
640
|
* <p>ID of the session within the stage.</p>
|
|
573
641
|
*/
|
|
574
642
|
sessionId: string | undefined;
|
|
575
643
|
/**
|
|
644
|
+
* @public
|
|
576
645
|
* <p>Filters the response list to match the specified user ID. Only one of
|
|
577
646
|
* <code>filterByUserId</code>, <code>filterByPublished</code>, or
|
|
578
647
|
* <code>filterByState</code> can be provided per request. A <code>userId</code> is a
|
|
@@ -581,23 +650,27 @@ export interface ListParticipantsRequest {
|
|
|
581
650
|
*/
|
|
582
651
|
filterByUserId?: string;
|
|
583
652
|
/**
|
|
653
|
+
* @public
|
|
584
654
|
* <p>Filters the response list to only show participants who published during the stage
|
|
585
655
|
* session. Only one of <code>filterByUserId</code>, <code>filterByPublished</code>, or
|
|
586
656
|
* <code>filterByState</code> can be provided per request.</p>
|
|
587
657
|
*/
|
|
588
658
|
filterByPublished?: boolean;
|
|
589
659
|
/**
|
|
660
|
+
* @public
|
|
590
661
|
* <p>Filters the response list to only show participants in the specified state. Only one of
|
|
591
662
|
* <code>filterByUserId</code>, <code>filterByPublished</code>, or
|
|
592
663
|
* <code>filterByState</code> can be provided per request.</p>
|
|
593
664
|
*/
|
|
594
665
|
filterByState?: ParticipantState | string;
|
|
595
666
|
/**
|
|
667
|
+
* @public
|
|
596
668
|
* <p>The first participant to retrieve. This is used for pagination; see the
|
|
597
669
|
* <code>nextToken</code> response field.</p>
|
|
598
670
|
*/
|
|
599
671
|
nextToken?: string;
|
|
600
672
|
/**
|
|
673
|
+
* @public
|
|
601
674
|
* <p>Maximum number of results to return. Default: 50.</p>
|
|
602
675
|
*/
|
|
603
676
|
maxResults?: number;
|
|
@@ -608,10 +681,12 @@ export interface ListParticipantsRequest {
|
|
|
608
681
|
*/
|
|
609
682
|
export interface ParticipantSummary {
|
|
610
683
|
/**
|
|
684
|
+
* @public
|
|
611
685
|
* <p>Unique identifier for this participant, assigned by IVS.</p>
|
|
612
686
|
*/
|
|
613
687
|
participantId?: string;
|
|
614
688
|
/**
|
|
689
|
+
* @public
|
|
615
690
|
* <p>Customer-assigned name to help identify the token; this can be used to link a
|
|
616
691
|
* participant to a user in the customer’s own systems. This can be any UTF-8 encoded text.
|
|
617
692
|
* <i>This field is exposed to all stage participants and should not be used for
|
|
@@ -619,15 +694,18 @@ export interface ParticipantSummary {
|
|
|
619
694
|
*/
|
|
620
695
|
userId?: string;
|
|
621
696
|
/**
|
|
697
|
+
* @public
|
|
622
698
|
* <p>Whether the participant is connected to or disconnected from the stage.</p>
|
|
623
699
|
*/
|
|
624
700
|
state?: ParticipantState | string;
|
|
625
701
|
/**
|
|
702
|
+
* @public
|
|
626
703
|
* <p>ISO 8601 timestamp (returned as a string) when the participant first joined the stage
|
|
627
704
|
* session.</p>
|
|
628
705
|
*/
|
|
629
706
|
firstJoinTime?: Date;
|
|
630
707
|
/**
|
|
708
|
+
* @public
|
|
631
709
|
* <p>Whether the participant ever published to the stage session.</p>
|
|
632
710
|
*/
|
|
633
711
|
published?: boolean;
|
|
@@ -637,10 +715,12 @@ export interface ParticipantSummary {
|
|
|
637
715
|
*/
|
|
638
716
|
export interface ListParticipantsResponse {
|
|
639
717
|
/**
|
|
718
|
+
* @public
|
|
640
719
|
* <p>List of the matching participants (summary information only).</p>
|
|
641
720
|
*/
|
|
642
721
|
participants: ParticipantSummary[] | undefined;
|
|
643
722
|
/**
|
|
723
|
+
* @public
|
|
644
724
|
* <p>If there are more rooms than <code>maxResults</code>, use <code>nextToken</code> in the
|
|
645
725
|
* request to get the next set.</p>
|
|
646
726
|
*/
|
|
@@ -651,11 +731,13 @@ export interface ListParticipantsResponse {
|
|
|
651
731
|
*/
|
|
652
732
|
export interface ListStagesRequest {
|
|
653
733
|
/**
|
|
734
|
+
* @public
|
|
654
735
|
* <p>The first stage to retrieve. This is used for pagination; see the <code>nextToken</code>
|
|
655
736
|
* response field.</p>
|
|
656
737
|
*/
|
|
657
738
|
nextToken?: string;
|
|
658
739
|
/**
|
|
740
|
+
* @public
|
|
659
741
|
* <p>Maximum number of results to return. Default: 50.</p>
|
|
660
742
|
*/
|
|
661
743
|
maxResults?: number;
|
|
@@ -666,18 +748,22 @@ export interface ListStagesRequest {
|
|
|
666
748
|
*/
|
|
667
749
|
export interface StageSummary {
|
|
668
750
|
/**
|
|
751
|
+
* @public
|
|
669
752
|
* <p>Stage ARN.</p>
|
|
670
753
|
*/
|
|
671
754
|
arn: string | undefined;
|
|
672
755
|
/**
|
|
756
|
+
* @public
|
|
673
757
|
* <p>Stage name.</p>
|
|
674
758
|
*/
|
|
675
759
|
name?: string;
|
|
676
760
|
/**
|
|
761
|
+
* @public
|
|
677
762
|
* <p>ID of the active session within the stage.</p>
|
|
678
763
|
*/
|
|
679
764
|
activeSessionId?: string;
|
|
680
765
|
/**
|
|
766
|
+
* @public
|
|
681
767
|
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
682
768
|
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
|
|
683
769
|
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
|
|
@@ -691,10 +777,12 @@ export interface StageSummary {
|
|
|
691
777
|
*/
|
|
692
778
|
export interface ListStagesResponse {
|
|
693
779
|
/**
|
|
780
|
+
* @public
|
|
694
781
|
* <p>List of the matching stages (summary information only).</p>
|
|
695
782
|
*/
|
|
696
783
|
stages: StageSummary[] | undefined;
|
|
697
784
|
/**
|
|
785
|
+
* @public
|
|
698
786
|
* <p>If there are more rooms than <code>maxResults</code>, use <code>nextToken</code> in the
|
|
699
787
|
* request to get the next set.</p>
|
|
700
788
|
*/
|
|
@@ -705,15 +793,18 @@ export interface ListStagesResponse {
|
|
|
705
793
|
*/
|
|
706
794
|
export interface ListStageSessionsRequest {
|
|
707
795
|
/**
|
|
796
|
+
* @public
|
|
708
797
|
* <p>Stage ARN.</p>
|
|
709
798
|
*/
|
|
710
799
|
stageArn: string | undefined;
|
|
711
800
|
/**
|
|
801
|
+
* @public
|
|
712
802
|
* <p>The first stage to retrieve. This is used for pagination; see the <code>nextToken</code>
|
|
713
803
|
* response field.</p>
|
|
714
804
|
*/
|
|
715
805
|
nextToken?: string;
|
|
716
806
|
/**
|
|
807
|
+
* @public
|
|
717
808
|
* <p>Maximum number of results to return. Default: 50.</p>
|
|
718
809
|
*/
|
|
719
810
|
maxResults?: number;
|
|
@@ -724,14 +815,17 @@ export interface ListStageSessionsRequest {
|
|
|
724
815
|
*/
|
|
725
816
|
export interface StageSessionSummary {
|
|
726
817
|
/**
|
|
818
|
+
* @public
|
|
727
819
|
* <p>ID of the session within the stage.</p>
|
|
728
820
|
*/
|
|
729
821
|
sessionId?: string;
|
|
730
822
|
/**
|
|
823
|
+
* @public
|
|
731
824
|
* <p> ISO 8601 timestamp (returned as a string) when this stage session began.</p>
|
|
732
825
|
*/
|
|
733
826
|
startTime?: Date;
|
|
734
827
|
/**
|
|
828
|
+
* @public
|
|
735
829
|
* <p>ISO 8601 timestamp (returned as a string) when the stage session ended. This is null if
|
|
736
830
|
* the stage is active.</p>
|
|
737
831
|
*/
|
|
@@ -742,10 +836,12 @@ export interface StageSessionSummary {
|
|
|
742
836
|
*/
|
|
743
837
|
export interface ListStageSessionsResponse {
|
|
744
838
|
/**
|
|
839
|
+
* @public
|
|
745
840
|
* <p>List of matching stage sessions.</p>
|
|
746
841
|
*/
|
|
747
842
|
stageSessions: StageSessionSummary[] | undefined;
|
|
748
843
|
/**
|
|
844
|
+
* @public
|
|
749
845
|
* <p>If there are more rooms than <code>maxResults</code>, use <code>nextToken</code> in the
|
|
750
846
|
* request to get the next set.</p>
|
|
751
847
|
*/
|
|
@@ -759,6 +855,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
759
855
|
readonly name: "InternalServerException";
|
|
760
856
|
readonly $fault: "server";
|
|
761
857
|
/**
|
|
858
|
+
* @public
|
|
762
859
|
* <p>Unexpected error during processing of request.</p>
|
|
763
860
|
*/
|
|
764
861
|
exceptionMessage?: string;
|
|
@@ -772,6 +869,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
772
869
|
*/
|
|
773
870
|
export interface ListTagsForResourceRequest {
|
|
774
871
|
/**
|
|
872
|
+
* @public
|
|
775
873
|
* <p>The ARN of the resource to be retrieved. The ARN must be URL-encoded.</p>
|
|
776
874
|
*/
|
|
777
875
|
resourceArn: string | undefined;
|
|
@@ -781,6 +879,7 @@ export interface ListTagsForResourceRequest {
|
|
|
781
879
|
*/
|
|
782
880
|
export interface ListTagsForResourceResponse {
|
|
783
881
|
/**
|
|
882
|
+
* @public
|
|
784
883
|
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
785
884
|
* (key:value)</code>.</p>
|
|
786
885
|
*/
|
|
@@ -791,10 +890,12 @@ export interface ListTagsForResourceResponse {
|
|
|
791
890
|
*/
|
|
792
891
|
export interface TagResourceRequest {
|
|
793
892
|
/**
|
|
893
|
+
* @public
|
|
794
894
|
* <p>The ARN of the resource to be tagged. The ARN must be URL-encoded.</p>
|
|
795
895
|
*/
|
|
796
896
|
resourceArn: string | undefined;
|
|
797
897
|
/**
|
|
898
|
+
* @public
|
|
798
899
|
* <p>Array of tags to be added or updated. Array of maps, each of the form
|
|
799
900
|
* <code>string:string (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
|
|
800
901
|
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
|
|
@@ -813,10 +914,12 @@ export interface TagResourceResponse {
|
|
|
813
914
|
*/
|
|
814
915
|
export interface UntagResourceRequest {
|
|
815
916
|
/**
|
|
917
|
+
* @public
|
|
816
918
|
* <p>The ARN of the resource to be untagged. The ARN must be URL-encoded.</p>
|
|
817
919
|
*/
|
|
818
920
|
resourceArn: string | undefined;
|
|
819
921
|
/**
|
|
922
|
+
* @public
|
|
820
923
|
* <p>Array of tags to be removed. Array of maps, each of the form <code>string:string
|
|
821
924
|
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging AWS
|
|
822
925
|
* Resources</a> for details, including restrictions that apply to tags and "Tag naming
|
|
@@ -835,10 +938,12 @@ export interface UntagResourceResponse {
|
|
|
835
938
|
*/
|
|
836
939
|
export interface UpdateStageRequest {
|
|
837
940
|
/**
|
|
941
|
+
* @public
|
|
838
942
|
* <p>ARN of the stage to be updated.</p>
|
|
839
943
|
*/
|
|
840
944
|
arn: string | undefined;
|
|
841
945
|
/**
|
|
946
|
+
* @public
|
|
842
947
|
* <p>Name of the stage to be updated.</p>
|
|
843
948
|
*/
|
|
844
949
|
name?: string;
|
|
@@ -848,6 +953,7 @@ export interface UpdateStageRequest {
|
|
|
848
953
|
*/
|
|
849
954
|
export interface UpdateStageResponse {
|
|
850
955
|
/**
|
|
956
|
+
* @public
|
|
851
957
|
* <p>The updated stage.</p>
|
|
852
958
|
*/
|
|
853
959
|
stage?: Stage;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivs-realtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivs Realtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.385.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",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.385.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.385.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.379.1",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.378.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.378.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.379.1",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.382.0",
|
|
31
31
|
"@aws-sdk/types": "3.378.0",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.382.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.378.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-node": "3.378.0",
|
|
35
35
|
"@smithy/config-resolver": "^2.0.1",
|