@aws-sdk/client-medialive 3.325.0 → 3.327.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 +7 -7
@@ -31,6 +31,57 @@ export interface DescribeInputCommandOutput extends DescribeInputResponse, __Met
31
31
  * };
32
32
  * const command = new DescribeInputCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeInputResponse
35
+ * // Arn: "STRING_VALUE",
36
+ * // AttachedChannels: [ // __listOf__string
37
+ * // "STRING_VALUE",
38
+ * // ],
39
+ * // Destinations: [ // __listOfInputDestination
40
+ * // { // InputDestination
41
+ * // Ip: "STRING_VALUE",
42
+ * // Port: "STRING_VALUE",
43
+ * // Url: "STRING_VALUE",
44
+ * // Vpc: { // InputDestinationVpc
45
+ * // AvailabilityZone: "STRING_VALUE",
46
+ * // NetworkInterfaceId: "STRING_VALUE",
47
+ * // },
48
+ * // },
49
+ * // ],
50
+ * // Id: "STRING_VALUE",
51
+ * // InputClass: "STANDARD" || "SINGLE_PIPELINE",
52
+ * // InputDevices: [ // __listOfInputDeviceSettings
53
+ * // { // InputDeviceSettings
54
+ * // Id: "STRING_VALUE",
55
+ * // },
56
+ * // ],
57
+ * // InputPartnerIds: [
58
+ * // "STRING_VALUE",
59
+ * // ],
60
+ * // InputSourceType: "STATIC" || "DYNAMIC",
61
+ * // MediaConnectFlows: [ // __listOfMediaConnectFlow
62
+ * // { // MediaConnectFlow
63
+ * // FlowArn: "STRING_VALUE",
64
+ * // },
65
+ * // ],
66
+ * // Name: "STRING_VALUE",
67
+ * // RoleArn: "STRING_VALUE",
68
+ * // SecurityGroups: [
69
+ * // "STRING_VALUE",
70
+ * // ],
71
+ * // Sources: [ // __listOfInputSource
72
+ * // { // InputSource
73
+ * // PasswordParam: "STRING_VALUE",
74
+ * // Url: "STRING_VALUE",
75
+ * // Username: "STRING_VALUE",
76
+ * // },
77
+ * // ],
78
+ * // State: "CREATING" || "DETACHED" || "ATTACHED" || "DELETING" || "DELETED",
79
+ * // Tags: { // Tags
80
+ * // "<keys>": "STRING_VALUE",
81
+ * // },
82
+ * // Type: "UDP_PUSH" || "RTP_PUSH" || "RTMP_PUSH" || "RTMP_PULL" || "URL_PULL" || "MP4_FILE" || "MEDIACONNECT" || "INPUT_DEVICE" || "AWS_CDI" || "TS_FILE",
83
+ * // };
84
+ *
34
85
  * ```
35
86
  *
36
87
  * @param DescribeInputCommandInput - {@link DescribeInputCommandInput}
@@ -60,6 +111,8 @@ export interface DescribeInputCommandOutput extends DescribeInputResponse, __Met
60
111
  * @throws {@link TooManyRequestsException} (client fault)
61
112
  * Placeholder documentation for TooManyRequestsException
62
113
  *
114
+ * @throws {@link MediaLiveServiceException}
115
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
63
116
  *
64
117
  */
65
118
  export declare class DescribeInputCommand extends $Command<DescribeInputCommandInput, DescribeInputCommandOutput, MediaLiveClientResolvedConfig> {
@@ -31,6 +31,52 @@ export interface DescribeInputDeviceCommandOutput extends DescribeInputDeviceRes
31
31
  * };
32
32
  * const command = new DescribeInputDeviceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeInputDeviceResponse
35
+ * // Arn: "STRING_VALUE",
36
+ * // ConnectionState: "DISCONNECTED" || "CONNECTED",
37
+ * // DeviceSettingsSyncState: "SYNCED" || "SYNCING",
38
+ * // DeviceUpdateStatus: "UP_TO_DATE" || "NOT_UP_TO_DATE" || "UPDATING",
39
+ * // HdDeviceSettings: { // InputDeviceHdSettings
40
+ * // ActiveInput: "HDMI" || "SDI",
41
+ * // ConfiguredInput: "AUTO" || "HDMI" || "SDI",
42
+ * // DeviceState: "IDLE" || "STREAMING",
43
+ * // Framerate: Number("double"),
44
+ * // Height: Number("int"),
45
+ * // MaxBitrate: Number("int"),
46
+ * // ScanType: "INTERLACED" || "PROGRESSIVE",
47
+ * // Width: Number("int"),
48
+ * // LatencyMs: Number("int"),
49
+ * // },
50
+ * // Id: "STRING_VALUE",
51
+ * // MacAddress: "STRING_VALUE",
52
+ * // Name: "STRING_VALUE",
53
+ * // NetworkSettings: { // InputDeviceNetworkSettings
54
+ * // DnsAddresses: [ // __listOf__string
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // Gateway: "STRING_VALUE",
58
+ * // IpAddress: "STRING_VALUE",
59
+ * // IpScheme: "STATIC" || "DHCP",
60
+ * // SubnetMask: "STRING_VALUE",
61
+ * // },
62
+ * // SerialNumber: "STRING_VALUE",
63
+ * // Type: "HD" || "UHD",
64
+ * // UhdDeviceSettings: { // InputDeviceUhdSettings
65
+ * // ActiveInput: "HDMI" || "SDI",
66
+ * // ConfiguredInput: "AUTO" || "HDMI" || "SDI",
67
+ * // DeviceState: "IDLE" || "STREAMING",
68
+ * // Framerate: Number("double"),
69
+ * // Height: Number("int"),
70
+ * // MaxBitrate: Number("int"),
71
+ * // ScanType: "INTERLACED" || "PROGRESSIVE",
72
+ * // Width: Number("int"),
73
+ * // LatencyMs: Number("int"),
74
+ * // },
75
+ * // Tags: { // Tags
76
+ * // "<keys>": "STRING_VALUE",
77
+ * // },
78
+ * // };
79
+ *
34
80
  * ```
35
81
  *
36
82
  * @param DescribeInputDeviceCommandInput - {@link DescribeInputDeviceCommandInput}
@@ -60,6 +106,8 @@ export interface DescribeInputDeviceCommandOutput extends DescribeInputDeviceRes
60
106
  * @throws {@link TooManyRequestsException} (client fault)
61
107
  * Placeholder documentation for TooManyRequestsException
62
108
  *
109
+ * @throws {@link MediaLiveServiceException}
110
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
63
111
  *
64
112
  */
65
113
  export declare class DescribeInputDeviceCommand extends $Command<DescribeInputDeviceCommandInput, DescribeInputDeviceCommandOutput, MediaLiveClientResolvedConfig> {
@@ -32,6 +32,14 @@ export interface DescribeInputDeviceThumbnailCommandOutput extends __WithSdkStre
32
32
  * };
33
33
  * const command = new DescribeInputDeviceThumbnailCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeInputDeviceThumbnailResponse
36
+ * // Body: "STREAMING_BLOB_VALUE",
37
+ * // ContentType: "image/jpeg",
38
+ * // ContentLength: Number("long"),
39
+ * // ETag: "STRING_VALUE",
40
+ * // LastModified: new Date("TIMESTAMP"),
41
+ * // };
42
+ *
35
43
  * ```
36
44
  *
37
45
  * @param DescribeInputDeviceThumbnailCommandInput - {@link DescribeInputDeviceThumbnailCommandInput}
@@ -61,6 +69,8 @@ export interface DescribeInputDeviceThumbnailCommandOutput extends __WithSdkStre
61
69
  * @throws {@link TooManyRequestsException} (client fault)
62
70
  * Placeholder documentation for TooManyRequestsException
63
71
  *
72
+ * @throws {@link MediaLiveServiceException}
73
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
64
74
  *
65
75
  */
66
76
  export declare class DescribeInputDeviceThumbnailCommand extends $Command<DescribeInputDeviceThumbnailCommandInput, DescribeInputDeviceThumbnailCommandOutput, MediaLiveClientResolvedConfig> {
@@ -31,6 +31,23 @@ export interface DescribeInputSecurityGroupCommandOutput extends DescribeInputSe
31
31
  * };
32
32
  * const command = new DescribeInputSecurityGroupCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeInputSecurityGroupResponse
35
+ * // Arn: "STRING_VALUE",
36
+ * // Id: "STRING_VALUE",
37
+ * // Inputs: [ // __listOf__string
38
+ * // "STRING_VALUE",
39
+ * // ],
40
+ * // State: "IDLE" || "IN_USE" || "UPDATING" || "DELETED",
41
+ * // Tags: { // Tags
42
+ * // "<keys>": "STRING_VALUE",
43
+ * // },
44
+ * // WhitelistRules: [ // __listOfInputWhitelistRule
45
+ * // { // InputWhitelistRule
46
+ * // Cidr: "STRING_VALUE",
47
+ * // },
48
+ * // ],
49
+ * // };
50
+ *
34
51
  * ```
35
52
  *
36
53
  * @param DescribeInputSecurityGroupCommandInput - {@link DescribeInputSecurityGroupCommandInput}
@@ -60,6 +77,8 @@ export interface DescribeInputSecurityGroupCommandOutput extends DescribeInputSe
60
77
  * @throws {@link TooManyRequestsException} (client fault)
61
78
  * Placeholder documentation for TooManyRequestsException
62
79
  *
80
+ * @throws {@link MediaLiveServiceException}
81
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
63
82
  *
64
83
  */
65
84
  export declare class DescribeInputSecurityGroupCommand extends $Command<DescribeInputSecurityGroupCommandInput, DescribeInputSecurityGroupCommandOutput, MediaLiveClientResolvedConfig> {
@@ -31,6 +31,34 @@ export interface DescribeMultiplexCommandOutput extends DescribeMultiplexRespons
31
31
  * };
32
32
  * const command = new DescribeMultiplexCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeMultiplexResponse
35
+ * // Arn: "STRING_VALUE",
36
+ * // AvailabilityZones: [ // __listOf__string
37
+ * // "STRING_VALUE",
38
+ * // ],
39
+ * // Destinations: [ // __listOfMultiplexOutputDestination
40
+ * // { // MultiplexOutputDestination
41
+ * // MediaConnectSettings: { // MultiplexMediaConnectOutputDestinationSettings
42
+ * // EntitlementArn: "STRING_VALUE",
43
+ * // },
44
+ * // },
45
+ * // ],
46
+ * // Id: "STRING_VALUE",
47
+ * // MultiplexSettings: { // MultiplexSettings
48
+ * // MaximumVideoBufferDelayMilliseconds: Number("int"),
49
+ * // TransportStreamBitrate: Number("int"), // required
50
+ * // TransportStreamId: Number("int"), // required
51
+ * // TransportStreamReservedBitrate: Number("int"),
52
+ * // },
53
+ * // Name: "STRING_VALUE",
54
+ * // PipelinesRunningCount: Number("int"),
55
+ * // ProgramCount: Number("int"),
56
+ * // State: "CREATING" || "CREATE_FAILED" || "IDLE" || "STARTING" || "RUNNING" || "RECOVERING" || "STOPPING" || "DELETING" || "DELETED",
57
+ * // Tags: { // Tags
58
+ * // "<keys>": "STRING_VALUE",
59
+ * // },
60
+ * // };
61
+ *
34
62
  * ```
35
63
  *
36
64
  * @param DescribeMultiplexCommandInput - {@link DescribeMultiplexCommandInput}
@@ -60,6 +88,8 @@ export interface DescribeMultiplexCommandOutput extends DescribeMultiplexRespons
60
88
  * @throws {@link TooManyRequestsException} (client fault)
61
89
  * Placeholder documentation for TooManyRequestsException
62
90
  *
91
+ * @throws {@link MediaLiveServiceException}
92
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
63
93
  *
64
94
  */
65
95
  export declare class DescribeMultiplexCommand extends $Command<DescribeMultiplexCommandInput, DescribeMultiplexCommandOutput, MediaLiveClientResolvedConfig> {
@@ -32,6 +32,56 @@ export interface DescribeMultiplexProgramCommandOutput extends DescribeMultiplex
32
32
  * };
33
33
  * const command = new DescribeMultiplexProgramCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeMultiplexProgramResponse
36
+ * // ChannelId: "STRING_VALUE",
37
+ * // MultiplexProgramSettings: { // MultiplexProgramSettings
38
+ * // PreferredChannelPipeline: "CURRENTLY_ACTIVE" || "PIPELINE_0" || "PIPELINE_1",
39
+ * // ProgramNumber: Number("int"), // required
40
+ * // ServiceDescriptor: { // MultiplexProgramServiceDescriptor
41
+ * // ProviderName: "STRING_VALUE", // required
42
+ * // ServiceName: "STRING_VALUE", // required
43
+ * // },
44
+ * // VideoSettings: { // MultiplexVideoSettings
45
+ * // ConstantBitrate: Number("int"),
46
+ * // StatmuxSettings: { // MultiplexStatmuxVideoSettings
47
+ * // MaximumBitrate: Number("int"),
48
+ * // MinimumBitrate: Number("int"),
49
+ * // Priority: Number("int"),
50
+ * // },
51
+ * // },
52
+ * // },
53
+ * // PacketIdentifiersMap: { // MultiplexProgramPacketIdentifiersMap
54
+ * // AudioPids: [ // __listOf__integer
55
+ * // Number("int"),
56
+ * // ],
57
+ * // DvbSubPids: [
58
+ * // Number("int"),
59
+ * // ],
60
+ * // DvbTeletextPid: Number("int"),
61
+ * // EtvPlatformPid: Number("int"),
62
+ * // EtvSignalPid: Number("int"),
63
+ * // KlvDataPids: [
64
+ * // Number("int"),
65
+ * // ],
66
+ * // PcrPid: Number("int"),
67
+ * // PmtPid: Number("int"),
68
+ * // PrivateMetadataPid: Number("int"),
69
+ * // Scte27Pids: [
70
+ * // Number("int"),
71
+ * // ],
72
+ * // Scte35Pid: Number("int"),
73
+ * // TimedMetadataPid: Number("int"),
74
+ * // VideoPid: Number("int"),
75
+ * // },
76
+ * // PipelineDetails: [ // __listOfMultiplexProgramPipelineDetail
77
+ * // { // MultiplexProgramPipelineDetail
78
+ * // ActiveChannelPipeline: "STRING_VALUE",
79
+ * // PipelineId: "STRING_VALUE",
80
+ * // },
81
+ * // ],
82
+ * // ProgramName: "STRING_VALUE",
83
+ * // };
84
+ *
35
85
  * ```
36
86
  *
37
87
  * @param DescribeMultiplexProgramCommandInput - {@link DescribeMultiplexProgramCommandInput}
@@ -61,6 +111,8 @@ export interface DescribeMultiplexProgramCommandOutput extends DescribeMultiplex
61
111
  * @throws {@link TooManyRequestsException} (client fault)
62
112
  * Placeholder documentation for TooManyRequestsException
63
113
  *
114
+ * @throws {@link MediaLiveServiceException}
115
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
64
116
  *
65
117
  */
66
118
  export declare class DescribeMultiplexProgramCommand extends $Command<DescribeMultiplexProgramCommandInput, DescribeMultiplexProgramCommandOutput, MediaLiveClientResolvedConfig> {
@@ -31,6 +31,29 @@ export interface DescribeOfferingCommandOutput extends DescribeOfferingResponse,
31
31
  * };
32
32
  * const command = new DescribeOfferingCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeOfferingResponse
35
+ * // Arn: "STRING_VALUE",
36
+ * // CurrencyCode: "STRING_VALUE",
37
+ * // Duration: Number("int"),
38
+ * // DurationUnits: "MONTHS",
39
+ * // FixedPrice: Number("double"),
40
+ * // OfferingDescription: "STRING_VALUE",
41
+ * // OfferingId: "STRING_VALUE",
42
+ * // OfferingType: "NO_UPFRONT",
43
+ * // Region: "STRING_VALUE",
44
+ * // ResourceSpecification: { // ReservationResourceSpecification
45
+ * // ChannelClass: "STANDARD" || "SINGLE_PIPELINE",
46
+ * // Codec: "MPEG2" || "AVC" || "HEVC" || "AUDIO" || "LINK",
47
+ * // MaximumBitrate: "MAX_10_MBPS" || "MAX_20_MBPS" || "MAX_50_MBPS",
48
+ * // MaximumFramerate: "MAX_30_FPS" || "MAX_60_FPS",
49
+ * // Resolution: "SD" || "HD" || "FHD" || "UHD",
50
+ * // ResourceType: "INPUT" || "OUTPUT" || "MULTIPLEX" || "CHANNEL",
51
+ * // SpecialFeature: "ADVANCED_AUDIO" || "AUDIO_NORMALIZATION" || "MGHD" || "MGUHD",
52
+ * // VideoQuality: "STANDARD" || "ENHANCED" || "PREMIUM",
53
+ * // },
54
+ * // UsagePrice: Number("double"),
55
+ * // };
56
+ *
34
57
  * ```
35
58
  *
36
59
  * @param DescribeOfferingCommandInput - {@link DescribeOfferingCommandInput}
@@ -60,6 +83,8 @@ export interface DescribeOfferingCommandOutput extends DescribeOfferingResponse,
60
83
  * @throws {@link TooManyRequestsException} (client fault)
61
84
  * Placeholder documentation for TooManyRequestsException
62
85
  *
86
+ * @throws {@link MediaLiveServiceException}
87
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
63
88
  *
64
89
  */
65
90
  export declare class DescribeOfferingCommand extends $Command<DescribeOfferingCommandInput, DescribeOfferingCommandOutput, MediaLiveClientResolvedConfig> {
@@ -31,6 +31,42 @@ export interface DescribeReservationCommandOutput extends DescribeReservationRes
31
31
  * };
32
32
  * const command = new DescribeReservationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeReservationResponse
35
+ * // Arn: "STRING_VALUE",
36
+ * // Count: Number("int"),
37
+ * // CurrencyCode: "STRING_VALUE",
38
+ * // Duration: Number("int"),
39
+ * // DurationUnits: "MONTHS",
40
+ * // End: "STRING_VALUE",
41
+ * // FixedPrice: Number("double"),
42
+ * // Name: "STRING_VALUE",
43
+ * // OfferingDescription: "STRING_VALUE",
44
+ * // OfferingId: "STRING_VALUE",
45
+ * // OfferingType: "NO_UPFRONT",
46
+ * // Region: "STRING_VALUE",
47
+ * // RenewalSettings: { // RenewalSettings
48
+ * // AutomaticRenewal: "DISABLED" || "ENABLED" || "UNAVAILABLE",
49
+ * // RenewalCount: Number("int"),
50
+ * // },
51
+ * // ReservationId: "STRING_VALUE",
52
+ * // ResourceSpecification: { // ReservationResourceSpecification
53
+ * // ChannelClass: "STANDARD" || "SINGLE_PIPELINE",
54
+ * // Codec: "MPEG2" || "AVC" || "HEVC" || "AUDIO" || "LINK",
55
+ * // MaximumBitrate: "MAX_10_MBPS" || "MAX_20_MBPS" || "MAX_50_MBPS",
56
+ * // MaximumFramerate: "MAX_30_FPS" || "MAX_60_FPS",
57
+ * // Resolution: "SD" || "HD" || "FHD" || "UHD",
58
+ * // ResourceType: "INPUT" || "OUTPUT" || "MULTIPLEX" || "CHANNEL",
59
+ * // SpecialFeature: "ADVANCED_AUDIO" || "AUDIO_NORMALIZATION" || "MGHD" || "MGUHD",
60
+ * // VideoQuality: "STANDARD" || "ENHANCED" || "PREMIUM",
61
+ * // },
62
+ * // Start: "STRING_VALUE",
63
+ * // State: "ACTIVE" || "EXPIRED" || "CANCELED" || "DELETED",
64
+ * // Tags: { // Tags
65
+ * // "<keys>": "STRING_VALUE",
66
+ * // },
67
+ * // UsagePrice: Number("double"),
68
+ * // };
69
+ *
34
70
  * ```
35
71
  *
36
72
  * @param DescribeReservationCommandInput - {@link DescribeReservationCommandInput}
@@ -60,6 +96,8 @@ export interface DescribeReservationCommandOutput extends DescribeReservationRes
60
96
  * @throws {@link TooManyRequestsException} (client fault)
61
97
  * Placeholder documentation for TooManyRequestsException
62
98
  *
99
+ * @throws {@link MediaLiveServiceException}
100
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
63
101
  *
64
102
  */
65
103
  export declare class DescribeReservationCommand extends $Command<DescribeReservationCommandInput, DescribeReservationCommandOutput, MediaLiveClientResolvedConfig> {
@@ -33,6 +33,137 @@ export interface DescribeScheduleCommandOutput extends DescribeScheduleResponse,
33
33
  * };
34
34
  * const command = new DescribeScheduleCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeScheduleResponse
37
+ * // NextToken: "STRING_VALUE",
38
+ * // ScheduleActions: [ // __listOfScheduleAction
39
+ * // { // ScheduleAction
40
+ * // ActionName: "STRING_VALUE", // required
41
+ * // ScheduleActionSettings: { // ScheduleActionSettings
42
+ * // HlsId3SegmentTaggingSettings: { // HlsId3SegmentTaggingScheduleActionSettings
43
+ * // Tag: "STRING_VALUE",
44
+ * // Id3: "STRING_VALUE",
45
+ * // },
46
+ * // HlsTimedMetadataSettings: { // HlsTimedMetadataScheduleActionSettings
47
+ * // Id3: "STRING_VALUE", // required
48
+ * // },
49
+ * // InputPrepareSettings: { // InputPrepareScheduleActionSettings
50
+ * // InputAttachmentNameReference: "STRING_VALUE",
51
+ * // InputClippingSettings: { // InputClippingSettings
52
+ * // InputTimecodeSource: "ZEROBASED" || "EMBEDDED", // required
53
+ * // StartTimecode: { // StartTimecode
54
+ * // Timecode: "STRING_VALUE",
55
+ * // },
56
+ * // StopTimecode: { // StopTimecode
57
+ * // LastFrameClippingBehavior: "EXCLUDE_LAST_FRAME" || "INCLUDE_LAST_FRAME",
58
+ * // Timecode: "STRING_VALUE",
59
+ * // },
60
+ * // },
61
+ * // UrlPath: [ // __listOf__string
62
+ * // "STRING_VALUE",
63
+ * // ],
64
+ * // },
65
+ * // InputSwitchSettings: { // InputSwitchScheduleActionSettings
66
+ * // InputAttachmentNameReference: "STRING_VALUE", // required
67
+ * // InputClippingSettings: {
68
+ * // InputTimecodeSource: "ZEROBASED" || "EMBEDDED", // required
69
+ * // StartTimecode: {
70
+ * // Timecode: "STRING_VALUE",
71
+ * // },
72
+ * // StopTimecode: {
73
+ * // LastFrameClippingBehavior: "EXCLUDE_LAST_FRAME" || "INCLUDE_LAST_FRAME",
74
+ * // Timecode: "STRING_VALUE",
75
+ * // },
76
+ * // },
77
+ * // UrlPath: [
78
+ * // "STRING_VALUE",
79
+ * // ],
80
+ * // },
81
+ * // MotionGraphicsImageActivateSettings: { // MotionGraphicsActivateScheduleActionSettings
82
+ * // Duration: Number("long"),
83
+ * // PasswordParam: "STRING_VALUE",
84
+ * // Url: "STRING_VALUE",
85
+ * // Username: "STRING_VALUE",
86
+ * // },
87
+ * // MotionGraphicsImageDeactivateSettings: {},
88
+ * // PauseStateSettings: { // PauseStateScheduleActionSettings
89
+ * // Pipelines: [ // __listOfPipelinePauseStateSettings
90
+ * // { // PipelinePauseStateSettings
91
+ * // PipelineId: "PIPELINE_0" || "PIPELINE_1", // required
92
+ * // },
93
+ * // ],
94
+ * // },
95
+ * // Scte35InputSettings: { // Scte35InputScheduleActionSettings
96
+ * // InputAttachmentNameReference: "STRING_VALUE",
97
+ * // Mode: "FIXED" || "FOLLOW_ACTIVE", // required
98
+ * // },
99
+ * // Scte35ReturnToNetworkSettings: { // Scte35ReturnToNetworkScheduleActionSettings
100
+ * // SpliceEventId: Number("long"), // required
101
+ * // },
102
+ * // Scte35SpliceInsertSettings: { // Scte35SpliceInsertScheduleActionSettings
103
+ * // Duration: Number("long"),
104
+ * // SpliceEventId: Number("long"), // required
105
+ * // },
106
+ * // Scte35TimeSignalSettings: { // Scte35TimeSignalScheduleActionSettings
107
+ * // Scte35Descriptors: [ // __listOfScte35Descriptor // required
108
+ * // { // Scte35Descriptor
109
+ * // Scte35DescriptorSettings: { // Scte35DescriptorSettings
110
+ * // SegmentationDescriptorScte35DescriptorSettings: { // Scte35SegmentationDescriptor
111
+ * // DeliveryRestrictions: { // Scte35DeliveryRestrictions
112
+ * // ArchiveAllowedFlag: "ARCHIVE_NOT_ALLOWED" || "ARCHIVE_ALLOWED", // required
113
+ * // DeviceRestrictions: "NONE" || "RESTRICT_GROUP0" || "RESTRICT_GROUP1" || "RESTRICT_GROUP2", // required
114
+ * // NoRegionalBlackoutFlag: "REGIONAL_BLACKOUT" || "NO_REGIONAL_BLACKOUT", // required
115
+ * // WebDeliveryAllowedFlag: "WEB_DELIVERY_NOT_ALLOWED" || "WEB_DELIVERY_ALLOWED", // required
116
+ * // },
117
+ * // SegmentNum: Number("int"),
118
+ * // SegmentationCancelIndicator: "SEGMENTATION_EVENT_NOT_CANCELED" || "SEGMENTATION_EVENT_CANCELED", // required
119
+ * // SegmentationDuration: Number("long"),
120
+ * // SegmentationEventId: Number("long"), // required
121
+ * // SegmentationTypeId: Number("int"),
122
+ * // SegmentationUpid: "STRING_VALUE",
123
+ * // SegmentationUpidType: Number("int"),
124
+ * // SegmentsExpected: Number("int"),
125
+ * // SubSegmentNum: Number("int"),
126
+ * // SubSegmentsExpected: Number("int"),
127
+ * // },
128
+ * // },
129
+ * // },
130
+ * // ],
131
+ * // },
132
+ * // StaticImageActivateSettings: { // StaticImageActivateScheduleActionSettings
133
+ * // Duration: Number("int"),
134
+ * // FadeIn: Number("int"),
135
+ * // FadeOut: Number("int"),
136
+ * // Height: Number("int"),
137
+ * // Image: { // InputLocation
138
+ * // PasswordParam: "STRING_VALUE",
139
+ * // Uri: "STRING_VALUE", // required
140
+ * // Username: "STRING_VALUE",
141
+ * // },
142
+ * // ImageX: Number("int"),
143
+ * // ImageY: Number("int"),
144
+ * // Layer: Number("int"),
145
+ * // Opacity: Number("int"),
146
+ * // Width: Number("int"),
147
+ * // },
148
+ * // StaticImageDeactivateSettings: { // StaticImageDeactivateScheduleActionSettings
149
+ * // FadeOut: Number("int"),
150
+ * // Layer: Number("int"),
151
+ * // },
152
+ * // },
153
+ * // ScheduleActionStartSettings: { // ScheduleActionStartSettings
154
+ * // FixedModeScheduleActionStartSettings: { // FixedModeScheduleActionStartSettings
155
+ * // Time: "STRING_VALUE", // required
156
+ * // },
157
+ * // FollowModeScheduleActionStartSettings: { // FollowModeScheduleActionStartSettings
158
+ * // FollowPoint: "END" || "START", // required
159
+ * // ReferenceActionName: "STRING_VALUE", // required
160
+ * // },
161
+ * // ImmediateModeScheduleActionStartSettings: {},
162
+ * // },
163
+ * // },
164
+ * // ],
165
+ * // };
166
+ *
36
167
  * ```
37
168
  *
38
169
  * @param DescribeScheduleCommandInput - {@link DescribeScheduleCommandInput}
@@ -62,6 +193,8 @@ export interface DescribeScheduleCommandOutput extends DescribeScheduleResponse,
62
193
  * @throws {@link TooManyRequestsException} (client fault)
63
194
  * Placeholder documentation for TooManyRequestsException
64
195
  *
196
+ * @throws {@link MediaLiveServiceException}
197
+ * <p>Base exception class for all service exceptions from MediaLive service.</p>
65
198
  *
66
199
  */
67
200
  export declare class DescribeScheduleCommand extends $Command<DescribeScheduleCommandInput, DescribeScheduleCommandOutput, MediaLiveClientResolvedConfig> {