@aws-sdk/client-mediapackagev2 3.681.0 → 3.682.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.
|
@@ -75,6 +75,20 @@ declare const CancelHarvestJobCommand_base: {
|
|
|
75
75
|
* <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
|
|
76
76
|
*
|
|
77
77
|
* @public
|
|
78
|
+
* @example Cancel a Harvest Job
|
|
79
|
+
* ```javascript
|
|
80
|
+
* //
|
|
81
|
+
* const input = {
|
|
82
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
83
|
+
* "ChannelName": "exampleChannelName",
|
|
84
|
+
* "HarvestJobName": "HarvestJobName",
|
|
85
|
+
* "OriginEndpointName": "exampleOriginEndpointName"
|
|
86
|
+
* };
|
|
87
|
+
* const command = new CancelHarvestJobCommand(input);
|
|
88
|
+
* await client.send(command);
|
|
89
|
+
* // example id: example-1
|
|
90
|
+
* ```
|
|
91
|
+
*
|
|
78
92
|
*/
|
|
79
93
|
export declare class CancelHarvestJobCommand extends CancelHarvestJobCommand_base {
|
|
80
94
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -151,6 +151,92 @@ declare const CreateHarvestJobCommand_base: {
|
|
|
151
151
|
* <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
|
|
152
152
|
*
|
|
153
153
|
* @public
|
|
154
|
+
* @example Creating a Harvest Job
|
|
155
|
+
* ```javascript
|
|
156
|
+
* //
|
|
157
|
+
* const input = {
|
|
158
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
159
|
+
* "ChannelName": "exampleChannelName",
|
|
160
|
+
* "Description": "Example HarvestJob description",
|
|
161
|
+
* "Destination": {
|
|
162
|
+
* "S3Destination": {
|
|
163
|
+
* "BucketName": "harvestJobS3DestinationBucket",
|
|
164
|
+
* "DestinationPath": "manifests"
|
|
165
|
+
* }
|
|
166
|
+
* },
|
|
167
|
+
* "HarvestedManifests": {
|
|
168
|
+
* "DashManifests": [
|
|
169
|
+
* {
|
|
170
|
+
* "ManifestName": "DashManifest"
|
|
171
|
+
* }
|
|
172
|
+
* ],
|
|
173
|
+
* "HlsManifests": [
|
|
174
|
+
* {
|
|
175
|
+
* "ManifestName": "HlsManifest"
|
|
176
|
+
* }
|
|
177
|
+
* ],
|
|
178
|
+
* "LowLatencyHlsManifests": [
|
|
179
|
+
* {
|
|
180
|
+
* "ManifestName": "LowLatencyHlsManifest"
|
|
181
|
+
* }
|
|
182
|
+
* ]
|
|
183
|
+
* },
|
|
184
|
+
* "OriginEndpointName": "exampleOriginEndpointName",
|
|
185
|
+
* "ScheduleConfiguration": {
|
|
186
|
+
* "EndTime": "2024-05-28T12:00:00.00Z",
|
|
187
|
+
* "StartTime": "2024-05-28T06:00:00.00Z"
|
|
188
|
+
* }
|
|
189
|
+
* };
|
|
190
|
+
* const command = new CreateHarvestJobCommand(input);
|
|
191
|
+
* const response = await client.send(command);
|
|
192
|
+
* /* response ==
|
|
193
|
+
* {
|
|
194
|
+
* "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName",
|
|
195
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
196
|
+
* "ChannelName": "exampleChannelName",
|
|
197
|
+
* "CreatedAt": "2024-05-28T09:36:00.00Z",
|
|
198
|
+
* "Description": "Example HarvestJob description",
|
|
199
|
+
* "Destination": {
|
|
200
|
+
* "S3Destination": {
|
|
201
|
+
* "BucketName": "harvestJobS3DestinationBucket",
|
|
202
|
+
* "DestinationPath": "manifests"
|
|
203
|
+
* }
|
|
204
|
+
* },
|
|
205
|
+
* "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
|
|
206
|
+
* "HarvestJobName": "HarvestJobName",
|
|
207
|
+
* "HarvestedManifests": {
|
|
208
|
+
* "DashManifests": [
|
|
209
|
+
* {
|
|
210
|
+
* "ManifestName": "DashManifest"
|
|
211
|
+
* }
|
|
212
|
+
* ],
|
|
213
|
+
* "HlsManifests": [
|
|
214
|
+
* {
|
|
215
|
+
* "ManifestName": "HlsManifest"
|
|
216
|
+
* }
|
|
217
|
+
* ],
|
|
218
|
+
* "LowLatencyHlsManifests": [
|
|
219
|
+
* {
|
|
220
|
+
* "ManifestName": "LowLatencyHlsManifest"
|
|
221
|
+
* }
|
|
222
|
+
* ]
|
|
223
|
+
* },
|
|
224
|
+
* "ModifiedAt": "2024-05-28T09:36:00.00Z",
|
|
225
|
+
* "OriginEndpointName": "exampleOriginEndpointName",
|
|
226
|
+
* "ScheduleConfiguration": {
|
|
227
|
+
* "EndTime": "2024-05-28T12:00:00.00Z",
|
|
228
|
+
* "StartTime": "2024-05-28T06:00:00.00Z"
|
|
229
|
+
* },
|
|
230
|
+
* "Status": "QUEUED",
|
|
231
|
+
* "Tags": {
|
|
232
|
+
* "key1": "value1",
|
|
233
|
+
* "key2": "value2"
|
|
234
|
+
* }
|
|
235
|
+
* }
|
|
236
|
+
* *\/
|
|
237
|
+
* // example id: example-1
|
|
238
|
+
* ```
|
|
239
|
+
*
|
|
154
240
|
*/
|
|
155
241
|
export declare class CreateHarvestJobCommand extends CreateHarvestJobCommand_base {
|
|
156
242
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -113,6 +113,65 @@ declare const GetHarvestJobCommand_base: {
|
|
|
113
113
|
* <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
|
|
114
114
|
*
|
|
115
115
|
* @public
|
|
116
|
+
* @example Getting a Harvest Job
|
|
117
|
+
* ```javascript
|
|
118
|
+
* //
|
|
119
|
+
* const input = {
|
|
120
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
121
|
+
* "ChannelName": "exampleChannelName",
|
|
122
|
+
* "HarvestJobName": "HarvestJobName",
|
|
123
|
+
* "OriginEndpointName": "exampleOriginEndpointName"
|
|
124
|
+
* };
|
|
125
|
+
* const command = new GetHarvestJobCommand(input);
|
|
126
|
+
* const response = await client.send(command);
|
|
127
|
+
* /* response ==
|
|
128
|
+
* {
|
|
129
|
+
* "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName",
|
|
130
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
131
|
+
* "ChannelName": "exampleChannelName",
|
|
132
|
+
* "CreatedAt": "2024-05-28T09:36:00.00Z",
|
|
133
|
+
* "Description": "Example HarvestJob description",
|
|
134
|
+
* "Destination": {
|
|
135
|
+
* "S3Destination": {
|
|
136
|
+
* "BucketName": "harvestJobS3DestinationBucket",
|
|
137
|
+
* "DestinationPath": "manifests"
|
|
138
|
+
* }
|
|
139
|
+
* },
|
|
140
|
+
* "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
|
|
141
|
+
* "HarvestJobName": "HarvestJobName",
|
|
142
|
+
* "HarvestedManifests": {
|
|
143
|
+
* "DashManifests": [
|
|
144
|
+
* {
|
|
145
|
+
* "ManifestName": "DashManifest"
|
|
146
|
+
* }
|
|
147
|
+
* ],
|
|
148
|
+
* "HlsManifests": [
|
|
149
|
+
* {
|
|
150
|
+
* "ManifestName": "HlsManifest"
|
|
151
|
+
* }
|
|
152
|
+
* ],
|
|
153
|
+
* "LowLatencyHlsManifests": [
|
|
154
|
+
* {
|
|
155
|
+
* "ManifestName": "LowLatencyHlsManifest"
|
|
156
|
+
* }
|
|
157
|
+
* ]
|
|
158
|
+
* },
|
|
159
|
+
* "ModifiedAt": "2024-05-28T09:36:00.00Z",
|
|
160
|
+
* "OriginEndpointName": "exampleOriginEndpointName",
|
|
161
|
+
* "ScheduleConfiguration": {
|
|
162
|
+
* "EndTime": "2024-05-28T12:00:00.00Z",
|
|
163
|
+
* "StartTime": "2024-05-28T06:00:00.00Z"
|
|
164
|
+
* },
|
|
165
|
+
* "Status": "QUEUED",
|
|
166
|
+
* "Tags": {
|
|
167
|
+
* "key1": "value1",
|
|
168
|
+
* "key2": "value2"
|
|
169
|
+
* }
|
|
170
|
+
* }
|
|
171
|
+
* *\/
|
|
172
|
+
* // example id: example-1
|
|
173
|
+
* ```
|
|
174
|
+
*
|
|
116
175
|
*/
|
|
117
176
|
export declare class GetHarvestJobCommand extends GetHarvestJobCommand_base {
|
|
118
177
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -117,6 +117,346 @@ declare const ListHarvestJobsCommand_base: {
|
|
|
117
117
|
* <p>Base exception class for all service exceptions from MediaPackageV2 service.</p>
|
|
118
118
|
*
|
|
119
119
|
* @public
|
|
120
|
+
* @example ListHarvestJobs: Specify ChannelGroup only
|
|
121
|
+
* ```javascript
|
|
122
|
+
* //
|
|
123
|
+
* const input = {
|
|
124
|
+
* "ChannelGroupName": "exampleChannelGroup"
|
|
125
|
+
* };
|
|
126
|
+
* const command = new ListHarvestJobsCommand(input);
|
|
127
|
+
* const response = await client.send(command);
|
|
128
|
+
* /* response ==
|
|
129
|
+
* {
|
|
130
|
+
* "Items": [
|
|
131
|
+
* {
|
|
132
|
+
* "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName",
|
|
133
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
134
|
+
* "ChannelName": "exampleChannelName",
|
|
135
|
+
* "CreatedAt": "2024-05-28T09:36:00.00Z",
|
|
136
|
+
* "Description": "Example HarvestJob description",
|
|
137
|
+
* "Destination": {
|
|
138
|
+
* "S3Destination": {
|
|
139
|
+
* "BucketName": "harvestJobS3DestinationBucket",
|
|
140
|
+
* "DestinationPath": "manifests"
|
|
141
|
+
* }
|
|
142
|
+
* },
|
|
143
|
+
* "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
|
|
144
|
+
* "HarvestJobName": "HarvestJobName",
|
|
145
|
+
* "HarvestedManifests": {
|
|
146
|
+
* "DashManifests": [
|
|
147
|
+
* {
|
|
148
|
+
* "ManifestName": "DashManifest"
|
|
149
|
+
* }
|
|
150
|
+
* ],
|
|
151
|
+
* "HlsManifests": [
|
|
152
|
+
* {
|
|
153
|
+
* "ManifestName": "HlsManifest"
|
|
154
|
+
* }
|
|
155
|
+
* ],
|
|
156
|
+
* "LowLatencyHlsManifests": [
|
|
157
|
+
* {
|
|
158
|
+
* "ManifestName": "LowLatencyHlsManifest"
|
|
159
|
+
* }
|
|
160
|
+
* ]
|
|
161
|
+
* },
|
|
162
|
+
* "ModifiedAt": "2024-05-28T09:36:00.00Z",
|
|
163
|
+
* "OriginEndpointName": "exampleOriginEndpointName",
|
|
164
|
+
* "ScheduleConfiguration": {
|
|
165
|
+
* "EndTime": "2024-05-28T12:00:00.00Z",
|
|
166
|
+
* "StartTime": "2024-05-28T06:00:00.00Z"
|
|
167
|
+
* },
|
|
168
|
+
* "Status": "QUEUED",
|
|
169
|
+
* "Tags": {
|
|
170
|
+
* "key1": "value1",
|
|
171
|
+
* "key2": "value2"
|
|
172
|
+
* }
|
|
173
|
+
* },
|
|
174
|
+
* {
|
|
175
|
+
* "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName2/originEndpoint/exampleOriginEndpointName2/harvestJob/HarvestJobName2",
|
|
176
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
177
|
+
* "ChannelName": "exampleChannelName2",
|
|
178
|
+
* "CreatedAt": "2024-05-28T15:30:00.00Z",
|
|
179
|
+
* "Description": "Example HarvestJob2 description",
|
|
180
|
+
* "Destination": {
|
|
181
|
+
* "S3Destination": {
|
|
182
|
+
* "BucketName": "harvestJobS3DestinationBucket",
|
|
183
|
+
* "DestinationPath": "manifests"
|
|
184
|
+
* }
|
|
185
|
+
* },
|
|
186
|
+
* "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
|
|
187
|
+
* "HarvestJobName": "HarvestJobName2",
|
|
188
|
+
* "HarvestedManifests": {
|
|
189
|
+
* "DashManifests": [
|
|
190
|
+
* {
|
|
191
|
+
* "ManifestName": "DashManifest"
|
|
192
|
+
* }
|
|
193
|
+
* ],
|
|
194
|
+
* "HlsManifests": [
|
|
195
|
+
* {
|
|
196
|
+
* "ManifestName": "HlsManifest"
|
|
197
|
+
* }
|
|
198
|
+
* ],
|
|
199
|
+
* "LowLatencyHlsManifests": [
|
|
200
|
+
* {
|
|
201
|
+
* "ManifestName": "LowLatencyHlsManifest"
|
|
202
|
+
* }
|
|
203
|
+
* ]
|
|
204
|
+
* },
|
|
205
|
+
* "ModifiedAt": "2024-05-28T15:30:00.00Z",
|
|
206
|
+
* "OriginEndpointName": "exampleOriginEndpointName2",
|
|
207
|
+
* "ScheduleConfiguration": {
|
|
208
|
+
* "EndTime": "2024-05-28T12:00:00.00Z",
|
|
209
|
+
* "StartTime": "2024-05-28T02:00:00.00Z"
|
|
210
|
+
* },
|
|
211
|
+
* "Status": "IN_PROGRESS",
|
|
212
|
+
* "Tags": {
|
|
213
|
+
* "key1": "value1",
|
|
214
|
+
* "key2": "value2"
|
|
215
|
+
* }
|
|
216
|
+
* }
|
|
217
|
+
* ],
|
|
218
|
+
* "NextToken": "someTokenValue"
|
|
219
|
+
* }
|
|
220
|
+
* *\/
|
|
221
|
+
* // example id: example-1
|
|
222
|
+
* ```
|
|
223
|
+
*
|
|
224
|
+
* @example ListHarvestJobs: Specify ChannelGroup, Channel only
|
|
225
|
+
* ```javascript
|
|
226
|
+
* //
|
|
227
|
+
* const input = {
|
|
228
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
229
|
+
* "ChannelName": "exampleChannelName"
|
|
230
|
+
* };
|
|
231
|
+
* const command = new ListHarvestJobsCommand(input);
|
|
232
|
+
* const response = await client.send(command);
|
|
233
|
+
* /* response ==
|
|
234
|
+
* {
|
|
235
|
+
* "Items": [
|
|
236
|
+
* {
|
|
237
|
+
* "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName",
|
|
238
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
239
|
+
* "ChannelName": "exampleChannelName",
|
|
240
|
+
* "CreatedAt": "2024-05-28T09:36:00.00Z",
|
|
241
|
+
* "Description": "Example HarvestJob description",
|
|
242
|
+
* "Destination": {
|
|
243
|
+
* "S3Destination": {
|
|
244
|
+
* "BucketName": "harvestJobS3DestinationBucket",
|
|
245
|
+
* "DestinationPath": "manifests"
|
|
246
|
+
* }
|
|
247
|
+
* },
|
|
248
|
+
* "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
|
|
249
|
+
* "HarvestJobName": "HarvestJobName",
|
|
250
|
+
* "HarvestedManifests": {
|
|
251
|
+
* "DashManifests": [
|
|
252
|
+
* {
|
|
253
|
+
* "ManifestName": "DashManifest"
|
|
254
|
+
* }
|
|
255
|
+
* ],
|
|
256
|
+
* "HlsManifests": [
|
|
257
|
+
* {
|
|
258
|
+
* "ManifestName": "HlsManifest"
|
|
259
|
+
* }
|
|
260
|
+
* ],
|
|
261
|
+
* "LowLatencyHlsManifests": [
|
|
262
|
+
* {
|
|
263
|
+
* "ManifestName": "LowLatencyHlsManifest"
|
|
264
|
+
* }
|
|
265
|
+
* ]
|
|
266
|
+
* },
|
|
267
|
+
* "ModifiedAt": "2024-05-28T09:36:00.00Z",
|
|
268
|
+
* "OriginEndpointName": "exampleOriginEndpointName",
|
|
269
|
+
* "ScheduleConfiguration": {
|
|
270
|
+
* "EndTime": "2024-05-28T12:00:00.00Z",
|
|
271
|
+
* "StartTime": "2024-05-28T06:00:00.00Z"
|
|
272
|
+
* },
|
|
273
|
+
* "Status": "QUEUED",
|
|
274
|
+
* "Tags": {
|
|
275
|
+
* "key1": "value1",
|
|
276
|
+
* "key2": "value2"
|
|
277
|
+
* }
|
|
278
|
+
* },
|
|
279
|
+
* {
|
|
280
|
+
* "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName2/harvestJob/HarvestJobName2",
|
|
281
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
282
|
+
* "ChannelName": "exampleChannelName",
|
|
283
|
+
* "CreatedAt": "2024-05-28T15:30:00.00Z",
|
|
284
|
+
* "Description": "Example HarvestJob2 description",
|
|
285
|
+
* "Destination": {
|
|
286
|
+
* "S3Destination": {
|
|
287
|
+
* "BucketName": "harvestJobS3DestinationBucket",
|
|
288
|
+
* "DestinationPath": "manifests"
|
|
289
|
+
* }
|
|
290
|
+
* },
|
|
291
|
+
* "HarvestJobName": "HarvestJobName2",
|
|
292
|
+
* "HarvestedManifests": {
|
|
293
|
+
* "DashManifests": [
|
|
294
|
+
* {
|
|
295
|
+
* "ManifestName": "DashManifest"
|
|
296
|
+
* }
|
|
297
|
+
* ],
|
|
298
|
+
* "HlsManifests": [
|
|
299
|
+
* {
|
|
300
|
+
* "ManifestName": "HlsManifest"
|
|
301
|
+
* }
|
|
302
|
+
* ],
|
|
303
|
+
* "LowLatencyHlsManifests": [
|
|
304
|
+
* {
|
|
305
|
+
* "ManifestName": "LowLatencyHlsManifest"
|
|
306
|
+
* }
|
|
307
|
+
* ]
|
|
308
|
+
* },
|
|
309
|
+
* "ModifiedAt": "2024-05-28T15:30:00.00Z",
|
|
310
|
+
* "OriginEndpointName": "exampleOriginEndpointName2",
|
|
311
|
+
* "ScheduleConfiguration": {
|
|
312
|
+
* "EndTime": "2024-05-28T12:00:00.00Z",
|
|
313
|
+
* "StartTime": "2024-05-28T02:00:00.00Z"
|
|
314
|
+
* },
|
|
315
|
+
* "Status": "IN_PROGRESS",
|
|
316
|
+
* "Tags": {
|
|
317
|
+
* "key1": "value1",
|
|
318
|
+
* "key2": "value2"
|
|
319
|
+
* }
|
|
320
|
+
* }
|
|
321
|
+
* ],
|
|
322
|
+
* "NextToken": "someTokenValue"
|
|
323
|
+
* }
|
|
324
|
+
* *\/
|
|
325
|
+
* // example id: example-2
|
|
326
|
+
* ```
|
|
327
|
+
*
|
|
328
|
+
* @example ListHarvestJobs: Specify ChannelGroup, Channel, OriginEndpoint
|
|
329
|
+
* ```javascript
|
|
330
|
+
* //
|
|
331
|
+
* const input = {
|
|
332
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
333
|
+
* "ChannelName": "exampleChannelName",
|
|
334
|
+
* "OriginEndpointName": "exampleOriginEndpointName"
|
|
335
|
+
* };
|
|
336
|
+
* const command = new ListHarvestJobsCommand(input);
|
|
337
|
+
* const response = await client.send(command);
|
|
338
|
+
* /* response ==
|
|
339
|
+
* {
|
|
340
|
+
* "Items": [
|
|
341
|
+
* {
|
|
342
|
+
* "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName",
|
|
343
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
344
|
+
* "ChannelName": "exampleChannelName",
|
|
345
|
+
* "CreatedAt": "2024-05-28T09:36:00.00Z",
|
|
346
|
+
* "Description": "Example HarvestJob description",
|
|
347
|
+
* "Destination": {
|
|
348
|
+
* "S3Destination": {
|
|
349
|
+
* "BucketName": "harvestJobS3DestinationBucket",
|
|
350
|
+
* "DestinationPath": "manifests"
|
|
351
|
+
* }
|
|
352
|
+
* },
|
|
353
|
+
* "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
|
|
354
|
+
* "HarvestJobName": "HarvestJobName",
|
|
355
|
+
* "HarvestedManifests": {
|
|
356
|
+
* "DashManifests": [
|
|
357
|
+
* {
|
|
358
|
+
* "ManifestName": "DashManifest"
|
|
359
|
+
* }
|
|
360
|
+
* ],
|
|
361
|
+
* "HlsManifests": [
|
|
362
|
+
* {
|
|
363
|
+
* "ManifestName": "HlsManifest"
|
|
364
|
+
* }
|
|
365
|
+
* ],
|
|
366
|
+
* "LowLatencyHlsManifests": [
|
|
367
|
+
* {
|
|
368
|
+
* "ManifestName": "LowLatencyHlsManifest"
|
|
369
|
+
* }
|
|
370
|
+
* ]
|
|
371
|
+
* },
|
|
372
|
+
* "ModifiedAt": "2024-05-28T09:36:00.00Z",
|
|
373
|
+
* "OriginEndpointName": "exampleOriginEndpointName",
|
|
374
|
+
* "ScheduleConfiguration": {
|
|
375
|
+
* "EndTime": "2024-05-28T12:00:00.00Z",
|
|
376
|
+
* "StartTime": "2024-05-28T06:00:00.00Z"
|
|
377
|
+
* },
|
|
378
|
+
* "Status": "QUEUED"
|
|
379
|
+
* }
|
|
380
|
+
* ],
|
|
381
|
+
* "NextToken": "someTokenValue"
|
|
382
|
+
* }
|
|
383
|
+
* *\/
|
|
384
|
+
* // example id: example-3
|
|
385
|
+
* ```
|
|
386
|
+
*
|
|
387
|
+
* @example ListHarvestJobs: Specify ChannelGroup, Channel, OriginEndpoint + Status filter
|
|
388
|
+
* ```javascript
|
|
389
|
+
* //
|
|
390
|
+
* const input = {
|
|
391
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
392
|
+
* "ChannelName": "exampleChannelName",
|
|
393
|
+
* "OriginEndpointName": "exampleOriginEndpointName",
|
|
394
|
+
* "Status": "QUEUED"
|
|
395
|
+
* };
|
|
396
|
+
* const command = new ListHarvestJobsCommand(input);
|
|
397
|
+
* const response = await client.send(command);
|
|
398
|
+
* /* response ==
|
|
399
|
+
* {
|
|
400
|
+
* "Items": [
|
|
401
|
+
* {
|
|
402
|
+
* "Arn": "arn:aws:mediapackagev2:us-west-2:123456789012:channelGroup/exampleChannelGroup/channel/exampleChannelName/originEndpoint/exampleOriginEndpointName/harvestJob/HarvestJobName",
|
|
403
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
404
|
+
* "ChannelName": "exampleChannelName",
|
|
405
|
+
* "CreatedAt": "2024-05-28T09:36:00.00Z",
|
|
406
|
+
* "Description": "Example HarvestJob description",
|
|
407
|
+
* "Destination": {
|
|
408
|
+
* "S3Destination": {
|
|
409
|
+
* "BucketName": "harvestJobS3DestinationBucket",
|
|
410
|
+
* "DestinationPath": "manifests"
|
|
411
|
+
* }
|
|
412
|
+
* },
|
|
413
|
+
* "ETag": "GlfT+dwAyGIR4wuy8nKWl1RDPwSrjQej9qUutLZxoxk=",
|
|
414
|
+
* "HarvestJobName": "HarvestJobName",
|
|
415
|
+
* "HarvestedManifests": {
|
|
416
|
+
* "DashManifests": [
|
|
417
|
+
* {
|
|
418
|
+
* "ManifestName": "DashManifest"
|
|
419
|
+
* }
|
|
420
|
+
* ],
|
|
421
|
+
* "HlsManifests": [
|
|
422
|
+
* {
|
|
423
|
+
* "ManifestName": "HlsManifest"
|
|
424
|
+
* }
|
|
425
|
+
* ],
|
|
426
|
+
* "LowLatencyHlsManifests": [
|
|
427
|
+
* {
|
|
428
|
+
* "ManifestName": "LowLatencyHlsManifest"
|
|
429
|
+
* }
|
|
430
|
+
* ]
|
|
431
|
+
* },
|
|
432
|
+
* "ModifiedAt": "2024-05-28T09:36:00.00Z",
|
|
433
|
+
* "OriginEndpointName": "exampleOriginEndpointName",
|
|
434
|
+
* "ScheduleConfiguration": {
|
|
435
|
+
* "EndTime": "2024-05-28T12:00:00.00Z",
|
|
436
|
+
* "StartTime": "2024-05-28T06:00:00.00Z"
|
|
437
|
+
* },
|
|
438
|
+
* "Status": "QUEUED"
|
|
439
|
+
* }
|
|
440
|
+
* ],
|
|
441
|
+
* "NextToken": "someTokenValue"
|
|
442
|
+
* }
|
|
443
|
+
* *\/
|
|
444
|
+
* // example id: example-4
|
|
445
|
+
* ```
|
|
446
|
+
*
|
|
447
|
+
* @example ListHarvestJobs: Empty response
|
|
448
|
+
* ```javascript
|
|
449
|
+
* //
|
|
450
|
+
* const input = {
|
|
451
|
+
* "ChannelGroupName": "exampleChannelGroup",
|
|
452
|
+
* "ChannelName": "exampleChannelName",
|
|
453
|
+
* "OriginEndpointName": "exampleOriginEndpointName"
|
|
454
|
+
* };
|
|
455
|
+
* const command = new ListHarvestJobsCommand(input);
|
|
456
|
+
* await client.send(command);
|
|
457
|
+
* // example id: example-5
|
|
458
|
+
* ```
|
|
459
|
+
*
|
|
120
460
|
*/
|
|
121
461
|
export declare class ListHarvestJobsCommand extends ListHarvestJobsCommand_base {
|
|
122
462
|
/** @internal type navigation helper, not in runtime. */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediapackagev2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediapackagev2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.682.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediapackagev2",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.682.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.682.0",
|
|
25
25
|
"@aws-sdk/core": "3.679.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.682.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.679.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.679.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.679.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.682.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.679.0",
|
|
32
32
|
"@aws-sdk/types": "3.679.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.679.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.679.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.682.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.9",
|
|
37
37
|
"@smithy/core": "^2.4.8",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.2.9",
|