@aws-sdk/client-medialive 3.379.1 → 3.382.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-cjs/protocols/Aws_restJson1.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/commands/DescribeInputDeviceCommand.d.ts +1 -0
- package/dist-types/commands/ListInputDevicesCommand.d.ts +1 -0
- package/dist-types/commands/UpdateInputDeviceCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +568 -0
- package/dist-types/models/models_1.d.ts +782 -0
- package/dist-types/models/models_2.d.ts +145 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +1 -0
- package/dist-types/ts3.4/models/models_2.d.ts +2 -0
- package/package.json +5 -5
|
@@ -6,30 +6,37 @@ import { AccountConfiguration, Channel, EncoderSettings, InputDeviceConfigurable
|
|
|
6
6
|
*/
|
|
7
7
|
export interface PurchaseOfferingRequest {
|
|
8
8
|
/**
|
|
9
|
+
* @public
|
|
9
10
|
* Number of resources
|
|
10
11
|
*/
|
|
11
12
|
Count: number | undefined;
|
|
12
13
|
/**
|
|
14
|
+
* @public
|
|
13
15
|
* Name for the new reservation
|
|
14
16
|
*/
|
|
15
17
|
Name?: string;
|
|
16
18
|
/**
|
|
19
|
+
* @public
|
|
17
20
|
* Offering to purchase, e.g. '87654321'
|
|
18
21
|
*/
|
|
19
22
|
OfferingId: string | undefined;
|
|
20
23
|
/**
|
|
24
|
+
* @public
|
|
21
25
|
* Renewal settings for the reservation
|
|
22
26
|
*/
|
|
23
27
|
RenewalSettings?: RenewalSettings;
|
|
24
28
|
/**
|
|
29
|
+
* @public
|
|
25
30
|
* Unique request ID to be specified. This is needed to prevent retries from creating multiple resources.
|
|
26
31
|
*/
|
|
27
32
|
RequestId?: string;
|
|
28
33
|
/**
|
|
34
|
+
* @public
|
|
29
35
|
* Requested reservation start time (UTC) in ISO-8601 format. The specified time must be between the first day of the current month and one year from now. If no value is given, the default is now.
|
|
30
36
|
*/
|
|
31
37
|
Start?: string;
|
|
32
38
|
/**
|
|
39
|
+
* @public
|
|
33
40
|
* A collection of key-value pairs
|
|
34
41
|
*/
|
|
35
42
|
Tags?: Record<string, string>;
|
|
@@ -40,6 +47,7 @@ export interface PurchaseOfferingRequest {
|
|
|
40
47
|
*/
|
|
41
48
|
export interface PurchaseOfferingResponse {
|
|
42
49
|
/**
|
|
50
|
+
* @public
|
|
43
51
|
* Reserved resources available to use
|
|
44
52
|
*/
|
|
45
53
|
Reservation?: Reservation;
|
|
@@ -62,10 +70,12 @@ export type RebootInputDeviceForce = (typeof RebootInputDeviceForce)[keyof typeo
|
|
|
62
70
|
*/
|
|
63
71
|
export interface RebootInputDeviceRequest {
|
|
64
72
|
/**
|
|
73
|
+
* @public
|
|
65
74
|
* Force a reboot of an input device. If the device is streaming, it will stop streaming and begin rebooting within a few seconds of sending the command. If the device was streaming prior to the reboot, the device will resume streaming when the reboot completes.
|
|
66
75
|
*/
|
|
67
76
|
Force?: RebootInputDeviceForce | string;
|
|
68
77
|
/**
|
|
78
|
+
* @public
|
|
69
79
|
* The unique ID of the input device to reboot. For example, hd-123456789abcdef.
|
|
70
80
|
*/
|
|
71
81
|
InputDeviceId: string | undefined;
|
|
@@ -82,6 +92,7 @@ export interface RebootInputDeviceResponse {
|
|
|
82
92
|
*/
|
|
83
93
|
export interface RejectInputDeviceTransferRequest {
|
|
84
94
|
/**
|
|
95
|
+
* @public
|
|
85
96
|
* The unique ID of the input device to reject. For example, hd-123456789abcdef.
|
|
86
97
|
*/
|
|
87
98
|
InputDeviceId: string | undefined;
|
|
@@ -98,6 +109,7 @@ export interface RejectInputDeviceTransferResponse {
|
|
|
98
109
|
*/
|
|
99
110
|
export interface StartChannelRequest {
|
|
100
111
|
/**
|
|
112
|
+
* @public
|
|
101
113
|
* A request to start a channel
|
|
102
114
|
*/
|
|
103
115
|
ChannelId: string | undefined;
|
|
@@ -108,76 +120,94 @@ export interface StartChannelRequest {
|
|
|
108
120
|
*/
|
|
109
121
|
export interface StartChannelResponse {
|
|
110
122
|
/**
|
|
123
|
+
* @public
|
|
111
124
|
* The unique arn of the channel.
|
|
112
125
|
*/
|
|
113
126
|
Arn?: string;
|
|
114
127
|
/**
|
|
128
|
+
* @public
|
|
115
129
|
* Specification of CDI inputs for this channel
|
|
116
130
|
*/
|
|
117
131
|
CdiInputSpecification?: CdiInputSpecification;
|
|
118
132
|
/**
|
|
133
|
+
* @public
|
|
119
134
|
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
|
|
120
135
|
*/
|
|
121
136
|
ChannelClass?: ChannelClass | string;
|
|
122
137
|
/**
|
|
138
|
+
* @public
|
|
123
139
|
* A list of destinations of the channel. For UDP outputs, there is one
|
|
124
140
|
* destination per output. For other types (HLS, for example), there is
|
|
125
141
|
* one destination per packager.
|
|
126
142
|
*/
|
|
127
143
|
Destinations?: OutputDestination[];
|
|
128
144
|
/**
|
|
145
|
+
* @public
|
|
129
146
|
* The endpoints where outgoing connections initiate from
|
|
130
147
|
*/
|
|
131
148
|
EgressEndpoints?: ChannelEgressEndpoint[];
|
|
132
149
|
/**
|
|
150
|
+
* @public
|
|
133
151
|
* Encoder Settings
|
|
134
152
|
*/
|
|
135
153
|
EncoderSettings?: EncoderSettings;
|
|
136
154
|
/**
|
|
155
|
+
* @public
|
|
137
156
|
* The unique id of the channel.
|
|
138
157
|
*/
|
|
139
158
|
Id?: string;
|
|
140
159
|
/**
|
|
160
|
+
* @public
|
|
141
161
|
* List of input attachments for channel.
|
|
142
162
|
*/
|
|
143
163
|
InputAttachments?: InputAttachment[];
|
|
144
164
|
/**
|
|
165
|
+
* @public
|
|
145
166
|
* Specification of network and file inputs for this channel
|
|
146
167
|
*/
|
|
147
168
|
InputSpecification?: InputSpecification;
|
|
148
169
|
/**
|
|
170
|
+
* @public
|
|
149
171
|
* The log level being written to CloudWatch Logs.
|
|
150
172
|
*/
|
|
151
173
|
LogLevel?: LogLevel | string;
|
|
152
174
|
/**
|
|
175
|
+
* @public
|
|
153
176
|
* Maintenance settings for this channel.
|
|
154
177
|
*/
|
|
155
178
|
Maintenance?: MaintenanceStatus;
|
|
156
179
|
/**
|
|
180
|
+
* @public
|
|
157
181
|
* The name of the channel. (user-mutable)
|
|
158
182
|
*/
|
|
159
183
|
Name?: string;
|
|
160
184
|
/**
|
|
185
|
+
* @public
|
|
161
186
|
* Runtime details for the pipelines of a running channel.
|
|
162
187
|
*/
|
|
163
188
|
PipelineDetails?: PipelineDetail[];
|
|
164
189
|
/**
|
|
190
|
+
* @public
|
|
165
191
|
* The number of currently healthy pipelines.
|
|
166
192
|
*/
|
|
167
193
|
PipelinesRunningCount?: number;
|
|
168
194
|
/**
|
|
195
|
+
* @public
|
|
169
196
|
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
|
|
170
197
|
*/
|
|
171
198
|
RoleArn?: string;
|
|
172
199
|
/**
|
|
200
|
+
* @public
|
|
173
201
|
* Placeholder documentation for ChannelState
|
|
174
202
|
*/
|
|
175
203
|
State?: ChannelState | string;
|
|
176
204
|
/**
|
|
205
|
+
* @public
|
|
177
206
|
* A collection of key-value pairs.
|
|
178
207
|
*/
|
|
179
208
|
Tags?: Record<string, string>;
|
|
180
209
|
/**
|
|
210
|
+
* @public
|
|
181
211
|
* Settings for VPC output
|
|
182
212
|
*/
|
|
183
213
|
Vpc?: VpcOutputSettingsDescription;
|
|
@@ -188,6 +218,7 @@ export interface StartChannelResponse {
|
|
|
188
218
|
*/
|
|
189
219
|
export interface StartInputDeviceMaintenanceWindowRequest {
|
|
190
220
|
/**
|
|
221
|
+
* @public
|
|
191
222
|
* The unique ID of the input device to start a maintenance window for. For example, hd-123456789abcdef.
|
|
192
223
|
*/
|
|
193
224
|
InputDeviceId: string | undefined;
|
|
@@ -204,6 +235,7 @@ export interface StartInputDeviceMaintenanceWindowResponse {
|
|
|
204
235
|
*/
|
|
205
236
|
export interface StartMultiplexRequest {
|
|
206
237
|
/**
|
|
238
|
+
* @public
|
|
207
239
|
* The ID of the multiplex.
|
|
208
240
|
*/
|
|
209
241
|
MultiplexId: string | undefined;
|
|
@@ -214,42 +246,52 @@ export interface StartMultiplexRequest {
|
|
|
214
246
|
*/
|
|
215
247
|
export interface StartMultiplexResponse {
|
|
216
248
|
/**
|
|
249
|
+
* @public
|
|
217
250
|
* The unique arn of the multiplex.
|
|
218
251
|
*/
|
|
219
252
|
Arn?: string;
|
|
220
253
|
/**
|
|
254
|
+
* @public
|
|
221
255
|
* A list of availability zones for the multiplex.
|
|
222
256
|
*/
|
|
223
257
|
AvailabilityZones?: string[];
|
|
224
258
|
/**
|
|
259
|
+
* @public
|
|
225
260
|
* A list of the multiplex output destinations.
|
|
226
261
|
*/
|
|
227
262
|
Destinations?: MultiplexOutputDestination[];
|
|
228
263
|
/**
|
|
264
|
+
* @public
|
|
229
265
|
* The unique id of the multiplex.
|
|
230
266
|
*/
|
|
231
267
|
Id?: string;
|
|
232
268
|
/**
|
|
269
|
+
* @public
|
|
233
270
|
* Configuration for a multiplex event.
|
|
234
271
|
*/
|
|
235
272
|
MultiplexSettings?: MultiplexSettings;
|
|
236
273
|
/**
|
|
274
|
+
* @public
|
|
237
275
|
* The name of the multiplex.
|
|
238
276
|
*/
|
|
239
277
|
Name?: string;
|
|
240
278
|
/**
|
|
279
|
+
* @public
|
|
241
280
|
* The number of currently healthy pipelines.
|
|
242
281
|
*/
|
|
243
282
|
PipelinesRunningCount?: number;
|
|
244
283
|
/**
|
|
284
|
+
* @public
|
|
245
285
|
* The number of programs in the multiplex.
|
|
246
286
|
*/
|
|
247
287
|
ProgramCount?: number;
|
|
248
288
|
/**
|
|
289
|
+
* @public
|
|
249
290
|
* The current state of the multiplex.
|
|
250
291
|
*/
|
|
251
292
|
State?: MultiplexState | string;
|
|
252
293
|
/**
|
|
294
|
+
* @public
|
|
253
295
|
* A collection of key-value pairs.
|
|
254
296
|
*/
|
|
255
297
|
Tags?: Record<string, string>;
|
|
@@ -260,6 +302,7 @@ export interface StartMultiplexResponse {
|
|
|
260
302
|
*/
|
|
261
303
|
export interface StopChannelRequest {
|
|
262
304
|
/**
|
|
305
|
+
* @public
|
|
263
306
|
* A request to stop a running channel
|
|
264
307
|
*/
|
|
265
308
|
ChannelId: string | undefined;
|
|
@@ -270,76 +313,94 @@ export interface StopChannelRequest {
|
|
|
270
313
|
*/
|
|
271
314
|
export interface StopChannelResponse {
|
|
272
315
|
/**
|
|
316
|
+
* @public
|
|
273
317
|
* The unique arn of the channel.
|
|
274
318
|
*/
|
|
275
319
|
Arn?: string;
|
|
276
320
|
/**
|
|
321
|
+
* @public
|
|
277
322
|
* Specification of CDI inputs for this channel
|
|
278
323
|
*/
|
|
279
324
|
CdiInputSpecification?: CdiInputSpecification;
|
|
280
325
|
/**
|
|
326
|
+
* @public
|
|
281
327
|
* The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
|
|
282
328
|
*/
|
|
283
329
|
ChannelClass?: ChannelClass | string;
|
|
284
330
|
/**
|
|
331
|
+
* @public
|
|
285
332
|
* A list of destinations of the channel. For UDP outputs, there is one
|
|
286
333
|
* destination per output. For other types (HLS, for example), there is
|
|
287
334
|
* one destination per packager.
|
|
288
335
|
*/
|
|
289
336
|
Destinations?: OutputDestination[];
|
|
290
337
|
/**
|
|
338
|
+
* @public
|
|
291
339
|
* The endpoints where outgoing connections initiate from
|
|
292
340
|
*/
|
|
293
341
|
EgressEndpoints?: ChannelEgressEndpoint[];
|
|
294
342
|
/**
|
|
343
|
+
* @public
|
|
295
344
|
* Encoder Settings
|
|
296
345
|
*/
|
|
297
346
|
EncoderSettings?: EncoderSettings;
|
|
298
347
|
/**
|
|
348
|
+
* @public
|
|
299
349
|
* The unique id of the channel.
|
|
300
350
|
*/
|
|
301
351
|
Id?: string;
|
|
302
352
|
/**
|
|
353
|
+
* @public
|
|
303
354
|
* List of input attachments for channel.
|
|
304
355
|
*/
|
|
305
356
|
InputAttachments?: InputAttachment[];
|
|
306
357
|
/**
|
|
358
|
+
* @public
|
|
307
359
|
* Specification of network and file inputs for this channel
|
|
308
360
|
*/
|
|
309
361
|
InputSpecification?: InputSpecification;
|
|
310
362
|
/**
|
|
363
|
+
* @public
|
|
311
364
|
* The log level being written to CloudWatch Logs.
|
|
312
365
|
*/
|
|
313
366
|
LogLevel?: LogLevel | string;
|
|
314
367
|
/**
|
|
368
|
+
* @public
|
|
315
369
|
* Maintenance settings for this channel.
|
|
316
370
|
*/
|
|
317
371
|
Maintenance?: MaintenanceStatus;
|
|
318
372
|
/**
|
|
373
|
+
* @public
|
|
319
374
|
* The name of the channel. (user-mutable)
|
|
320
375
|
*/
|
|
321
376
|
Name?: string;
|
|
322
377
|
/**
|
|
378
|
+
* @public
|
|
323
379
|
* Runtime details for the pipelines of a running channel.
|
|
324
380
|
*/
|
|
325
381
|
PipelineDetails?: PipelineDetail[];
|
|
326
382
|
/**
|
|
383
|
+
* @public
|
|
327
384
|
* The number of currently healthy pipelines.
|
|
328
385
|
*/
|
|
329
386
|
PipelinesRunningCount?: number;
|
|
330
387
|
/**
|
|
388
|
+
* @public
|
|
331
389
|
* The Amazon Resource Name (ARN) of the role assumed when running the Channel.
|
|
332
390
|
*/
|
|
333
391
|
RoleArn?: string;
|
|
334
392
|
/**
|
|
393
|
+
* @public
|
|
335
394
|
* Placeholder documentation for ChannelState
|
|
336
395
|
*/
|
|
337
396
|
State?: ChannelState | string;
|
|
338
397
|
/**
|
|
398
|
+
* @public
|
|
339
399
|
* A collection of key-value pairs.
|
|
340
400
|
*/
|
|
341
401
|
Tags?: Record<string, string>;
|
|
342
402
|
/**
|
|
403
|
+
* @public
|
|
343
404
|
* Settings for VPC output
|
|
344
405
|
*/
|
|
345
406
|
Vpc?: VpcOutputSettingsDescription;
|
|
@@ -350,6 +411,7 @@ export interface StopChannelResponse {
|
|
|
350
411
|
*/
|
|
351
412
|
export interface StopMultiplexRequest {
|
|
352
413
|
/**
|
|
414
|
+
* @public
|
|
353
415
|
* The ID of the multiplex.
|
|
354
416
|
*/
|
|
355
417
|
MultiplexId: string | undefined;
|
|
@@ -360,42 +422,52 @@ export interface StopMultiplexRequest {
|
|
|
360
422
|
*/
|
|
361
423
|
export interface StopMultiplexResponse {
|
|
362
424
|
/**
|
|
425
|
+
* @public
|
|
363
426
|
* The unique arn of the multiplex.
|
|
364
427
|
*/
|
|
365
428
|
Arn?: string;
|
|
366
429
|
/**
|
|
430
|
+
* @public
|
|
367
431
|
* A list of availability zones for the multiplex.
|
|
368
432
|
*/
|
|
369
433
|
AvailabilityZones?: string[];
|
|
370
434
|
/**
|
|
435
|
+
* @public
|
|
371
436
|
* A list of the multiplex output destinations.
|
|
372
437
|
*/
|
|
373
438
|
Destinations?: MultiplexOutputDestination[];
|
|
374
439
|
/**
|
|
440
|
+
* @public
|
|
375
441
|
* The unique id of the multiplex.
|
|
376
442
|
*/
|
|
377
443
|
Id?: string;
|
|
378
444
|
/**
|
|
445
|
+
* @public
|
|
379
446
|
* Configuration for a multiplex event.
|
|
380
447
|
*/
|
|
381
448
|
MultiplexSettings?: MultiplexSettings;
|
|
382
449
|
/**
|
|
450
|
+
* @public
|
|
383
451
|
* The name of the multiplex.
|
|
384
452
|
*/
|
|
385
453
|
Name?: string;
|
|
386
454
|
/**
|
|
455
|
+
* @public
|
|
387
456
|
* The number of currently healthy pipelines.
|
|
388
457
|
*/
|
|
389
458
|
PipelinesRunningCount?: number;
|
|
390
459
|
/**
|
|
460
|
+
* @public
|
|
391
461
|
* The number of programs in the multiplex.
|
|
392
462
|
*/
|
|
393
463
|
ProgramCount?: number;
|
|
394
464
|
/**
|
|
465
|
+
* @public
|
|
395
466
|
* The current state of the multiplex.
|
|
396
467
|
*/
|
|
397
468
|
State?: MultiplexState | string;
|
|
398
469
|
/**
|
|
470
|
+
* @public
|
|
399
471
|
* A collection of key-value pairs.
|
|
400
472
|
*/
|
|
401
473
|
Tags?: Record<string, string>;
|
|
@@ -406,18 +478,22 @@ export interface StopMultiplexResponse {
|
|
|
406
478
|
*/
|
|
407
479
|
export interface TransferInputDeviceRequest {
|
|
408
480
|
/**
|
|
481
|
+
* @public
|
|
409
482
|
* The unique ID of this input device. For example, hd-123456789abcdef.
|
|
410
483
|
*/
|
|
411
484
|
InputDeviceId: string | undefined;
|
|
412
485
|
/**
|
|
486
|
+
* @public
|
|
413
487
|
* The AWS account ID (12 digits) for the recipient of the device transfer.
|
|
414
488
|
*/
|
|
415
489
|
TargetCustomerId?: string;
|
|
416
490
|
/**
|
|
491
|
+
* @public
|
|
417
492
|
* The target AWS region to transfer the device.
|
|
418
493
|
*/
|
|
419
494
|
TargetRegion?: string;
|
|
420
495
|
/**
|
|
496
|
+
* @public
|
|
421
497
|
* An optional message for the recipient. Maximum 280 characters.
|
|
422
498
|
*/
|
|
423
499
|
TransferMessage?: string;
|
|
@@ -434,6 +510,7 @@ export interface TransferInputDeviceResponse {
|
|
|
434
510
|
*/
|
|
435
511
|
export interface UpdateAccountConfigurationRequest {
|
|
436
512
|
/**
|
|
513
|
+
* @public
|
|
437
514
|
* Placeholder documentation for AccountConfiguration
|
|
438
515
|
*/
|
|
439
516
|
AccountConfiguration?: AccountConfiguration;
|
|
@@ -444,6 +521,7 @@ export interface UpdateAccountConfigurationRequest {
|
|
|
444
521
|
*/
|
|
445
522
|
export interface UpdateAccountConfigurationResponse {
|
|
446
523
|
/**
|
|
524
|
+
* @public
|
|
447
525
|
* Placeholder documentation for AccountConfiguration
|
|
448
526
|
*/
|
|
449
527
|
AccountConfiguration?: AccountConfiguration;
|
|
@@ -454,42 +532,52 @@ export interface UpdateAccountConfigurationResponse {
|
|
|
454
532
|
*/
|
|
455
533
|
export interface UpdateChannelRequest {
|
|
456
534
|
/**
|
|
535
|
+
* @public
|
|
457
536
|
* Specification of CDI inputs for this channel
|
|
458
537
|
*/
|
|
459
538
|
CdiInputSpecification?: CdiInputSpecification;
|
|
460
539
|
/**
|
|
540
|
+
* @public
|
|
461
541
|
* channel ID
|
|
462
542
|
*/
|
|
463
543
|
ChannelId: string | undefined;
|
|
464
544
|
/**
|
|
545
|
+
* @public
|
|
465
546
|
* A list of output destinations for this channel.
|
|
466
547
|
*/
|
|
467
548
|
Destinations?: OutputDestination[];
|
|
468
549
|
/**
|
|
550
|
+
* @public
|
|
469
551
|
* The encoder settings for this channel.
|
|
470
552
|
*/
|
|
471
553
|
EncoderSettings?: EncoderSettings;
|
|
472
554
|
/**
|
|
555
|
+
* @public
|
|
473
556
|
* Placeholder documentation for __listOfInputAttachment
|
|
474
557
|
*/
|
|
475
558
|
InputAttachments?: InputAttachment[];
|
|
476
559
|
/**
|
|
560
|
+
* @public
|
|
477
561
|
* Specification of network and file inputs for this channel
|
|
478
562
|
*/
|
|
479
563
|
InputSpecification?: InputSpecification;
|
|
480
564
|
/**
|
|
565
|
+
* @public
|
|
481
566
|
* The log level to write to CloudWatch Logs.
|
|
482
567
|
*/
|
|
483
568
|
LogLevel?: LogLevel | string;
|
|
484
569
|
/**
|
|
570
|
+
* @public
|
|
485
571
|
* Maintenance settings for this channel.
|
|
486
572
|
*/
|
|
487
573
|
Maintenance?: MaintenanceUpdateSettings;
|
|
488
574
|
/**
|
|
575
|
+
* @public
|
|
489
576
|
* The name of the channel.
|
|
490
577
|
*/
|
|
491
578
|
Name?: string;
|
|
492
579
|
/**
|
|
580
|
+
* @public
|
|
493
581
|
* An optional Amazon Resource Name (ARN) of the role to assume when running the Channel. If you do not specify this on an update call but the role was previously set that role will be removed.
|
|
494
582
|
*/
|
|
495
583
|
RoleArn?: string;
|
|
@@ -500,6 +588,7 @@ export interface UpdateChannelRequest {
|
|
|
500
588
|
*/
|
|
501
589
|
export interface UpdateChannelResponse {
|
|
502
590
|
/**
|
|
591
|
+
* @public
|
|
503
592
|
* Placeholder documentation for Channel
|
|
504
593
|
*/
|
|
505
594
|
Channel?: Channel;
|
|
@@ -510,14 +599,17 @@ export interface UpdateChannelResponse {
|
|
|
510
599
|
*/
|
|
511
600
|
export interface UpdateChannelClassRequest {
|
|
512
601
|
/**
|
|
602
|
+
* @public
|
|
513
603
|
* The channel class that you wish to update this channel to use.
|
|
514
604
|
*/
|
|
515
605
|
ChannelClass: ChannelClass | string | undefined;
|
|
516
606
|
/**
|
|
607
|
+
* @public
|
|
517
608
|
* Channel Id of the channel whose class should be updated.
|
|
518
609
|
*/
|
|
519
610
|
ChannelId: string | undefined;
|
|
520
611
|
/**
|
|
612
|
+
* @public
|
|
521
613
|
* A list of output destinations for this channel.
|
|
522
614
|
*/
|
|
523
615
|
Destinations?: OutputDestination[];
|
|
@@ -528,6 +620,7 @@ export interface UpdateChannelClassRequest {
|
|
|
528
620
|
*/
|
|
529
621
|
export interface UpdateChannelClassResponse {
|
|
530
622
|
/**
|
|
623
|
+
* @public
|
|
531
624
|
* Placeholder documentation for Channel
|
|
532
625
|
*/
|
|
533
626
|
Channel?: Channel;
|
|
@@ -538,36 +631,44 @@ export interface UpdateChannelClassResponse {
|
|
|
538
631
|
*/
|
|
539
632
|
export interface UpdateInputRequest {
|
|
540
633
|
/**
|
|
634
|
+
* @public
|
|
541
635
|
* Destination settings for PUSH type inputs.
|
|
542
636
|
*/
|
|
543
637
|
Destinations?: InputDestinationRequest[];
|
|
544
638
|
/**
|
|
639
|
+
* @public
|
|
545
640
|
* Settings for the devices.
|
|
546
641
|
*/
|
|
547
642
|
InputDevices?: InputDeviceRequest[];
|
|
548
643
|
/**
|
|
644
|
+
* @public
|
|
549
645
|
* Unique ID of the input.
|
|
550
646
|
*/
|
|
551
647
|
InputId: string | undefined;
|
|
552
648
|
/**
|
|
649
|
+
* @public
|
|
553
650
|
* A list of security groups referenced by IDs to attach to the input.
|
|
554
651
|
*/
|
|
555
652
|
InputSecurityGroups?: string[];
|
|
556
653
|
/**
|
|
654
|
+
* @public
|
|
557
655
|
* A list of the MediaConnect Flow ARNs that you want to use as the source of the input. You can specify as few as one
|
|
558
656
|
* Flow and presently, as many as two. The only requirement is when you have more than one is that each Flow is in a
|
|
559
657
|
* separate Availability Zone as this ensures your EML input is redundant to AZ issues.
|
|
560
658
|
*/
|
|
561
659
|
MediaConnectFlows?: MediaConnectFlowRequest[];
|
|
562
660
|
/**
|
|
661
|
+
* @public
|
|
563
662
|
* Name of the input.
|
|
564
663
|
*/
|
|
565
664
|
Name?: string;
|
|
566
665
|
/**
|
|
666
|
+
* @public
|
|
567
667
|
* The Amazon Resource Name (ARN) of the role this input assumes during and after creation.
|
|
568
668
|
*/
|
|
569
669
|
RoleArn?: string;
|
|
570
670
|
/**
|
|
671
|
+
* @public
|
|
571
672
|
* The source URLs for a PULL-type input. Every PULL type input needs
|
|
572
673
|
* exactly two source URLs for redundancy.
|
|
573
674
|
* Only specify sources for PULL type Inputs. Leave Destinations empty.
|
|
@@ -580,6 +681,7 @@ export interface UpdateInputRequest {
|
|
|
580
681
|
*/
|
|
581
682
|
export interface UpdateInputResponse {
|
|
582
683
|
/**
|
|
684
|
+
* @public
|
|
583
685
|
* Placeholder documentation for Input
|
|
584
686
|
*/
|
|
585
687
|
Input?: Input;
|
|
@@ -590,21 +692,30 @@ export interface UpdateInputResponse {
|
|
|
590
692
|
*/
|
|
591
693
|
export interface UpdateInputDeviceRequest {
|
|
592
694
|
/**
|
|
695
|
+
* @public
|
|
593
696
|
* The settings that you want to apply to the HD input device.
|
|
594
697
|
*/
|
|
595
698
|
HdDeviceSettings?: InputDeviceConfigurableSettings;
|
|
596
699
|
/**
|
|
700
|
+
* @public
|
|
597
701
|
* The unique ID of the input device. For example, hd-123456789abcdef.
|
|
598
702
|
*/
|
|
599
703
|
InputDeviceId: string | undefined;
|
|
600
704
|
/**
|
|
705
|
+
* @public
|
|
601
706
|
* The name that you assigned to this input device (not the unique ID).
|
|
602
707
|
*/
|
|
603
708
|
Name?: string;
|
|
604
709
|
/**
|
|
710
|
+
* @public
|
|
605
711
|
* The settings that you want to apply to the UHD input device.
|
|
606
712
|
*/
|
|
607
713
|
UhdDeviceSettings?: InputDeviceConfigurableSettings;
|
|
714
|
+
/**
|
|
715
|
+
* @public
|
|
716
|
+
* The Availability Zone you want associated with this input device.
|
|
717
|
+
*/
|
|
718
|
+
AvailabilityZone?: string;
|
|
608
719
|
}
|
|
609
720
|
/**
|
|
610
721
|
* @public
|
|
@@ -612,57 +723,75 @@ export interface UpdateInputDeviceRequest {
|
|
|
612
723
|
*/
|
|
613
724
|
export interface UpdateInputDeviceResponse {
|
|
614
725
|
/**
|
|
726
|
+
* @public
|
|
615
727
|
* The unique ARN of the input device.
|
|
616
728
|
*/
|
|
617
729
|
Arn?: string;
|
|
618
730
|
/**
|
|
731
|
+
* @public
|
|
619
732
|
* The state of the connection between the input device and AWS.
|
|
620
733
|
*/
|
|
621
734
|
ConnectionState?: InputDeviceConnectionState | string;
|
|
622
735
|
/**
|
|
736
|
+
* @public
|
|
623
737
|
* The status of the action to synchronize the device configuration. If you change the configuration of the input device (for example, the maximum bitrate), MediaLive sends the new data to the device. The device might not update itself immediately. SYNCED means the device has updated its configuration. SYNCING means that it has not updated its configuration.
|
|
624
738
|
*/
|
|
625
739
|
DeviceSettingsSyncState?: DeviceSettingsSyncState | string;
|
|
626
740
|
/**
|
|
741
|
+
* @public
|
|
627
742
|
* The status of software on the input device.
|
|
628
743
|
*/
|
|
629
744
|
DeviceUpdateStatus?: DeviceUpdateStatus | string;
|
|
630
745
|
/**
|
|
746
|
+
* @public
|
|
631
747
|
* Settings that describe an input device that is type HD.
|
|
632
748
|
*/
|
|
633
749
|
HdDeviceSettings?: InputDeviceHdSettings;
|
|
634
750
|
/**
|
|
751
|
+
* @public
|
|
635
752
|
* The unique ID of the input device.
|
|
636
753
|
*/
|
|
637
754
|
Id?: string;
|
|
638
755
|
/**
|
|
756
|
+
* @public
|
|
639
757
|
* The network MAC address of the input device.
|
|
640
758
|
*/
|
|
641
759
|
MacAddress?: string;
|
|
642
760
|
/**
|
|
761
|
+
* @public
|
|
643
762
|
* A name that you specify for the input device.
|
|
644
763
|
*/
|
|
645
764
|
Name?: string;
|
|
646
765
|
/**
|
|
766
|
+
* @public
|
|
647
767
|
* The network settings for the input device.
|
|
648
768
|
*/
|
|
649
769
|
NetworkSettings?: InputDeviceNetworkSettings;
|
|
650
770
|
/**
|
|
771
|
+
* @public
|
|
651
772
|
* The unique serial number of the input device.
|
|
652
773
|
*/
|
|
653
774
|
SerialNumber?: string;
|
|
654
775
|
/**
|
|
776
|
+
* @public
|
|
655
777
|
* The type of the input device.
|
|
656
778
|
*/
|
|
657
779
|
Type?: InputDeviceType | string;
|
|
658
780
|
/**
|
|
781
|
+
* @public
|
|
659
782
|
* Settings that describe an input device that is type UHD.
|
|
660
783
|
*/
|
|
661
784
|
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
662
785
|
/**
|
|
786
|
+
* @public
|
|
663
787
|
* A collection of key-value pairs.
|
|
664
788
|
*/
|
|
665
789
|
Tags?: Record<string, string>;
|
|
790
|
+
/**
|
|
791
|
+
* @public
|
|
792
|
+
* The Availability Zone associated with this input device.
|
|
793
|
+
*/
|
|
794
|
+
AvailabilityZone?: string;
|
|
666
795
|
}
|
|
667
796
|
/**
|
|
668
797
|
* @public
|
|
@@ -670,14 +799,17 @@ export interface UpdateInputDeviceResponse {
|
|
|
670
799
|
*/
|
|
671
800
|
export interface UpdateInputSecurityGroupRequest {
|
|
672
801
|
/**
|
|
802
|
+
* @public
|
|
673
803
|
* The id of the Input Security Group to update.
|
|
674
804
|
*/
|
|
675
805
|
InputSecurityGroupId: string | undefined;
|
|
676
806
|
/**
|
|
807
|
+
* @public
|
|
677
808
|
* A collection of key-value pairs.
|
|
678
809
|
*/
|
|
679
810
|
Tags?: Record<string, string>;
|
|
680
811
|
/**
|
|
812
|
+
* @public
|
|
681
813
|
* List of IPv4 CIDR addresses to whitelist
|
|
682
814
|
*/
|
|
683
815
|
WhitelistRules?: InputWhitelistRuleCidr[];
|
|
@@ -688,6 +820,7 @@ export interface UpdateInputSecurityGroupRequest {
|
|
|
688
820
|
*/
|
|
689
821
|
export interface UpdateInputSecurityGroupResponse {
|
|
690
822
|
/**
|
|
823
|
+
* @public
|
|
691
824
|
* An Input Security Group
|
|
692
825
|
*/
|
|
693
826
|
SecurityGroup?: InputSecurityGroup;
|
|
@@ -698,14 +831,17 @@ export interface UpdateInputSecurityGroupResponse {
|
|
|
698
831
|
*/
|
|
699
832
|
export interface UpdateMultiplexRequest {
|
|
700
833
|
/**
|
|
834
|
+
* @public
|
|
701
835
|
* ID of the multiplex to update.
|
|
702
836
|
*/
|
|
703
837
|
MultiplexId: string | undefined;
|
|
704
838
|
/**
|
|
839
|
+
* @public
|
|
705
840
|
* The new settings for a multiplex.
|
|
706
841
|
*/
|
|
707
842
|
MultiplexSettings?: MultiplexSettings;
|
|
708
843
|
/**
|
|
844
|
+
* @public
|
|
709
845
|
* Name of the multiplex.
|
|
710
846
|
*/
|
|
711
847
|
Name?: string;
|
|
@@ -716,6 +852,7 @@ export interface UpdateMultiplexRequest {
|
|
|
716
852
|
*/
|
|
717
853
|
export interface UpdateMultiplexResponse {
|
|
718
854
|
/**
|
|
855
|
+
* @public
|
|
719
856
|
* The updated multiplex.
|
|
720
857
|
*/
|
|
721
858
|
Multiplex?: Multiplex;
|
|
@@ -726,14 +863,17 @@ export interface UpdateMultiplexResponse {
|
|
|
726
863
|
*/
|
|
727
864
|
export interface UpdateMultiplexProgramRequest {
|
|
728
865
|
/**
|
|
866
|
+
* @public
|
|
729
867
|
* The ID of the multiplex of the program to update.
|
|
730
868
|
*/
|
|
731
869
|
MultiplexId: string | undefined;
|
|
732
870
|
/**
|
|
871
|
+
* @public
|
|
733
872
|
* The new settings for a multiplex program.
|
|
734
873
|
*/
|
|
735
874
|
MultiplexProgramSettings?: MultiplexProgramSettings;
|
|
736
875
|
/**
|
|
876
|
+
* @public
|
|
737
877
|
* The name of the program to update.
|
|
738
878
|
*/
|
|
739
879
|
ProgramName: string | undefined;
|
|
@@ -744,6 +884,7 @@ export interface UpdateMultiplexProgramRequest {
|
|
|
744
884
|
*/
|
|
745
885
|
export interface UpdateMultiplexProgramResponse {
|
|
746
886
|
/**
|
|
887
|
+
* @public
|
|
747
888
|
* The updated multiplex program.
|
|
748
889
|
*/
|
|
749
890
|
MultiplexProgram?: MultiplexProgram;
|
|
@@ -754,14 +895,17 @@ export interface UpdateMultiplexProgramResponse {
|
|
|
754
895
|
*/
|
|
755
896
|
export interface UpdateReservationRequest {
|
|
756
897
|
/**
|
|
898
|
+
* @public
|
|
757
899
|
* Name of the reservation
|
|
758
900
|
*/
|
|
759
901
|
Name?: string;
|
|
760
902
|
/**
|
|
903
|
+
* @public
|
|
761
904
|
* Renewal settings for the reservation
|
|
762
905
|
*/
|
|
763
906
|
RenewalSettings?: RenewalSettings;
|
|
764
907
|
/**
|
|
908
|
+
* @public
|
|
765
909
|
* Unique reservation ID, e.g. '1234567'
|
|
766
910
|
*/
|
|
767
911
|
ReservationId: string | undefined;
|
|
@@ -772,6 +916,7 @@ export interface UpdateReservationRequest {
|
|
|
772
916
|
*/
|
|
773
917
|
export interface UpdateReservationResponse {
|
|
774
918
|
/**
|
|
919
|
+
* @public
|
|
775
920
|
* Reserved resources available to use
|
|
776
921
|
*/
|
|
777
922
|
Reservation?: Reservation;
|