@aws-sdk/client-ivs 3.170.0 → 3.171.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 +8 -0
- package/dist-types/ts3.4/Ivs.d.ts +0 -28
- package/dist-types/ts3.4/IvsClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/BatchGetChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/BatchGetStreamKeyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateRecordingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateStreamKeyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeletePlaybackKeyPairCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteRecordingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteStreamKeyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPlaybackKeyPairCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetRecordingConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetStreamCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetStreamKeyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetStreamSessionCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ImportPlaybackKeyPairCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPlaybackKeyPairsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListRecordingConfigurationsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListStreamKeysCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListStreamSessionsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutMetadataCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StopStreamCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/IvsServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -234
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { IvsServiceException as __BaseException } from "./IvsServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
|
-
|
|
8
6
|
exceptionMessage?: string;
|
|
9
|
-
|
|
10
7
|
constructor(
|
|
11
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
12
9
|
);
|
|
@@ -22,133 +19,92 @@ export declare enum ChannelType {
|
|
|
22
19
|
BasicChannelType = "BASIC",
|
|
23
20
|
StandardChannelType = "STANDARD",
|
|
24
21
|
}
|
|
25
|
-
|
|
26
22
|
export interface Channel {
|
|
27
23
|
arn?: string;
|
|
28
|
-
|
|
29
24
|
name?: string;
|
|
30
|
-
|
|
31
25
|
latencyMode?: ChannelLatencyMode | string;
|
|
32
|
-
|
|
33
26
|
type?: ChannelType | string;
|
|
34
|
-
|
|
35
27
|
recordingConfigurationArn?: string;
|
|
36
|
-
|
|
37
28
|
ingestEndpoint?: string;
|
|
38
|
-
|
|
39
29
|
playbackUrl?: string;
|
|
40
|
-
|
|
41
30
|
authorized?: boolean;
|
|
42
|
-
|
|
43
31
|
tags?: Record<string, string>;
|
|
44
32
|
}
|
|
45
|
-
|
|
46
33
|
export interface BatchError {
|
|
47
34
|
arn?: string;
|
|
48
|
-
|
|
49
35
|
code?: string;
|
|
50
|
-
|
|
51
36
|
message?: string;
|
|
52
37
|
}
|
|
53
38
|
export interface BatchGetChannelResponse {
|
|
54
39
|
channels?: Channel[];
|
|
55
|
-
|
|
56
40
|
errors?: BatchError[];
|
|
57
41
|
}
|
|
58
42
|
export interface BatchGetStreamKeyRequest {
|
|
59
43
|
arns: string[] | undefined;
|
|
60
44
|
}
|
|
61
|
-
|
|
62
45
|
export interface StreamKey {
|
|
63
46
|
arn?: string;
|
|
64
|
-
|
|
65
47
|
value?: string;
|
|
66
|
-
|
|
67
48
|
channelArn?: string;
|
|
68
|
-
|
|
69
49
|
tags?: Record<string, string>;
|
|
70
50
|
}
|
|
71
51
|
export interface BatchGetStreamKeyResponse {
|
|
72
52
|
streamKeys?: StreamKey[];
|
|
73
|
-
|
|
74
53
|
errors?: BatchError[];
|
|
75
54
|
}
|
|
76
55
|
export interface CreateChannelRequest {
|
|
77
56
|
name?: string;
|
|
78
|
-
|
|
79
57
|
latencyMode?: ChannelLatencyMode | string;
|
|
80
|
-
|
|
81
58
|
type?: ChannelType | string;
|
|
82
|
-
|
|
83
59
|
authorized?: boolean;
|
|
84
|
-
|
|
85
60
|
recordingConfigurationArn?: string;
|
|
86
|
-
|
|
87
61
|
tags?: Record<string, string>;
|
|
88
62
|
}
|
|
89
63
|
export interface CreateChannelResponse {
|
|
90
64
|
channel?: Channel;
|
|
91
|
-
|
|
92
65
|
streamKey?: StreamKey;
|
|
93
66
|
}
|
|
94
|
-
|
|
95
67
|
export declare class PendingVerification extends __BaseException {
|
|
96
68
|
readonly name: "PendingVerification";
|
|
97
69
|
readonly $fault: "client";
|
|
98
|
-
|
|
99
70
|
exceptionMessage?: string;
|
|
100
|
-
|
|
101
71
|
constructor(
|
|
102
72
|
opts: __ExceptionOptionType<PendingVerification, __BaseException>
|
|
103
73
|
);
|
|
104
74
|
}
|
|
105
|
-
|
|
106
75
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
107
76
|
readonly name: "ResourceNotFoundException";
|
|
108
77
|
readonly $fault: "client";
|
|
109
|
-
|
|
110
78
|
exceptionMessage?: string;
|
|
111
|
-
|
|
112
79
|
constructor(
|
|
113
80
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
114
81
|
);
|
|
115
82
|
}
|
|
116
|
-
|
|
117
83
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
118
84
|
readonly name: "ServiceQuotaExceededException";
|
|
119
85
|
readonly $fault: "client";
|
|
120
|
-
|
|
121
86
|
exceptionMessage?: string;
|
|
122
|
-
|
|
123
87
|
constructor(
|
|
124
88
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
125
89
|
);
|
|
126
90
|
}
|
|
127
|
-
|
|
128
91
|
export declare class ValidationException extends __BaseException {
|
|
129
92
|
readonly name: "ValidationException";
|
|
130
93
|
readonly $fault: "client";
|
|
131
|
-
|
|
132
94
|
exceptionMessage?: string;
|
|
133
|
-
|
|
134
95
|
constructor(
|
|
135
96
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
136
97
|
);
|
|
137
98
|
}
|
|
138
|
-
|
|
139
99
|
export declare class ConflictException extends __BaseException {
|
|
140
100
|
readonly name: "ConflictException";
|
|
141
101
|
readonly $fault: "client";
|
|
142
|
-
|
|
143
102
|
exceptionMessage?: string;
|
|
144
|
-
|
|
145
103
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
146
104
|
}
|
|
147
|
-
|
|
148
105
|
export interface S3DestinationConfiguration {
|
|
149
106
|
bucketName: string | undefined;
|
|
150
107
|
}
|
|
151
|
-
|
|
152
108
|
export interface DestinationConfiguration {
|
|
153
109
|
s3?: S3DestinationConfiguration;
|
|
154
110
|
}
|
|
@@ -156,21 +112,15 @@ export declare enum RecordingMode {
|
|
|
156
112
|
Disabled = "DISABLED",
|
|
157
113
|
Interval = "INTERVAL",
|
|
158
114
|
}
|
|
159
|
-
|
|
160
115
|
export interface ThumbnailConfiguration {
|
|
161
116
|
recordingMode?: RecordingMode | string;
|
|
162
|
-
|
|
163
117
|
targetIntervalSeconds?: number;
|
|
164
118
|
}
|
|
165
119
|
export interface CreateRecordingConfigurationRequest {
|
|
166
120
|
name?: string;
|
|
167
|
-
|
|
168
121
|
destinationConfiguration: DestinationConfiguration | undefined;
|
|
169
|
-
|
|
170
122
|
tags?: Record<string, string>;
|
|
171
|
-
|
|
172
123
|
thumbnailConfiguration?: ThumbnailConfiguration;
|
|
173
|
-
|
|
174
124
|
recordingReconnectWindowSeconds?: number;
|
|
175
125
|
}
|
|
176
126
|
export declare enum RecordingConfigurationState {
|
|
@@ -178,39 +128,28 @@ export declare enum RecordingConfigurationState {
|
|
|
178
128
|
CreateFailed = "CREATE_FAILED",
|
|
179
129
|
Creating = "CREATING",
|
|
180
130
|
}
|
|
181
|
-
|
|
182
131
|
export interface RecordingConfiguration {
|
|
183
132
|
arn: string | undefined;
|
|
184
|
-
|
|
185
133
|
name?: string;
|
|
186
|
-
|
|
187
134
|
destinationConfiguration: DestinationConfiguration | undefined;
|
|
188
|
-
|
|
189
135
|
state: RecordingConfigurationState | string | undefined;
|
|
190
|
-
|
|
191
136
|
tags?: Record<string, string>;
|
|
192
|
-
|
|
193
137
|
thumbnailConfiguration?: ThumbnailConfiguration;
|
|
194
|
-
|
|
195
138
|
recordingReconnectWindowSeconds?: number;
|
|
196
139
|
}
|
|
197
140
|
export interface CreateRecordingConfigurationResponse {
|
|
198
141
|
recordingConfiguration?: RecordingConfiguration;
|
|
199
142
|
}
|
|
200
|
-
|
|
201
143
|
export declare class InternalServerException extends __BaseException {
|
|
202
144
|
readonly name: "InternalServerException";
|
|
203
145
|
readonly $fault: "server";
|
|
204
|
-
|
|
205
146
|
exceptionMessage?: string;
|
|
206
|
-
|
|
207
147
|
constructor(
|
|
208
148
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
209
149
|
);
|
|
210
150
|
}
|
|
211
151
|
export interface CreateStreamKeyRequest {
|
|
212
152
|
channelArn: string | undefined;
|
|
213
|
-
|
|
214
153
|
tags?: Record<string, string>;
|
|
215
154
|
}
|
|
216
155
|
export interface CreateStreamKeyResponse {
|
|
@@ -238,14 +177,10 @@ export interface GetChannelResponse {
|
|
|
238
177
|
export interface GetPlaybackKeyPairRequest {
|
|
239
178
|
arn: string | undefined;
|
|
240
179
|
}
|
|
241
|
-
|
|
242
180
|
export interface PlaybackKeyPair {
|
|
243
181
|
arn?: string;
|
|
244
|
-
|
|
245
182
|
name?: string;
|
|
246
|
-
|
|
247
183
|
fingerprint?: string;
|
|
248
|
-
|
|
249
184
|
tags?: Record<string, string>;
|
|
250
185
|
}
|
|
251
186
|
export interface GetPlaybackKeyPairResponse {
|
|
@@ -257,13 +192,10 @@ export interface GetRecordingConfigurationRequest {
|
|
|
257
192
|
export interface GetRecordingConfigurationResponse {
|
|
258
193
|
recordingConfiguration?: RecordingConfiguration;
|
|
259
194
|
}
|
|
260
|
-
|
|
261
195
|
export declare class ChannelNotBroadcasting extends __BaseException {
|
|
262
196
|
readonly name: "ChannelNotBroadcasting";
|
|
263
197
|
readonly $fault: "client";
|
|
264
|
-
|
|
265
198
|
exceptionMessage?: string;
|
|
266
|
-
|
|
267
199
|
constructor(
|
|
268
200
|
opts: __ExceptionOptionType<ChannelNotBroadcasting, __BaseException>
|
|
269
201
|
);
|
|
@@ -280,20 +212,13 @@ export declare enum StreamState {
|
|
|
280
212
|
StreamLive = "LIVE",
|
|
281
213
|
StreamOffline = "OFFLINE",
|
|
282
214
|
}
|
|
283
|
-
|
|
284
215
|
export interface _Stream {
|
|
285
216
|
channelArn?: string;
|
|
286
|
-
|
|
287
217
|
streamId?: string;
|
|
288
|
-
|
|
289
218
|
playbackUrl?: string;
|
|
290
|
-
|
|
291
219
|
startTime?: Date;
|
|
292
|
-
|
|
293
220
|
state?: StreamState | string;
|
|
294
|
-
|
|
295
221
|
health?: StreamHealth | string;
|
|
296
|
-
|
|
297
222
|
viewerCount?: number;
|
|
298
223
|
}
|
|
299
224
|
export interface GetStreamResponse {
|
|
@@ -307,65 +232,40 @@ export interface GetStreamKeyResponse {
|
|
|
307
232
|
}
|
|
308
233
|
export interface GetStreamSessionRequest {
|
|
309
234
|
channelArn: string | undefined;
|
|
310
|
-
|
|
311
235
|
streamId?: string;
|
|
312
236
|
}
|
|
313
|
-
|
|
314
237
|
export interface AudioConfiguration {
|
|
315
238
|
codec?: string;
|
|
316
|
-
|
|
317
239
|
targetBitrate?: number;
|
|
318
|
-
|
|
319
240
|
sampleRate?: number;
|
|
320
|
-
|
|
321
241
|
channels?: number;
|
|
322
242
|
}
|
|
323
|
-
|
|
324
243
|
export interface VideoConfiguration {
|
|
325
244
|
avcProfile?: string;
|
|
326
|
-
|
|
327
245
|
avcLevel?: string;
|
|
328
|
-
|
|
329
246
|
codec?: string;
|
|
330
|
-
|
|
331
247
|
encoder?: string;
|
|
332
|
-
|
|
333
248
|
targetBitrate?: number;
|
|
334
|
-
|
|
335
249
|
targetFramerate?: number;
|
|
336
|
-
|
|
337
250
|
videoHeight?: number;
|
|
338
|
-
|
|
339
251
|
videoWidth?: number;
|
|
340
252
|
}
|
|
341
|
-
|
|
342
253
|
export interface IngestConfiguration {
|
|
343
254
|
video?: VideoConfiguration;
|
|
344
|
-
|
|
345
255
|
audio?: AudioConfiguration;
|
|
346
256
|
}
|
|
347
|
-
|
|
348
257
|
export interface StreamEvent {
|
|
349
258
|
name?: string;
|
|
350
|
-
|
|
351
259
|
type?: string;
|
|
352
|
-
|
|
353
260
|
eventTime?: Date;
|
|
354
261
|
}
|
|
355
|
-
|
|
356
262
|
export interface StreamSession {
|
|
357
263
|
streamId?: string;
|
|
358
|
-
|
|
359
264
|
startTime?: Date;
|
|
360
|
-
|
|
361
265
|
endTime?: Date;
|
|
362
|
-
|
|
363
266
|
channel?: Channel;
|
|
364
|
-
|
|
365
267
|
ingestConfiguration?: IngestConfiguration;
|
|
366
|
-
|
|
367
268
|
recordingConfiguration?: RecordingConfiguration;
|
|
368
|
-
|
|
369
269
|
truncatedEvents?: StreamEvent[];
|
|
370
270
|
}
|
|
371
271
|
export interface GetStreamSessionResponse {
|
|
@@ -373,9 +273,7 @@ export interface GetStreamSessionResponse {
|
|
|
373
273
|
}
|
|
374
274
|
export interface ImportPlaybackKeyPairRequest {
|
|
375
275
|
publicKeyMaterial: string | undefined;
|
|
376
|
-
|
|
377
276
|
name?: string;
|
|
378
|
-
|
|
379
277
|
tags?: Record<string, string>;
|
|
380
278
|
}
|
|
381
279
|
export interface ImportPlaybackKeyPairResponse {
|
|
@@ -383,142 +281,97 @@ export interface ImportPlaybackKeyPairResponse {
|
|
|
383
281
|
}
|
|
384
282
|
export interface ListChannelsRequest {
|
|
385
283
|
filterByName?: string;
|
|
386
|
-
|
|
387
284
|
filterByRecordingConfigurationArn?: string;
|
|
388
|
-
|
|
389
285
|
nextToken?: string;
|
|
390
|
-
|
|
391
286
|
maxResults?: number;
|
|
392
287
|
}
|
|
393
|
-
|
|
394
288
|
export interface ChannelSummary {
|
|
395
289
|
arn?: string;
|
|
396
|
-
|
|
397
290
|
name?: string;
|
|
398
|
-
|
|
399
291
|
latencyMode?: ChannelLatencyMode | string;
|
|
400
|
-
|
|
401
292
|
authorized?: boolean;
|
|
402
|
-
|
|
403
293
|
recordingConfigurationArn?: string;
|
|
404
|
-
|
|
405
294
|
tags?: Record<string, string>;
|
|
406
295
|
}
|
|
407
296
|
export interface ListChannelsResponse {
|
|
408
297
|
channels: ChannelSummary[] | undefined;
|
|
409
|
-
|
|
410
298
|
nextToken?: string;
|
|
411
299
|
}
|
|
412
300
|
export interface ListPlaybackKeyPairsRequest {
|
|
413
301
|
nextToken?: string;
|
|
414
|
-
|
|
415
302
|
maxResults?: number;
|
|
416
303
|
}
|
|
417
|
-
|
|
418
304
|
export interface PlaybackKeyPairSummary {
|
|
419
305
|
arn?: string;
|
|
420
|
-
|
|
421
306
|
name?: string;
|
|
422
|
-
|
|
423
307
|
tags?: Record<string, string>;
|
|
424
308
|
}
|
|
425
309
|
export interface ListPlaybackKeyPairsResponse {
|
|
426
310
|
keyPairs: PlaybackKeyPairSummary[] | undefined;
|
|
427
|
-
|
|
428
311
|
nextToken?: string;
|
|
429
312
|
}
|
|
430
313
|
export interface ListRecordingConfigurationsRequest {
|
|
431
314
|
nextToken?: string;
|
|
432
|
-
|
|
433
315
|
maxResults?: number;
|
|
434
316
|
}
|
|
435
|
-
|
|
436
317
|
export interface RecordingConfigurationSummary {
|
|
437
318
|
arn: string | undefined;
|
|
438
|
-
|
|
439
319
|
name?: string;
|
|
440
|
-
|
|
441
320
|
destinationConfiguration: DestinationConfiguration | undefined;
|
|
442
|
-
|
|
443
321
|
state: RecordingConfigurationState | string | undefined;
|
|
444
|
-
|
|
445
322
|
tags?: Record<string, string>;
|
|
446
323
|
}
|
|
447
324
|
export interface ListRecordingConfigurationsResponse {
|
|
448
325
|
recordingConfigurations: RecordingConfigurationSummary[] | undefined;
|
|
449
|
-
|
|
450
326
|
nextToken?: string;
|
|
451
327
|
}
|
|
452
328
|
export interface ListStreamKeysRequest {
|
|
453
329
|
channelArn: string | undefined;
|
|
454
|
-
|
|
455
330
|
nextToken?: string;
|
|
456
|
-
|
|
457
331
|
maxResults?: number;
|
|
458
332
|
}
|
|
459
|
-
|
|
460
333
|
export interface StreamKeySummary {
|
|
461
334
|
arn?: string;
|
|
462
|
-
|
|
463
335
|
channelArn?: string;
|
|
464
|
-
|
|
465
336
|
tags?: Record<string, string>;
|
|
466
337
|
}
|
|
467
338
|
export interface ListStreamKeysResponse {
|
|
468
339
|
streamKeys: StreamKeySummary[] | undefined;
|
|
469
|
-
|
|
470
340
|
nextToken?: string;
|
|
471
341
|
}
|
|
472
|
-
|
|
473
342
|
export interface StreamFilters {
|
|
474
343
|
health?: StreamHealth | string;
|
|
475
344
|
}
|
|
476
345
|
export interface ListStreamsRequest {
|
|
477
346
|
filterBy?: StreamFilters;
|
|
478
|
-
|
|
479
347
|
nextToken?: string;
|
|
480
|
-
|
|
481
348
|
maxResults?: number;
|
|
482
349
|
}
|
|
483
|
-
|
|
484
350
|
export interface StreamSummary {
|
|
485
351
|
channelArn?: string;
|
|
486
|
-
|
|
487
352
|
streamId?: string;
|
|
488
|
-
|
|
489
353
|
state?: StreamState | string;
|
|
490
|
-
|
|
491
354
|
health?: StreamHealth | string;
|
|
492
|
-
|
|
493
355
|
viewerCount?: number;
|
|
494
|
-
|
|
495
356
|
startTime?: Date;
|
|
496
357
|
}
|
|
497
358
|
export interface ListStreamsResponse {
|
|
498
359
|
streams: StreamSummary[] | undefined;
|
|
499
|
-
|
|
500
360
|
nextToken?: string;
|
|
501
361
|
}
|
|
502
362
|
export interface ListStreamSessionsRequest {
|
|
503
363
|
channelArn: string | undefined;
|
|
504
|
-
|
|
505
364
|
nextToken?: string;
|
|
506
|
-
|
|
507
365
|
maxResults?: number;
|
|
508
366
|
}
|
|
509
|
-
|
|
510
367
|
export interface StreamSessionSummary {
|
|
511
368
|
streamId?: string;
|
|
512
|
-
|
|
513
369
|
startTime?: Date;
|
|
514
|
-
|
|
515
370
|
endTime?: Date;
|
|
516
|
-
|
|
517
371
|
hasErrorEvent?: boolean;
|
|
518
372
|
}
|
|
519
373
|
export interface ListStreamSessionsResponse {
|
|
520
374
|
streamSessions: StreamSessionSummary[] | undefined;
|
|
521
|
-
|
|
522
375
|
nextToken?: string;
|
|
523
376
|
}
|
|
524
377
|
export interface ListTagsForResourceRequest {
|
|
@@ -529,16 +382,12 @@ export interface ListTagsForResourceResponse {
|
|
|
529
382
|
}
|
|
530
383
|
export interface PutMetadataRequest {
|
|
531
384
|
channelArn: string | undefined;
|
|
532
|
-
|
|
533
385
|
metadata: string | undefined;
|
|
534
386
|
}
|
|
535
|
-
|
|
536
387
|
export declare class ThrottlingException extends __BaseException {
|
|
537
388
|
readonly name: "ThrottlingException";
|
|
538
389
|
readonly $fault: "client";
|
|
539
|
-
|
|
540
390
|
exceptionMessage?: string;
|
|
541
|
-
|
|
542
391
|
constructor(
|
|
543
392
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
544
393
|
);
|
|
@@ -547,322 +396,239 @@ export interface StopStreamRequest {
|
|
|
547
396
|
channelArn: string | undefined;
|
|
548
397
|
}
|
|
549
398
|
export interface StopStreamResponse {}
|
|
550
|
-
|
|
551
399
|
export declare class StreamUnavailable extends __BaseException {
|
|
552
400
|
readonly name: "StreamUnavailable";
|
|
553
401
|
readonly $fault: "server";
|
|
554
|
-
|
|
555
402
|
exceptionMessage?: string;
|
|
556
|
-
|
|
557
403
|
constructor(opts: __ExceptionOptionType<StreamUnavailable, __BaseException>);
|
|
558
404
|
}
|
|
559
405
|
export interface TagResourceRequest {
|
|
560
406
|
resourceArn: string | undefined;
|
|
561
|
-
|
|
562
407
|
tags: Record<string, string> | undefined;
|
|
563
408
|
}
|
|
564
409
|
export interface TagResourceResponse {}
|
|
565
410
|
export interface UntagResourceRequest {
|
|
566
411
|
resourceArn: string | undefined;
|
|
567
|
-
|
|
568
412
|
tagKeys: string[] | undefined;
|
|
569
413
|
}
|
|
570
414
|
export interface UntagResourceResponse {}
|
|
571
415
|
export interface UpdateChannelRequest {
|
|
572
416
|
arn: string | undefined;
|
|
573
|
-
|
|
574
417
|
name?: string;
|
|
575
|
-
|
|
576
418
|
latencyMode?: ChannelLatencyMode | string;
|
|
577
|
-
|
|
578
419
|
type?: ChannelType | string;
|
|
579
|
-
|
|
580
420
|
authorized?: boolean;
|
|
581
|
-
|
|
582
421
|
recordingConfigurationArn?: string;
|
|
583
422
|
}
|
|
584
423
|
export interface UpdateChannelResponse {
|
|
585
424
|
channel?: Channel;
|
|
586
425
|
}
|
|
587
|
-
|
|
588
426
|
export declare const BatchGetChannelRequestFilterSensitiveLog: (
|
|
589
427
|
obj: BatchGetChannelRequest
|
|
590
428
|
) => any;
|
|
591
|
-
|
|
592
429
|
export declare const ChannelFilterSensitiveLog: (obj: Channel) => any;
|
|
593
|
-
|
|
594
430
|
export declare const BatchErrorFilterSensitiveLog: (obj: BatchError) => any;
|
|
595
|
-
|
|
596
431
|
export declare const BatchGetChannelResponseFilterSensitiveLog: (
|
|
597
432
|
obj: BatchGetChannelResponse
|
|
598
433
|
) => any;
|
|
599
|
-
|
|
600
434
|
export declare const BatchGetStreamKeyRequestFilterSensitiveLog: (
|
|
601
435
|
obj: BatchGetStreamKeyRequest
|
|
602
436
|
) => any;
|
|
603
|
-
|
|
604
437
|
export declare const StreamKeyFilterSensitiveLog: (obj: StreamKey) => any;
|
|
605
|
-
|
|
606
438
|
export declare const BatchGetStreamKeyResponseFilterSensitiveLog: (
|
|
607
439
|
obj: BatchGetStreamKeyResponse
|
|
608
440
|
) => any;
|
|
609
|
-
|
|
610
441
|
export declare const CreateChannelRequestFilterSensitiveLog: (
|
|
611
442
|
obj: CreateChannelRequest
|
|
612
443
|
) => any;
|
|
613
|
-
|
|
614
444
|
export declare const CreateChannelResponseFilterSensitiveLog: (
|
|
615
445
|
obj: CreateChannelResponse
|
|
616
446
|
) => any;
|
|
617
|
-
|
|
618
447
|
export declare const S3DestinationConfigurationFilterSensitiveLog: (
|
|
619
448
|
obj: S3DestinationConfiguration
|
|
620
449
|
) => any;
|
|
621
|
-
|
|
622
450
|
export declare const DestinationConfigurationFilterSensitiveLog: (
|
|
623
451
|
obj: DestinationConfiguration
|
|
624
452
|
) => any;
|
|
625
|
-
|
|
626
453
|
export declare const ThumbnailConfigurationFilterSensitiveLog: (
|
|
627
454
|
obj: ThumbnailConfiguration
|
|
628
455
|
) => any;
|
|
629
|
-
|
|
630
456
|
export declare const CreateRecordingConfigurationRequestFilterSensitiveLog: (
|
|
631
457
|
obj: CreateRecordingConfigurationRequest
|
|
632
458
|
) => any;
|
|
633
|
-
|
|
634
459
|
export declare const RecordingConfigurationFilterSensitiveLog: (
|
|
635
460
|
obj: RecordingConfiguration
|
|
636
461
|
) => any;
|
|
637
|
-
|
|
638
462
|
export declare const CreateRecordingConfigurationResponseFilterSensitiveLog: (
|
|
639
463
|
obj: CreateRecordingConfigurationResponse
|
|
640
464
|
) => any;
|
|
641
|
-
|
|
642
465
|
export declare const CreateStreamKeyRequestFilterSensitiveLog: (
|
|
643
466
|
obj: CreateStreamKeyRequest
|
|
644
467
|
) => any;
|
|
645
|
-
|
|
646
468
|
export declare const CreateStreamKeyResponseFilterSensitiveLog: (
|
|
647
469
|
obj: CreateStreamKeyResponse
|
|
648
470
|
) => any;
|
|
649
|
-
|
|
650
471
|
export declare const DeleteChannelRequestFilterSensitiveLog: (
|
|
651
472
|
obj: DeleteChannelRequest
|
|
652
473
|
) => any;
|
|
653
|
-
|
|
654
474
|
export declare const DeletePlaybackKeyPairRequestFilterSensitiveLog: (
|
|
655
475
|
obj: DeletePlaybackKeyPairRequest
|
|
656
476
|
) => any;
|
|
657
|
-
|
|
658
477
|
export declare const DeletePlaybackKeyPairResponseFilterSensitiveLog: (
|
|
659
478
|
obj: DeletePlaybackKeyPairResponse
|
|
660
479
|
) => any;
|
|
661
|
-
|
|
662
480
|
export declare const DeleteRecordingConfigurationRequestFilterSensitiveLog: (
|
|
663
481
|
obj: DeleteRecordingConfigurationRequest
|
|
664
482
|
) => any;
|
|
665
|
-
|
|
666
483
|
export declare const DeleteStreamKeyRequestFilterSensitiveLog: (
|
|
667
484
|
obj: DeleteStreamKeyRequest
|
|
668
485
|
) => any;
|
|
669
|
-
|
|
670
486
|
export declare const GetChannelRequestFilterSensitiveLog: (
|
|
671
487
|
obj: GetChannelRequest
|
|
672
488
|
) => any;
|
|
673
|
-
|
|
674
489
|
export declare const GetChannelResponseFilterSensitiveLog: (
|
|
675
490
|
obj: GetChannelResponse
|
|
676
491
|
) => any;
|
|
677
|
-
|
|
678
492
|
export declare const GetPlaybackKeyPairRequestFilterSensitiveLog: (
|
|
679
493
|
obj: GetPlaybackKeyPairRequest
|
|
680
494
|
) => any;
|
|
681
|
-
|
|
682
495
|
export declare const PlaybackKeyPairFilterSensitiveLog: (
|
|
683
496
|
obj: PlaybackKeyPair
|
|
684
497
|
) => any;
|
|
685
|
-
|
|
686
498
|
export declare const GetPlaybackKeyPairResponseFilterSensitiveLog: (
|
|
687
499
|
obj: GetPlaybackKeyPairResponse
|
|
688
500
|
) => any;
|
|
689
|
-
|
|
690
501
|
export declare const GetRecordingConfigurationRequestFilterSensitiveLog: (
|
|
691
502
|
obj: GetRecordingConfigurationRequest
|
|
692
503
|
) => any;
|
|
693
|
-
|
|
694
504
|
export declare const GetRecordingConfigurationResponseFilterSensitiveLog: (
|
|
695
505
|
obj: GetRecordingConfigurationResponse
|
|
696
506
|
) => any;
|
|
697
|
-
|
|
698
507
|
export declare const GetStreamRequestFilterSensitiveLog: (
|
|
699
508
|
obj: GetStreamRequest
|
|
700
509
|
) => any;
|
|
701
|
-
|
|
702
510
|
export declare const _StreamFilterSensitiveLog: (obj: _Stream) => any;
|
|
703
|
-
|
|
704
511
|
export declare const GetStreamResponseFilterSensitiveLog: (
|
|
705
512
|
obj: GetStreamResponse
|
|
706
513
|
) => any;
|
|
707
|
-
|
|
708
514
|
export declare const GetStreamKeyRequestFilterSensitiveLog: (
|
|
709
515
|
obj: GetStreamKeyRequest
|
|
710
516
|
) => any;
|
|
711
|
-
|
|
712
517
|
export declare const GetStreamKeyResponseFilterSensitiveLog: (
|
|
713
518
|
obj: GetStreamKeyResponse
|
|
714
519
|
) => any;
|
|
715
|
-
|
|
716
520
|
export declare const GetStreamSessionRequestFilterSensitiveLog: (
|
|
717
521
|
obj: GetStreamSessionRequest
|
|
718
522
|
) => any;
|
|
719
|
-
|
|
720
523
|
export declare const AudioConfigurationFilterSensitiveLog: (
|
|
721
524
|
obj: AudioConfiguration
|
|
722
525
|
) => any;
|
|
723
|
-
|
|
724
526
|
export declare const VideoConfigurationFilterSensitiveLog: (
|
|
725
527
|
obj: VideoConfiguration
|
|
726
528
|
) => any;
|
|
727
|
-
|
|
728
529
|
export declare const IngestConfigurationFilterSensitiveLog: (
|
|
729
530
|
obj: IngestConfiguration
|
|
730
531
|
) => any;
|
|
731
|
-
|
|
732
532
|
export declare const StreamEventFilterSensitiveLog: (obj: StreamEvent) => any;
|
|
733
|
-
|
|
734
533
|
export declare const StreamSessionFilterSensitiveLog: (
|
|
735
534
|
obj: StreamSession
|
|
736
535
|
) => any;
|
|
737
|
-
|
|
738
536
|
export declare const GetStreamSessionResponseFilterSensitiveLog: (
|
|
739
537
|
obj: GetStreamSessionResponse
|
|
740
538
|
) => any;
|
|
741
|
-
|
|
742
539
|
export declare const ImportPlaybackKeyPairRequestFilterSensitiveLog: (
|
|
743
540
|
obj: ImportPlaybackKeyPairRequest
|
|
744
541
|
) => any;
|
|
745
|
-
|
|
746
542
|
export declare const ImportPlaybackKeyPairResponseFilterSensitiveLog: (
|
|
747
543
|
obj: ImportPlaybackKeyPairResponse
|
|
748
544
|
) => any;
|
|
749
|
-
|
|
750
545
|
export declare const ListChannelsRequestFilterSensitiveLog: (
|
|
751
546
|
obj: ListChannelsRequest
|
|
752
547
|
) => any;
|
|
753
|
-
|
|
754
548
|
export declare const ChannelSummaryFilterSensitiveLog: (
|
|
755
549
|
obj: ChannelSummary
|
|
756
550
|
) => any;
|
|
757
|
-
|
|
758
551
|
export declare const ListChannelsResponseFilterSensitiveLog: (
|
|
759
552
|
obj: ListChannelsResponse
|
|
760
553
|
) => any;
|
|
761
|
-
|
|
762
554
|
export declare const ListPlaybackKeyPairsRequestFilterSensitiveLog: (
|
|
763
555
|
obj: ListPlaybackKeyPairsRequest
|
|
764
556
|
) => any;
|
|
765
|
-
|
|
766
557
|
export declare const PlaybackKeyPairSummaryFilterSensitiveLog: (
|
|
767
558
|
obj: PlaybackKeyPairSummary
|
|
768
559
|
) => any;
|
|
769
|
-
|
|
770
560
|
export declare const ListPlaybackKeyPairsResponseFilterSensitiveLog: (
|
|
771
561
|
obj: ListPlaybackKeyPairsResponse
|
|
772
562
|
) => any;
|
|
773
|
-
|
|
774
563
|
export declare const ListRecordingConfigurationsRequestFilterSensitiveLog: (
|
|
775
564
|
obj: ListRecordingConfigurationsRequest
|
|
776
565
|
) => any;
|
|
777
|
-
|
|
778
566
|
export declare const RecordingConfigurationSummaryFilterSensitiveLog: (
|
|
779
567
|
obj: RecordingConfigurationSummary
|
|
780
568
|
) => any;
|
|
781
|
-
|
|
782
569
|
export declare const ListRecordingConfigurationsResponseFilterSensitiveLog: (
|
|
783
570
|
obj: ListRecordingConfigurationsResponse
|
|
784
571
|
) => any;
|
|
785
|
-
|
|
786
572
|
export declare const ListStreamKeysRequestFilterSensitiveLog: (
|
|
787
573
|
obj: ListStreamKeysRequest
|
|
788
574
|
) => any;
|
|
789
|
-
|
|
790
575
|
export declare const StreamKeySummaryFilterSensitiveLog: (
|
|
791
576
|
obj: StreamKeySummary
|
|
792
577
|
) => any;
|
|
793
|
-
|
|
794
578
|
export declare const ListStreamKeysResponseFilterSensitiveLog: (
|
|
795
579
|
obj: ListStreamKeysResponse
|
|
796
580
|
) => any;
|
|
797
|
-
|
|
798
581
|
export declare const StreamFiltersFilterSensitiveLog: (
|
|
799
582
|
obj: StreamFilters
|
|
800
583
|
) => any;
|
|
801
|
-
|
|
802
584
|
export declare const ListStreamsRequestFilterSensitiveLog: (
|
|
803
585
|
obj: ListStreamsRequest
|
|
804
586
|
) => any;
|
|
805
|
-
|
|
806
587
|
export declare const StreamSummaryFilterSensitiveLog: (
|
|
807
588
|
obj: StreamSummary
|
|
808
589
|
) => any;
|
|
809
|
-
|
|
810
590
|
export declare const ListStreamsResponseFilterSensitiveLog: (
|
|
811
591
|
obj: ListStreamsResponse
|
|
812
592
|
) => any;
|
|
813
|
-
|
|
814
593
|
export declare const ListStreamSessionsRequestFilterSensitiveLog: (
|
|
815
594
|
obj: ListStreamSessionsRequest
|
|
816
595
|
) => any;
|
|
817
|
-
|
|
818
596
|
export declare const StreamSessionSummaryFilterSensitiveLog: (
|
|
819
597
|
obj: StreamSessionSummary
|
|
820
598
|
) => any;
|
|
821
|
-
|
|
822
599
|
export declare const ListStreamSessionsResponseFilterSensitiveLog: (
|
|
823
600
|
obj: ListStreamSessionsResponse
|
|
824
601
|
) => any;
|
|
825
|
-
|
|
826
602
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
827
603
|
obj: ListTagsForResourceRequest
|
|
828
604
|
) => any;
|
|
829
|
-
|
|
830
605
|
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
831
606
|
obj: ListTagsForResourceResponse
|
|
832
607
|
) => any;
|
|
833
|
-
|
|
834
608
|
export declare const PutMetadataRequestFilterSensitiveLog: (
|
|
835
609
|
obj: PutMetadataRequest
|
|
836
610
|
) => any;
|
|
837
|
-
|
|
838
611
|
export declare const StopStreamRequestFilterSensitiveLog: (
|
|
839
612
|
obj: StopStreamRequest
|
|
840
613
|
) => any;
|
|
841
|
-
|
|
842
614
|
export declare const StopStreamResponseFilterSensitiveLog: (
|
|
843
615
|
obj: StopStreamResponse
|
|
844
616
|
) => any;
|
|
845
|
-
|
|
846
617
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
847
618
|
obj: TagResourceRequest
|
|
848
619
|
) => any;
|
|
849
|
-
|
|
850
620
|
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
851
621
|
obj: TagResourceResponse
|
|
852
622
|
) => any;
|
|
853
|
-
|
|
854
623
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
855
624
|
obj: UntagResourceRequest
|
|
856
625
|
) => any;
|
|
857
|
-
|
|
858
626
|
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
859
627
|
obj: UntagResourceResponse
|
|
860
628
|
) => any;
|
|
861
|
-
|
|
862
629
|
export declare const UpdateChannelRequestFilterSensitiveLog: (
|
|
863
630
|
obj: UpdateChannelRequest
|
|
864
631
|
) => any;
|
|
865
|
-
|
|
866
632
|
export declare const UpdateChannelResponseFilterSensitiveLog: (
|
|
867
633
|
obj: UpdateChannelResponse
|
|
868
634
|
) => any;
|