@aws-sdk/client-medialive 3.325.0 → 3.326.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.
Files changed (60) hide show
  1. package/dist-types/commands/AcceptInputDeviceTransferCommand.d.ts +4 -0
  2. package/dist-types/commands/BatchDeleteCommand.d.ts +20 -0
  3. package/dist-types/commands/BatchStartCommand.d.ts +20 -0
  4. package/dist-types/commands/BatchStopCommand.d.ts +20 -0
  5. package/dist-types/commands/BatchUpdateScheduleCommand.d.ts +263 -0
  6. package/dist-types/commands/CancelInputDeviceTransferCommand.d.ts +4 -0
  7. package/dist-types/commands/ClaimDeviceCommand.d.ts +4 -0
  8. package/dist-types/commands/CreateChannelCommand.d.ts +1011 -0
  9. package/dist-types/commands/CreateInputCommand.d.ts +55 -0
  10. package/dist-types/commands/CreateInputSecurityGroupCommand.d.ts +21 -0
  11. package/dist-types/commands/CreateMultiplexCommand.d.ts +32 -0
  12. package/dist-types/commands/CreateMultiplexProgramCommand.d.ts +54 -0
  13. package/dist-types/commands/CreatePartnerInputCommand.d.ts +55 -0
  14. package/dist-types/commands/CreateTagsCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteChannelCommand.d.ts +1009 -0
  16. package/dist-types/commands/DeleteInputCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteInputSecurityGroupCommand.d.ts +4 -0
  18. package/dist-types/commands/DeleteMultiplexCommand.d.ts +30 -0
  19. package/dist-types/commands/DeleteMultiplexProgramCommand.d.ts +52 -0
  20. package/dist-types/commands/DeleteReservationCommand.d.ts +38 -0
  21. package/dist-types/commands/DeleteScheduleCommand.d.ts +4 -0
  22. package/dist-types/commands/DeleteTagsCommand.d.ts +4 -0
  23. package/dist-types/commands/DescribeChannelCommand.d.ts +1009 -0
  24. package/dist-types/commands/DescribeInputCommand.d.ts +53 -0
  25. package/dist-types/commands/DescribeInputDeviceCommand.d.ts +48 -0
  26. package/dist-types/commands/DescribeInputDeviceThumbnailCommand.d.ts +10 -0
  27. package/dist-types/commands/DescribeInputSecurityGroupCommand.d.ts +19 -0
  28. package/dist-types/commands/DescribeMultiplexCommand.d.ts +30 -0
  29. package/dist-types/commands/DescribeMultiplexProgramCommand.d.ts +52 -0
  30. package/dist-types/commands/DescribeOfferingCommand.d.ts +25 -0
  31. package/dist-types/commands/DescribeReservationCommand.d.ts +38 -0
  32. package/dist-types/commands/DescribeScheduleCommand.d.ts +133 -0
  33. package/dist-types/commands/ListChannelsCommand.d.ts +208 -0
  34. package/dist-types/commands/ListInputDeviceTransfersCommand.d.ts +14 -0
  35. package/dist-types/commands/ListInputDevicesCommand.d.ts +53 -0
  36. package/dist-types/commands/ListInputSecurityGroupsCommand.d.ts +24 -0
  37. package/dist-types/commands/ListInputsCommand.d.ts +58 -0
  38. package/dist-types/commands/ListMultiplexProgramsCommand.d.ts +12 -0
  39. package/dist-types/commands/ListMultiplexesCommand.d.ts +25 -0
  40. package/dist-types/commands/ListOfferingsCommand.d.ts +30 -0
  41. package/dist-types/commands/ListReservationsCommand.d.ts +43 -0
  42. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  43. package/dist-types/commands/PurchaseOfferingCommand.d.ts +40 -0
  44. package/dist-types/commands/RebootInputDeviceCommand.d.ts +4 -0
  45. package/dist-types/commands/RejectInputDeviceTransferCommand.d.ts +4 -0
  46. package/dist-types/commands/StartChannelCommand.d.ts +1009 -0
  47. package/dist-types/commands/StartInputDeviceMaintenanceWindowCommand.d.ts +4 -0
  48. package/dist-types/commands/StartMultiplexCommand.d.ts +30 -0
  49. package/dist-types/commands/StopChannelCommand.d.ts +1009 -0
  50. package/dist-types/commands/StopMultiplexCommand.d.ts +30 -0
  51. package/dist-types/commands/TransferInputDeviceCommand.d.ts +4 -0
  52. package/dist-types/commands/UpdateChannelClassCommand.d.ts +1011 -0
  53. package/dist-types/commands/UpdateChannelCommand.d.ts +1011 -0
  54. package/dist-types/commands/UpdateInputCommand.d.ts +55 -0
  55. package/dist-types/commands/UpdateInputDeviceCommand.d.ts +48 -0
  56. package/dist-types/commands/UpdateInputSecurityGroupCommand.d.ts +21 -0
  57. package/dist-types/commands/UpdateMultiplexCommand.d.ts +32 -0
  58. package/dist-types/commands/UpdateMultiplexProgramCommand.d.ts +54 -0
  59. package/dist-types/commands/UpdateReservationCommand.d.ts +40 -0
  60. package/package.json +3 -3
@@ -31,6 +31,8 @@ export interface AcceptInputDeviceTransferCommandOutput extends AcceptInputDevic
31
31
  * };
32
32
  * const command = new AcceptInputDeviceTransferCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param AcceptInputDeviceTransferCommandInput - {@link AcceptInputDeviceTransferCommandInput}
@@ -66,6 +68,8 @@ export interface AcceptInputDeviceTransferCommandOutput extends AcceptInputDevic
66
68
  * @throws {@link UnprocessableEntityException} (client fault)
67
69
  * Placeholder documentation for UnprocessableEntityException
68
70
  *
71
+ * @throws {@link MediaLiveServiceException}
72
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
69
73
  *
70
74
  */
71
75
  export declare class AcceptInputDeviceTransferCommand extends $Command<AcceptInputDeviceTransferCommandInput, AcceptInputDeviceTransferCommandOutput, MediaLiveClientResolvedConfig> {
@@ -42,6 +42,24 @@ export interface BatchDeleteCommandOutput extends BatchDeleteResponse, __Metadat
42
42
  * };
43
43
  * const command = new BatchDeleteCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // BatchDeleteResponse
46
+ * // Failed: [ // __listOfBatchFailedResultModel
47
+ * // { // BatchFailedResultModel
48
+ * // Arn: "STRING_VALUE",
49
+ * // Code: "STRING_VALUE",
50
+ * // Id: "STRING_VALUE",
51
+ * // Message: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // Successful: [ // __listOfBatchSuccessfulResultModel
55
+ * // { // BatchSuccessfulResultModel
56
+ * // Arn: "STRING_VALUE",
57
+ * // Id: "STRING_VALUE",
58
+ * // State: "STRING_VALUE",
59
+ * // },
60
+ * // ],
61
+ * // };
62
+ *
45
63
  * ```
46
64
  *
47
65
  * @param BatchDeleteCommandInput - {@link BatchDeleteCommandInput}
@@ -74,6 +92,8 @@ export interface BatchDeleteCommandOutput extends BatchDeleteResponse, __Metadat
74
92
  * @throws {@link TooManyRequestsException} (client fault)
75
93
  * Placeholder documentation for TooManyRequestsException
76
94
  *
95
+ * @throws {@link MediaLiveServiceException}
96
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
77
97
  *
78
98
  */
79
99
  export declare class BatchDeleteCommand extends $Command<BatchDeleteCommandInput, BatchDeleteCommandOutput, MediaLiveClientResolvedConfig> {
@@ -36,6 +36,24 @@ export interface BatchStartCommandOutput extends BatchStartResponse, __MetadataB
36
36
  * };
37
37
  * const command = new BatchStartCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // BatchStartResponse
40
+ * // Failed: [ // __listOfBatchFailedResultModel
41
+ * // { // BatchFailedResultModel
42
+ * // Arn: "STRING_VALUE",
43
+ * // Code: "STRING_VALUE",
44
+ * // Id: "STRING_VALUE",
45
+ * // Message: "STRING_VALUE",
46
+ * // },
47
+ * // ],
48
+ * // Successful: [ // __listOfBatchSuccessfulResultModel
49
+ * // { // BatchSuccessfulResultModel
50
+ * // Arn: "STRING_VALUE",
51
+ * // Id: "STRING_VALUE",
52
+ * // State: "STRING_VALUE",
53
+ * // },
54
+ * // ],
55
+ * // };
56
+ *
39
57
  * ```
40
58
  *
41
59
  * @param BatchStartCommandInput - {@link BatchStartCommandInput}
@@ -68,6 +86,8 @@ export interface BatchStartCommandOutput extends BatchStartResponse, __MetadataB
68
86
  * @throws {@link TooManyRequestsException} (client fault)
69
87
  * Placeholder documentation for TooManyRequestsException
70
88
  *
89
+ * @throws {@link MediaLiveServiceException}
90
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
71
91
  *
72
92
  */
73
93
  export declare class BatchStartCommand extends $Command<BatchStartCommandInput, BatchStartCommandOutput, MediaLiveClientResolvedConfig> {
@@ -36,6 +36,24 @@ export interface BatchStopCommandOutput extends BatchStopResponse, __MetadataBea
36
36
  * };
37
37
  * const command = new BatchStopCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // BatchStopResponse
40
+ * // Failed: [ // __listOfBatchFailedResultModel
41
+ * // { // BatchFailedResultModel
42
+ * // Arn: "STRING_VALUE",
43
+ * // Code: "STRING_VALUE",
44
+ * // Id: "STRING_VALUE",
45
+ * // Message: "STRING_VALUE",
46
+ * // },
47
+ * // ],
48
+ * // Successful: [ // __listOfBatchSuccessfulResultModel
49
+ * // { // BatchSuccessfulResultModel
50
+ * // Arn: "STRING_VALUE",
51
+ * // Id: "STRING_VALUE",
52
+ * // State: "STRING_VALUE",
53
+ * // },
54
+ * // ],
55
+ * // };
56
+ *
39
57
  * ```
40
58
  *
41
59
  * @param BatchStopCommandInput - {@link BatchStopCommandInput}
@@ -68,6 +86,8 @@ export interface BatchStopCommandOutput extends BatchStopResponse, __MetadataBea
68
86
  * @throws {@link TooManyRequestsException} (client fault)
69
87
  * Placeholder documentation for TooManyRequestsException
70
88
  *
89
+ * @throws {@link MediaLiveServiceException}
90
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
71
91
  *
72
92
  */
73
93
  export declare class BatchStopCommand extends $Command<BatchStopCommandInput, BatchStopCommandOutput, MediaLiveClientResolvedConfig> {
@@ -165,6 +165,267 @@ export interface BatchUpdateScheduleCommandOutput extends BatchUpdateScheduleRes
165
165
  * };
166
166
  * const command = new BatchUpdateScheduleCommand(input);
167
167
  * const response = await client.send(command);
168
+ * // { // BatchUpdateScheduleResponse
169
+ * // Creates: { // BatchScheduleActionCreateResult
170
+ * // ScheduleActions: [ // __listOfScheduleAction // required
171
+ * // { // ScheduleAction
172
+ * // ActionName: "STRING_VALUE", // required
173
+ * // ScheduleActionSettings: { // ScheduleActionSettings
174
+ * // HlsId3SegmentTaggingSettings: { // HlsId3SegmentTaggingScheduleActionSettings
175
+ * // Tag: "STRING_VALUE",
176
+ * // Id3: "STRING_VALUE",
177
+ * // },
178
+ * // HlsTimedMetadataSettings: { // HlsTimedMetadataScheduleActionSettings
179
+ * // Id3: "STRING_VALUE", // required
180
+ * // },
181
+ * // InputPrepareSettings: { // InputPrepareScheduleActionSettings
182
+ * // InputAttachmentNameReference: "STRING_VALUE",
183
+ * // InputClippingSettings: { // InputClippingSettings
184
+ * // InputTimecodeSource: "ZEROBASED" || "EMBEDDED", // required
185
+ * // StartTimecode: { // StartTimecode
186
+ * // Timecode: "STRING_VALUE",
187
+ * // },
188
+ * // StopTimecode: { // StopTimecode
189
+ * // LastFrameClippingBehavior: "EXCLUDE_LAST_FRAME" || "INCLUDE_LAST_FRAME",
190
+ * // Timecode: "STRING_VALUE",
191
+ * // },
192
+ * // },
193
+ * // UrlPath: [ // __listOf__string
194
+ * // "STRING_VALUE",
195
+ * // ],
196
+ * // },
197
+ * // InputSwitchSettings: { // InputSwitchScheduleActionSettings
198
+ * // InputAttachmentNameReference: "STRING_VALUE", // required
199
+ * // InputClippingSettings: {
200
+ * // InputTimecodeSource: "ZEROBASED" || "EMBEDDED", // required
201
+ * // StartTimecode: {
202
+ * // Timecode: "STRING_VALUE",
203
+ * // },
204
+ * // StopTimecode: {
205
+ * // LastFrameClippingBehavior: "EXCLUDE_LAST_FRAME" || "INCLUDE_LAST_FRAME",
206
+ * // Timecode: "STRING_VALUE",
207
+ * // },
208
+ * // },
209
+ * // UrlPath: [
210
+ * // "STRING_VALUE",
211
+ * // ],
212
+ * // },
213
+ * // MotionGraphicsImageActivateSettings: { // MotionGraphicsActivateScheduleActionSettings
214
+ * // Duration: Number("long"),
215
+ * // PasswordParam: "STRING_VALUE",
216
+ * // Url: "STRING_VALUE",
217
+ * // Username: "STRING_VALUE",
218
+ * // },
219
+ * // MotionGraphicsImageDeactivateSettings: {},
220
+ * // PauseStateSettings: { // PauseStateScheduleActionSettings
221
+ * // Pipelines: [ // __listOfPipelinePauseStateSettings
222
+ * // { // PipelinePauseStateSettings
223
+ * // PipelineId: "PIPELINE_0" || "PIPELINE_1", // required
224
+ * // },
225
+ * // ],
226
+ * // },
227
+ * // Scte35InputSettings: { // Scte35InputScheduleActionSettings
228
+ * // InputAttachmentNameReference: "STRING_VALUE",
229
+ * // Mode: "FIXED" || "FOLLOW_ACTIVE", // required
230
+ * // },
231
+ * // Scte35ReturnToNetworkSettings: { // Scte35ReturnToNetworkScheduleActionSettings
232
+ * // SpliceEventId: Number("long"), // required
233
+ * // },
234
+ * // Scte35SpliceInsertSettings: { // Scte35SpliceInsertScheduleActionSettings
235
+ * // Duration: Number("long"),
236
+ * // SpliceEventId: Number("long"), // required
237
+ * // },
238
+ * // Scte35TimeSignalSettings: { // Scte35TimeSignalScheduleActionSettings
239
+ * // Scte35Descriptors: [ // __listOfScte35Descriptor // required
240
+ * // { // Scte35Descriptor
241
+ * // Scte35DescriptorSettings: { // Scte35DescriptorSettings
242
+ * // SegmentationDescriptorScte35DescriptorSettings: { // Scte35SegmentationDescriptor
243
+ * // DeliveryRestrictions: { // Scte35DeliveryRestrictions
244
+ * // ArchiveAllowedFlag: "ARCHIVE_NOT_ALLOWED" || "ARCHIVE_ALLOWED", // required
245
+ * // DeviceRestrictions: "NONE" || "RESTRICT_GROUP0" || "RESTRICT_GROUP1" || "RESTRICT_GROUP2", // required
246
+ * // NoRegionalBlackoutFlag: "REGIONAL_BLACKOUT" || "NO_REGIONAL_BLACKOUT", // required
247
+ * // WebDeliveryAllowedFlag: "WEB_DELIVERY_NOT_ALLOWED" || "WEB_DELIVERY_ALLOWED", // required
248
+ * // },
249
+ * // SegmentNum: Number("int"),
250
+ * // SegmentationCancelIndicator: "SEGMENTATION_EVENT_NOT_CANCELED" || "SEGMENTATION_EVENT_CANCELED", // required
251
+ * // SegmentationDuration: Number("long"),
252
+ * // SegmentationEventId: Number("long"), // required
253
+ * // SegmentationTypeId: Number("int"),
254
+ * // SegmentationUpid: "STRING_VALUE",
255
+ * // SegmentationUpidType: Number("int"),
256
+ * // SegmentsExpected: Number("int"),
257
+ * // SubSegmentNum: Number("int"),
258
+ * // SubSegmentsExpected: Number("int"),
259
+ * // },
260
+ * // },
261
+ * // },
262
+ * // ],
263
+ * // },
264
+ * // StaticImageActivateSettings: { // StaticImageActivateScheduleActionSettings
265
+ * // Duration: Number("int"),
266
+ * // FadeIn: Number("int"),
267
+ * // FadeOut: Number("int"),
268
+ * // Height: Number("int"),
269
+ * // Image: { // InputLocation
270
+ * // PasswordParam: "STRING_VALUE",
271
+ * // Uri: "STRING_VALUE", // required
272
+ * // Username: "STRING_VALUE",
273
+ * // },
274
+ * // ImageX: Number("int"),
275
+ * // ImageY: Number("int"),
276
+ * // Layer: Number("int"),
277
+ * // Opacity: Number("int"),
278
+ * // Width: Number("int"),
279
+ * // },
280
+ * // StaticImageDeactivateSettings: { // StaticImageDeactivateScheduleActionSettings
281
+ * // FadeOut: Number("int"),
282
+ * // Layer: Number("int"),
283
+ * // },
284
+ * // },
285
+ * // ScheduleActionStartSettings: { // ScheduleActionStartSettings
286
+ * // FixedModeScheduleActionStartSettings: { // FixedModeScheduleActionStartSettings
287
+ * // Time: "STRING_VALUE", // required
288
+ * // },
289
+ * // FollowModeScheduleActionStartSettings: { // FollowModeScheduleActionStartSettings
290
+ * // FollowPoint: "END" || "START", // required
291
+ * // ReferenceActionName: "STRING_VALUE", // required
292
+ * // },
293
+ * // ImmediateModeScheduleActionStartSettings: {},
294
+ * // },
295
+ * // },
296
+ * // ],
297
+ * // },
298
+ * // Deletes: { // BatchScheduleActionDeleteResult
299
+ * // ScheduleActions: [ // required
300
+ * // {
301
+ * // ActionName: "STRING_VALUE", // required
302
+ * // ScheduleActionSettings: {
303
+ * // HlsId3SegmentTaggingSettings: {
304
+ * // Tag: "STRING_VALUE",
305
+ * // Id3: "STRING_VALUE",
306
+ * // },
307
+ * // HlsTimedMetadataSettings: {
308
+ * // Id3: "STRING_VALUE", // required
309
+ * // },
310
+ * // InputPrepareSettings: {
311
+ * // InputAttachmentNameReference: "STRING_VALUE",
312
+ * // InputClippingSettings: {
313
+ * // InputTimecodeSource: "ZEROBASED" || "EMBEDDED", // required
314
+ * // StartTimecode: {
315
+ * // Timecode: "STRING_VALUE",
316
+ * // },
317
+ * // StopTimecode: {
318
+ * // LastFrameClippingBehavior: "EXCLUDE_LAST_FRAME" || "INCLUDE_LAST_FRAME",
319
+ * // Timecode: "STRING_VALUE",
320
+ * // },
321
+ * // },
322
+ * // UrlPath: [
323
+ * // "STRING_VALUE",
324
+ * // ],
325
+ * // },
326
+ * // InputSwitchSettings: {
327
+ * // InputAttachmentNameReference: "STRING_VALUE", // required
328
+ * // InputClippingSettings: {
329
+ * // InputTimecodeSource: "ZEROBASED" || "EMBEDDED", // required
330
+ * // StartTimecode: {
331
+ * // Timecode: "STRING_VALUE",
332
+ * // },
333
+ * // StopTimecode: {
334
+ * // LastFrameClippingBehavior: "EXCLUDE_LAST_FRAME" || "INCLUDE_LAST_FRAME",
335
+ * // Timecode: "STRING_VALUE",
336
+ * // },
337
+ * // },
338
+ * // UrlPath: [
339
+ * // "STRING_VALUE",
340
+ * // ],
341
+ * // },
342
+ * // MotionGraphicsImageActivateSettings: {
343
+ * // Duration: Number("long"),
344
+ * // PasswordParam: "STRING_VALUE",
345
+ * // Url: "STRING_VALUE",
346
+ * // Username: "STRING_VALUE",
347
+ * // },
348
+ * // MotionGraphicsImageDeactivateSettings: {},
349
+ * // PauseStateSettings: {
350
+ * // Pipelines: [
351
+ * // {
352
+ * // PipelineId: "PIPELINE_0" || "PIPELINE_1", // required
353
+ * // },
354
+ * // ],
355
+ * // },
356
+ * // Scte35InputSettings: {
357
+ * // InputAttachmentNameReference: "STRING_VALUE",
358
+ * // Mode: "FIXED" || "FOLLOW_ACTIVE", // required
359
+ * // },
360
+ * // Scte35ReturnToNetworkSettings: {
361
+ * // SpliceEventId: Number("long"), // required
362
+ * // },
363
+ * // Scte35SpliceInsertSettings: {
364
+ * // Duration: Number("long"),
365
+ * // SpliceEventId: Number("long"), // required
366
+ * // },
367
+ * // Scte35TimeSignalSettings: {
368
+ * // Scte35Descriptors: [ // required
369
+ * // {
370
+ * // Scte35DescriptorSettings: {
371
+ * // SegmentationDescriptorScte35DescriptorSettings: {
372
+ * // DeliveryRestrictions: {
373
+ * // ArchiveAllowedFlag: "ARCHIVE_NOT_ALLOWED" || "ARCHIVE_ALLOWED", // required
374
+ * // DeviceRestrictions: "NONE" || "RESTRICT_GROUP0" || "RESTRICT_GROUP1" || "RESTRICT_GROUP2", // required
375
+ * // NoRegionalBlackoutFlag: "REGIONAL_BLACKOUT" || "NO_REGIONAL_BLACKOUT", // required
376
+ * // WebDeliveryAllowedFlag: "WEB_DELIVERY_NOT_ALLOWED" || "WEB_DELIVERY_ALLOWED", // required
377
+ * // },
378
+ * // SegmentNum: Number("int"),
379
+ * // SegmentationCancelIndicator: "SEGMENTATION_EVENT_NOT_CANCELED" || "SEGMENTATION_EVENT_CANCELED", // required
380
+ * // SegmentationDuration: Number("long"),
381
+ * // SegmentationEventId: Number("long"), // required
382
+ * // SegmentationTypeId: Number("int"),
383
+ * // SegmentationUpid: "STRING_VALUE",
384
+ * // SegmentationUpidType: Number("int"),
385
+ * // SegmentsExpected: Number("int"),
386
+ * // SubSegmentNum: Number("int"),
387
+ * // SubSegmentsExpected: Number("int"),
388
+ * // },
389
+ * // },
390
+ * // },
391
+ * // ],
392
+ * // },
393
+ * // StaticImageActivateSettings: {
394
+ * // Duration: Number("int"),
395
+ * // FadeIn: Number("int"),
396
+ * // FadeOut: Number("int"),
397
+ * // Height: Number("int"),
398
+ * // Image: {
399
+ * // PasswordParam: "STRING_VALUE",
400
+ * // Uri: "STRING_VALUE", // required
401
+ * // Username: "STRING_VALUE",
402
+ * // },
403
+ * // ImageX: Number("int"),
404
+ * // ImageY: Number("int"),
405
+ * // Layer: Number("int"),
406
+ * // Opacity: Number("int"),
407
+ * // Width: Number("int"),
408
+ * // },
409
+ * // StaticImageDeactivateSettings: {
410
+ * // FadeOut: Number("int"),
411
+ * // Layer: Number("int"),
412
+ * // },
413
+ * // },
414
+ * // ScheduleActionStartSettings: {
415
+ * // FixedModeScheduleActionStartSettings: {
416
+ * // Time: "STRING_VALUE", // required
417
+ * // },
418
+ * // FollowModeScheduleActionStartSettings: {
419
+ * // FollowPoint: "END" || "START", // required
420
+ * // ReferenceActionName: "STRING_VALUE", // required
421
+ * // },
422
+ * // ImmediateModeScheduleActionStartSettings: {},
423
+ * // },
424
+ * // },
425
+ * // ],
426
+ * // },
427
+ * // };
428
+ *
168
429
  * ```
169
430
  *
170
431
  * @param BatchUpdateScheduleCommandInput - {@link BatchUpdateScheduleCommandInput}
@@ -197,6 +458,8 @@ export interface BatchUpdateScheduleCommandOutput extends BatchUpdateScheduleRes
197
458
  * @throws {@link UnprocessableEntityException} (client fault)
198
459
  * Placeholder documentation for UnprocessableEntityException
199
460
  *
461
+ * @throws {@link MediaLiveServiceException}
462
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
200
463
  *
201
464
  */
202
465
  export declare class BatchUpdateScheduleCommand extends $Command<BatchUpdateScheduleCommandInput, BatchUpdateScheduleCommandOutput, MediaLiveClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface CancelInputDeviceTransferCommandOutput extends CancelInputDevic
31
31
  * };
32
32
  * const command = new CancelInputDeviceTransferCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param CancelInputDeviceTransferCommandInput - {@link CancelInputDeviceTransferCommandInput}
@@ -66,6 +68,8 @@ export interface CancelInputDeviceTransferCommandOutput extends CancelInputDevic
66
68
  * @throws {@link UnprocessableEntityException} (client fault)
67
69
  * Placeholder documentation for UnprocessableEntityException
68
70
  *
71
+ * @throws {@link MediaLiveServiceException}
72
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
69
73
  *
70
74
  */
71
75
  export declare class CancelInputDeviceTransferCommand extends $Command<CancelInputDeviceTransferCommandInput, CancelInputDeviceTransferCommandOutput, MediaLiveClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface ClaimDeviceCommandOutput extends ClaimDeviceResponse, __Metadat
31
31
  * };
32
32
  * const command = new ClaimDeviceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param ClaimDeviceCommandInput - {@link ClaimDeviceCommandInput}
@@ -63,6 +65,8 @@ export interface ClaimDeviceCommandOutput extends ClaimDeviceResponse, __Metadat
63
65
  * @throws {@link UnprocessableEntityException} (client fault)
64
66
  * Placeholder documentation for UnprocessableEntityException
65
67
  *
68
+ * @throws {@link MediaLiveServiceException}
69
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
66
70
  *
67
71
  */
68
72
  export declare class ClaimDeviceCommand extends $Command<ClaimDeviceCommandInput, ClaimDeviceCommandOutput, MediaLiveClientResolvedConfig> {