@aws-sdk/client-mediapackage 3.321.1 → 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.
- package/dist-types/commands/ConfigureLogsCommand.d.ts +28 -0
- package/dist-types/commands/CreateChannelCommand.d.ts +28 -0
- package/dist-types/commands/CreateHarvestJobCommand.d.ts +18 -0
- package/dist-types/commands/CreateOriginEndpointCommand.d.ts +171 -0
- package/dist-types/commands/DeleteChannelCommand.d.ts +4 -0
- package/dist-types/commands/DeleteOriginEndpointCommand.d.ts +4 -0
- package/dist-types/commands/DescribeChannelCommand.d.ts +28 -0
- package/dist-types/commands/DescribeHarvestJobCommand.d.ts +18 -0
- package/dist-types/commands/DescribeOriginEndpointCommand.d.ts +171 -0
- package/dist-types/commands/ListChannelsCommand.d.ts +33 -0
- package/dist-types/commands/ListHarvestJobsCommand.d.ts +23 -0
- package/dist-types/commands/ListOriginEndpointsCommand.d.ts +176 -0
- package/dist-types/commands/RotateChannelCredentialsCommand.d.ts +28 -0
- package/dist-types/commands/RotateIngestEndpointCredentialsCommand.d.ts +28 -0
- package/dist-types/commands/UpdateChannelCommand.d.ts +28 -0
- package/dist-types/commands/UpdateOriginEndpointCommand.d.ts +171 -0
- package/package.json +16 -16
|
@@ -37,6 +37,32 @@ export interface ConfigureLogsCommandOutput extends ConfigureLogsResponse, __Met
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ConfigureLogsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ConfigureLogsResponse
|
|
41
|
+
* // Arn: "STRING_VALUE",
|
|
42
|
+
* // CreatedAt: "STRING_VALUE",
|
|
43
|
+
* // Description: "STRING_VALUE",
|
|
44
|
+
* // EgressAccessLogs: { // EgressAccessLogs
|
|
45
|
+
* // LogGroupName: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // HlsIngest: { // HlsIngest
|
|
48
|
+
* // IngestEndpoints: [ // __listOfIngestEndpoint
|
|
49
|
+
* // { // IngestEndpoint
|
|
50
|
+
* // Id: "STRING_VALUE",
|
|
51
|
+
* // Password: "STRING_VALUE",
|
|
52
|
+
* // Url: "STRING_VALUE",
|
|
53
|
+
* // Username: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // },
|
|
57
|
+
* // Id: "STRING_VALUE",
|
|
58
|
+
* // IngressAccessLogs: { // IngressAccessLogs
|
|
59
|
+
* // LogGroupName: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // Tags: { // Tags
|
|
62
|
+
* // "<keys>": "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
40
66
|
* ```
|
|
41
67
|
*
|
|
42
68
|
* @param ConfigureLogsCommandInput - {@link ConfigureLogsCommandInput}
|
|
@@ -63,6 +89,8 @@ export interface ConfigureLogsCommandOutput extends ConfigureLogsResponse, __Met
|
|
|
63
89
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
64
90
|
* The parameters sent in the request are not valid.
|
|
65
91
|
*
|
|
92
|
+
* @throws {@link MediaPackageServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
66
94
|
*
|
|
67
95
|
*/
|
|
68
96
|
export declare class ConfigureLogsCommand extends $Command<ConfigureLogsCommandInput, ConfigureLogsCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -35,6 +35,32 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreateChannelCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // CreateChannelResponse
|
|
39
|
+
* // Arn: "STRING_VALUE",
|
|
40
|
+
* // CreatedAt: "STRING_VALUE",
|
|
41
|
+
* // Description: "STRING_VALUE",
|
|
42
|
+
* // EgressAccessLogs: { // EgressAccessLogs
|
|
43
|
+
* // LogGroupName: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // HlsIngest: { // HlsIngest
|
|
46
|
+
* // IngestEndpoints: [ // __listOfIngestEndpoint
|
|
47
|
+
* // { // IngestEndpoint
|
|
48
|
+
* // Id: "STRING_VALUE",
|
|
49
|
+
* // Password: "STRING_VALUE",
|
|
50
|
+
* // Url: "STRING_VALUE",
|
|
51
|
+
* // Username: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // Id: "STRING_VALUE",
|
|
56
|
+
* // IngressAccessLogs: { // IngressAccessLogs
|
|
57
|
+
* // LogGroupName: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // Tags: { // Tags
|
|
60
|
+
* // "<keys>": "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
38
64
|
* ```
|
|
39
65
|
*
|
|
40
66
|
* @param CreateChannelCommandInput - {@link CreateChannelCommandInput}
|
|
@@ -61,6 +87,8 @@ export interface CreateChannelCommandOutput extends CreateChannelResponse, __Met
|
|
|
61
87
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
62
88
|
* The parameters sent in the request are not valid.
|
|
63
89
|
*
|
|
90
|
+
* @throws {@link MediaPackageServiceException}
|
|
91
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
64
92
|
*
|
|
65
93
|
*/
|
|
66
94
|
export declare class CreateChannelCommand extends $Command<CreateChannelCommandInput, CreateChannelCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -39,6 +39,22 @@ export interface CreateHarvestJobCommandOutput extends CreateHarvestJobResponse,
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new CreateHarvestJobCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // CreateHarvestJobResponse
|
|
43
|
+
* // Arn: "STRING_VALUE",
|
|
44
|
+
* // ChannelId: "STRING_VALUE",
|
|
45
|
+
* // CreatedAt: "STRING_VALUE",
|
|
46
|
+
* // EndTime: "STRING_VALUE",
|
|
47
|
+
* // Id: "STRING_VALUE",
|
|
48
|
+
* // OriginEndpointId: "STRING_VALUE",
|
|
49
|
+
* // S3Destination: { // S3Destination
|
|
50
|
+
* // BucketName: "STRING_VALUE", // required
|
|
51
|
+
* // ManifestKey: "STRING_VALUE", // required
|
|
52
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // StartTime: "STRING_VALUE",
|
|
55
|
+
* // Status: "IN_PROGRESS" || "SUCCEEDED" || "FAILED",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
42
58
|
* ```
|
|
43
59
|
*
|
|
44
60
|
* @param CreateHarvestJobCommandInput - {@link CreateHarvestJobCommandInput}
|
|
@@ -65,6 +81,8 @@ export interface CreateHarvestJobCommandOutput extends CreateHarvestJobResponse,
|
|
|
65
81
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
66
82
|
* The parameters sent in the request are not valid.
|
|
67
83
|
*
|
|
84
|
+
* @throws {@link MediaPackageServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
68
86
|
*
|
|
69
87
|
*/
|
|
70
88
|
export declare class CreateHarvestJobCommand extends $Command<CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -192,6 +192,175 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
|
|
|
192
192
|
* };
|
|
193
193
|
* const command = new CreateOriginEndpointCommand(input);
|
|
194
194
|
* const response = await client.send(command);
|
|
195
|
+
* // { // CreateOriginEndpointResponse
|
|
196
|
+
* // Arn: "STRING_VALUE",
|
|
197
|
+
* // Authorization: { // Authorization
|
|
198
|
+
* // CdnIdentifierSecret: "STRING_VALUE", // required
|
|
199
|
+
* // SecretsRoleArn: "STRING_VALUE", // required
|
|
200
|
+
* // },
|
|
201
|
+
* // ChannelId: "STRING_VALUE",
|
|
202
|
+
* // CmafPackage: { // CmafPackage
|
|
203
|
+
* // Encryption: { // CmafEncryption
|
|
204
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
205
|
+
* // EncryptionMethod: "SAMPLE_AES" || "AES_CTR",
|
|
206
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
207
|
+
* // SpekeKeyProvider: { // SpekeKeyProvider
|
|
208
|
+
* // CertificateArn: "STRING_VALUE",
|
|
209
|
+
* // EncryptionContractConfiguration: { // EncryptionContractConfiguration
|
|
210
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
211
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
212
|
+
* // },
|
|
213
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
214
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
215
|
+
* // SystemIds: [ // __listOf__string // required
|
|
216
|
+
* // "STRING_VALUE",
|
|
217
|
+
* // ],
|
|
218
|
+
* // Url: "STRING_VALUE", // required
|
|
219
|
+
* // },
|
|
220
|
+
* // },
|
|
221
|
+
* // HlsManifests: [ // __listOfHlsManifest
|
|
222
|
+
* // { // HlsManifest
|
|
223
|
+
* // AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
224
|
+
* // Id: "STRING_VALUE", // required
|
|
225
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
226
|
+
* // ManifestName: "STRING_VALUE",
|
|
227
|
+
* // PlaylistType: "NONE" || "EVENT" || "VOD",
|
|
228
|
+
* // PlaylistWindowSeconds: Number("int"),
|
|
229
|
+
* // ProgramDateTimeIntervalSeconds: Number("int"),
|
|
230
|
+
* // Url: "STRING_VALUE",
|
|
231
|
+
* // AdTriggers: [ // AdTriggers
|
|
232
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
233
|
+
* // ],
|
|
234
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
235
|
+
* // },
|
|
236
|
+
* // ],
|
|
237
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
238
|
+
* // SegmentPrefix: "STRING_VALUE",
|
|
239
|
+
* // StreamSelection: { // StreamSelection
|
|
240
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
241
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
242
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
243
|
+
* // },
|
|
244
|
+
* // },
|
|
245
|
+
* // CreatedAt: "STRING_VALUE",
|
|
246
|
+
* // DashPackage: { // DashPackage
|
|
247
|
+
* // AdTriggers: [
|
|
248
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
249
|
+
* // ],
|
|
250
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
251
|
+
* // Encryption: { // DashEncryption
|
|
252
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
253
|
+
* // SpekeKeyProvider: {
|
|
254
|
+
* // CertificateArn: "STRING_VALUE",
|
|
255
|
+
* // EncryptionContractConfiguration: {
|
|
256
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
257
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
258
|
+
* // },
|
|
259
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
260
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
261
|
+
* // SystemIds: [ // required
|
|
262
|
+
* // "STRING_VALUE",
|
|
263
|
+
* // ],
|
|
264
|
+
* // Url: "STRING_VALUE", // required
|
|
265
|
+
* // },
|
|
266
|
+
* // },
|
|
267
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
268
|
+
* // ManifestLayout: "FULL" || "COMPACT",
|
|
269
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
270
|
+
* // MinBufferTimeSeconds: Number("int"),
|
|
271
|
+
* // MinUpdatePeriodSeconds: Number("int"),
|
|
272
|
+
* // PeriodTriggers: [ // __listOf__PeriodTriggersElement
|
|
273
|
+
* // "ADS",
|
|
274
|
+
* // ],
|
|
275
|
+
* // Profile: "NONE" || "HBBTV_1_5" || "HYBRIDCAST" || "DVB_DASH_2014",
|
|
276
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
277
|
+
* // SegmentTemplateFormat: "NUMBER_WITH_TIMELINE" || "TIME_WITH_TIMELINE" || "NUMBER_WITH_DURATION",
|
|
278
|
+
* // StreamSelection: {
|
|
279
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
280
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
281
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
282
|
+
* // },
|
|
283
|
+
* // SuggestedPresentationDelaySeconds: Number("int"),
|
|
284
|
+
* // UtcTiming: "NONE" || "HTTP-HEAD" || "HTTP-ISO" || "HTTP-XSDATE",
|
|
285
|
+
* // UtcTimingUri: "STRING_VALUE",
|
|
286
|
+
* // },
|
|
287
|
+
* // Description: "STRING_VALUE",
|
|
288
|
+
* // HlsPackage: { // HlsPackage
|
|
289
|
+
* // AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
290
|
+
* // AdTriggers: [
|
|
291
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
292
|
+
* // ],
|
|
293
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
294
|
+
* // Encryption: { // HlsEncryption
|
|
295
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
296
|
+
* // EncryptionMethod: "AES_128" || "SAMPLE_AES",
|
|
297
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
298
|
+
* // RepeatExtXKey: true || false,
|
|
299
|
+
* // SpekeKeyProvider: {
|
|
300
|
+
* // CertificateArn: "STRING_VALUE",
|
|
301
|
+
* // EncryptionContractConfiguration: {
|
|
302
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
303
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
304
|
+
* // },
|
|
305
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
306
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
307
|
+
* // SystemIds: [ // required
|
|
308
|
+
* // "STRING_VALUE",
|
|
309
|
+
* // ],
|
|
310
|
+
* // Url: "STRING_VALUE", // required
|
|
311
|
+
* // },
|
|
312
|
+
* // },
|
|
313
|
+
* // IncludeDvbSubtitles: true || false,
|
|
314
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
315
|
+
* // PlaylistType: "NONE" || "EVENT" || "VOD",
|
|
316
|
+
* // PlaylistWindowSeconds: Number("int"),
|
|
317
|
+
* // ProgramDateTimeIntervalSeconds: Number("int"),
|
|
318
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
319
|
+
* // StreamSelection: {
|
|
320
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
321
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
322
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
323
|
+
* // },
|
|
324
|
+
* // UseAudioRenditionGroup: true || false,
|
|
325
|
+
* // },
|
|
326
|
+
* // Id: "STRING_VALUE",
|
|
327
|
+
* // ManifestName: "STRING_VALUE",
|
|
328
|
+
* // MssPackage: { // MssPackage
|
|
329
|
+
* // Encryption: { // MssEncryption
|
|
330
|
+
* // SpekeKeyProvider: {
|
|
331
|
+
* // CertificateArn: "STRING_VALUE",
|
|
332
|
+
* // EncryptionContractConfiguration: {
|
|
333
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
334
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
335
|
+
* // },
|
|
336
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
337
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
338
|
+
* // SystemIds: [ // required
|
|
339
|
+
* // "STRING_VALUE",
|
|
340
|
+
* // ],
|
|
341
|
+
* // Url: "STRING_VALUE", // required
|
|
342
|
+
* // },
|
|
343
|
+
* // },
|
|
344
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
345
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
346
|
+
* // StreamSelection: {
|
|
347
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
348
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
349
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
350
|
+
* // },
|
|
351
|
+
* // },
|
|
352
|
+
* // Origination: "ALLOW" || "DENY",
|
|
353
|
+
* // StartoverWindowSeconds: Number("int"),
|
|
354
|
+
* // Tags: { // Tags
|
|
355
|
+
* // "<keys>": "STRING_VALUE",
|
|
356
|
+
* // },
|
|
357
|
+
* // TimeDelaySeconds: Number("int"),
|
|
358
|
+
* // Url: "STRING_VALUE",
|
|
359
|
+
* // Whitelist: [
|
|
360
|
+
* // "STRING_VALUE",
|
|
361
|
+
* // ],
|
|
362
|
+
* // };
|
|
363
|
+
*
|
|
195
364
|
* ```
|
|
196
365
|
*
|
|
197
366
|
* @param CreateOriginEndpointCommandInput - {@link CreateOriginEndpointCommandInput}
|
|
@@ -218,6 +387,8 @@ export interface CreateOriginEndpointCommandOutput extends CreateOriginEndpointR
|
|
|
218
387
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
219
388
|
* The parameters sent in the request are not valid.
|
|
220
389
|
*
|
|
390
|
+
* @throws {@link MediaPackageServiceException}
|
|
391
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
221
392
|
*
|
|
222
393
|
*/
|
|
223
394
|
export declare class CreateOriginEndpointCommand extends $Command<CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteChannelCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteChannelCommandInput - {@link DeleteChannelCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteChannelCommandOutput extends DeleteChannelResponse, __Met
|
|
|
57
59
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
58
60
|
* The parameters sent in the request are not valid.
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link MediaPackageServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteChannelCommand extends $Command<DeleteChannelCommandInput, DeleteChannelCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteOriginEndpointCommandOutput extends DeleteOriginEndpointR
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteOriginEndpointCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteOriginEndpointCommandInput - {@link DeleteOriginEndpointCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteOriginEndpointCommandOutput extends DeleteOriginEndpointR
|
|
|
57
59
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
58
60
|
* The parameters sent in the request are not valid.
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link MediaPackageServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteOriginEndpointCommand extends $Command<DeleteOriginEndpointCommandInput, DeleteOriginEndpointCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -31,6 +31,32 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeChannelCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeChannelResponse
|
|
35
|
+
* // Arn: "STRING_VALUE",
|
|
36
|
+
* // CreatedAt: "STRING_VALUE",
|
|
37
|
+
* // Description: "STRING_VALUE",
|
|
38
|
+
* // EgressAccessLogs: { // EgressAccessLogs
|
|
39
|
+
* // LogGroupName: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // HlsIngest: { // HlsIngest
|
|
42
|
+
* // IngestEndpoints: [ // __listOfIngestEndpoint
|
|
43
|
+
* // { // IngestEndpoint
|
|
44
|
+
* // Id: "STRING_VALUE",
|
|
45
|
+
* // Password: "STRING_VALUE",
|
|
46
|
+
* // Url: "STRING_VALUE",
|
|
47
|
+
* // Username: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // },
|
|
51
|
+
* // Id: "STRING_VALUE",
|
|
52
|
+
* // IngressAccessLogs: { // IngressAccessLogs
|
|
53
|
+
* // LogGroupName: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // Tags: { // Tags
|
|
56
|
+
* // "<keys>": "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
34
60
|
* ```
|
|
35
61
|
*
|
|
36
62
|
* @param DescribeChannelCommandInput - {@link DescribeChannelCommandInput}
|
|
@@ -57,6 +83,8 @@ export interface DescribeChannelCommandOutput extends DescribeChannelResponse, _
|
|
|
57
83
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
58
84
|
* The parameters sent in the request are not valid.
|
|
59
85
|
*
|
|
86
|
+
* @throws {@link MediaPackageServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
60
88
|
*
|
|
61
89
|
*/
|
|
62
90
|
export declare class DescribeChannelCommand extends $Command<DescribeChannelCommandInput, DescribeChannelCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -31,6 +31,22 @@ export interface DescribeHarvestJobCommandOutput extends DescribeHarvestJobRespo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeHarvestJobCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeHarvestJobResponse
|
|
35
|
+
* // Arn: "STRING_VALUE",
|
|
36
|
+
* // ChannelId: "STRING_VALUE",
|
|
37
|
+
* // CreatedAt: "STRING_VALUE",
|
|
38
|
+
* // EndTime: "STRING_VALUE",
|
|
39
|
+
* // Id: "STRING_VALUE",
|
|
40
|
+
* // OriginEndpointId: "STRING_VALUE",
|
|
41
|
+
* // S3Destination: { // S3Destination
|
|
42
|
+
* // BucketName: "STRING_VALUE", // required
|
|
43
|
+
* // ManifestKey: "STRING_VALUE", // required
|
|
44
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
45
|
+
* // },
|
|
46
|
+
* // StartTime: "STRING_VALUE",
|
|
47
|
+
* // Status: "IN_PROGRESS" || "SUCCEEDED" || "FAILED",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
34
50
|
* ```
|
|
35
51
|
*
|
|
36
52
|
* @param DescribeHarvestJobCommandInput - {@link DescribeHarvestJobCommandInput}
|
|
@@ -57,6 +73,8 @@ export interface DescribeHarvestJobCommandOutput extends DescribeHarvestJobRespo
|
|
|
57
73
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
58
74
|
* The parameters sent in the request are not valid.
|
|
59
75
|
*
|
|
76
|
+
* @throws {@link MediaPackageServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
60
78
|
*
|
|
61
79
|
*/
|
|
62
80
|
export declare class DescribeHarvestJobCommand extends $Command<DescribeHarvestJobCommandInput, DescribeHarvestJobCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -31,6 +31,175 @@ export interface DescribeOriginEndpointCommandOutput extends DescribeOriginEndpo
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeOriginEndpointCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeOriginEndpointResponse
|
|
35
|
+
* // Arn: "STRING_VALUE",
|
|
36
|
+
* // Authorization: { // Authorization
|
|
37
|
+
* // CdnIdentifierSecret: "STRING_VALUE", // required
|
|
38
|
+
* // SecretsRoleArn: "STRING_VALUE", // required
|
|
39
|
+
* // },
|
|
40
|
+
* // ChannelId: "STRING_VALUE",
|
|
41
|
+
* // CmafPackage: { // CmafPackage
|
|
42
|
+
* // Encryption: { // CmafEncryption
|
|
43
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
44
|
+
* // EncryptionMethod: "SAMPLE_AES" || "AES_CTR",
|
|
45
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
46
|
+
* // SpekeKeyProvider: { // SpekeKeyProvider
|
|
47
|
+
* // CertificateArn: "STRING_VALUE",
|
|
48
|
+
* // EncryptionContractConfiguration: { // EncryptionContractConfiguration
|
|
49
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
50
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
53
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
54
|
+
* // SystemIds: [ // __listOf__string // required
|
|
55
|
+
* // "STRING_VALUE",
|
|
56
|
+
* // ],
|
|
57
|
+
* // Url: "STRING_VALUE", // required
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // HlsManifests: [ // __listOfHlsManifest
|
|
61
|
+
* // { // HlsManifest
|
|
62
|
+
* // AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
63
|
+
* // Id: "STRING_VALUE", // required
|
|
64
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
65
|
+
* // ManifestName: "STRING_VALUE",
|
|
66
|
+
* // PlaylistType: "NONE" || "EVENT" || "VOD",
|
|
67
|
+
* // PlaylistWindowSeconds: Number("int"),
|
|
68
|
+
* // ProgramDateTimeIntervalSeconds: Number("int"),
|
|
69
|
+
* // Url: "STRING_VALUE",
|
|
70
|
+
* // AdTriggers: [ // AdTriggers
|
|
71
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
72
|
+
* // ],
|
|
73
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
74
|
+
* // },
|
|
75
|
+
* // ],
|
|
76
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
77
|
+
* // SegmentPrefix: "STRING_VALUE",
|
|
78
|
+
* // StreamSelection: { // StreamSelection
|
|
79
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
80
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
81
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
82
|
+
* // },
|
|
83
|
+
* // },
|
|
84
|
+
* // CreatedAt: "STRING_VALUE",
|
|
85
|
+
* // DashPackage: { // DashPackage
|
|
86
|
+
* // AdTriggers: [
|
|
87
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
88
|
+
* // ],
|
|
89
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
90
|
+
* // Encryption: { // DashEncryption
|
|
91
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
92
|
+
* // SpekeKeyProvider: {
|
|
93
|
+
* // CertificateArn: "STRING_VALUE",
|
|
94
|
+
* // EncryptionContractConfiguration: {
|
|
95
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
96
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
97
|
+
* // },
|
|
98
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
99
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
100
|
+
* // SystemIds: [ // required
|
|
101
|
+
* // "STRING_VALUE",
|
|
102
|
+
* // ],
|
|
103
|
+
* // Url: "STRING_VALUE", // required
|
|
104
|
+
* // },
|
|
105
|
+
* // },
|
|
106
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
107
|
+
* // ManifestLayout: "FULL" || "COMPACT",
|
|
108
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
109
|
+
* // MinBufferTimeSeconds: Number("int"),
|
|
110
|
+
* // MinUpdatePeriodSeconds: Number("int"),
|
|
111
|
+
* // PeriodTriggers: [ // __listOf__PeriodTriggersElement
|
|
112
|
+
* // "ADS",
|
|
113
|
+
* // ],
|
|
114
|
+
* // Profile: "NONE" || "HBBTV_1_5" || "HYBRIDCAST" || "DVB_DASH_2014",
|
|
115
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
116
|
+
* // SegmentTemplateFormat: "NUMBER_WITH_TIMELINE" || "TIME_WITH_TIMELINE" || "NUMBER_WITH_DURATION",
|
|
117
|
+
* // StreamSelection: {
|
|
118
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
119
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
120
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
121
|
+
* // },
|
|
122
|
+
* // SuggestedPresentationDelaySeconds: Number("int"),
|
|
123
|
+
* // UtcTiming: "NONE" || "HTTP-HEAD" || "HTTP-ISO" || "HTTP-XSDATE",
|
|
124
|
+
* // UtcTimingUri: "STRING_VALUE",
|
|
125
|
+
* // },
|
|
126
|
+
* // Description: "STRING_VALUE",
|
|
127
|
+
* // HlsPackage: { // HlsPackage
|
|
128
|
+
* // AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
129
|
+
* // AdTriggers: [
|
|
130
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
131
|
+
* // ],
|
|
132
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
133
|
+
* // Encryption: { // HlsEncryption
|
|
134
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
135
|
+
* // EncryptionMethod: "AES_128" || "SAMPLE_AES",
|
|
136
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
137
|
+
* // RepeatExtXKey: true || false,
|
|
138
|
+
* // SpekeKeyProvider: {
|
|
139
|
+
* // CertificateArn: "STRING_VALUE",
|
|
140
|
+
* // EncryptionContractConfiguration: {
|
|
141
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
142
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
143
|
+
* // },
|
|
144
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
145
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
146
|
+
* // SystemIds: [ // required
|
|
147
|
+
* // "STRING_VALUE",
|
|
148
|
+
* // ],
|
|
149
|
+
* // Url: "STRING_VALUE", // required
|
|
150
|
+
* // },
|
|
151
|
+
* // },
|
|
152
|
+
* // IncludeDvbSubtitles: true || false,
|
|
153
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
154
|
+
* // PlaylistType: "NONE" || "EVENT" || "VOD",
|
|
155
|
+
* // PlaylistWindowSeconds: Number("int"),
|
|
156
|
+
* // ProgramDateTimeIntervalSeconds: Number("int"),
|
|
157
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
158
|
+
* // StreamSelection: {
|
|
159
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
160
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
161
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
162
|
+
* // },
|
|
163
|
+
* // UseAudioRenditionGroup: true || false,
|
|
164
|
+
* // },
|
|
165
|
+
* // Id: "STRING_VALUE",
|
|
166
|
+
* // ManifestName: "STRING_VALUE",
|
|
167
|
+
* // MssPackage: { // MssPackage
|
|
168
|
+
* // Encryption: { // MssEncryption
|
|
169
|
+
* // SpekeKeyProvider: {
|
|
170
|
+
* // CertificateArn: "STRING_VALUE",
|
|
171
|
+
* // EncryptionContractConfiguration: {
|
|
172
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
173
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
174
|
+
* // },
|
|
175
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
176
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
177
|
+
* // SystemIds: [ // required
|
|
178
|
+
* // "STRING_VALUE",
|
|
179
|
+
* // ],
|
|
180
|
+
* // Url: "STRING_VALUE", // required
|
|
181
|
+
* // },
|
|
182
|
+
* // },
|
|
183
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
184
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
185
|
+
* // StreamSelection: {
|
|
186
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
187
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
188
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
189
|
+
* // },
|
|
190
|
+
* // },
|
|
191
|
+
* // Origination: "ALLOW" || "DENY",
|
|
192
|
+
* // StartoverWindowSeconds: Number("int"),
|
|
193
|
+
* // Tags: { // Tags
|
|
194
|
+
* // "<keys>": "STRING_VALUE",
|
|
195
|
+
* // },
|
|
196
|
+
* // TimeDelaySeconds: Number("int"),
|
|
197
|
+
* // Url: "STRING_VALUE",
|
|
198
|
+
* // Whitelist: [
|
|
199
|
+
* // "STRING_VALUE",
|
|
200
|
+
* // ],
|
|
201
|
+
* // };
|
|
202
|
+
*
|
|
34
203
|
* ```
|
|
35
204
|
*
|
|
36
205
|
* @param DescribeOriginEndpointCommandInput - {@link DescribeOriginEndpointCommandInput}
|
|
@@ -57,6 +226,8 @@ export interface DescribeOriginEndpointCommandOutput extends DescribeOriginEndpo
|
|
|
57
226
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
58
227
|
* The parameters sent in the request are not valid.
|
|
59
228
|
*
|
|
229
|
+
* @throws {@link MediaPackageServiceException}
|
|
230
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
60
231
|
*
|
|
61
232
|
*/
|
|
62
233
|
export declare class DescribeOriginEndpointCommand extends $Command<DescribeOriginEndpointCommandInput, DescribeOriginEndpointCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -32,6 +32,37 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListChannelsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListChannelsResponse
|
|
36
|
+
* // Channels: [ // __listOfChannel
|
|
37
|
+
* // { // Channel
|
|
38
|
+
* // Arn: "STRING_VALUE",
|
|
39
|
+
* // CreatedAt: "STRING_VALUE",
|
|
40
|
+
* // Description: "STRING_VALUE",
|
|
41
|
+
* // EgressAccessLogs: { // EgressAccessLogs
|
|
42
|
+
* // LogGroupName: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // HlsIngest: { // HlsIngest
|
|
45
|
+
* // IngestEndpoints: [ // __listOfIngestEndpoint
|
|
46
|
+
* // { // IngestEndpoint
|
|
47
|
+
* // Id: "STRING_VALUE",
|
|
48
|
+
* // Password: "STRING_VALUE",
|
|
49
|
+
* // Url: "STRING_VALUE",
|
|
50
|
+
* // Username: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // },
|
|
54
|
+
* // Id: "STRING_VALUE",
|
|
55
|
+
* // IngressAccessLogs: { // IngressAccessLogs
|
|
56
|
+
* // LogGroupName: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // Tags: { // Tags
|
|
59
|
+
* // "<keys>": "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // NextToken: "STRING_VALUE",
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
35
66
|
* ```
|
|
36
67
|
*
|
|
37
68
|
* @param ListChannelsCommandInput - {@link ListChannelsCommandInput}
|
|
@@ -58,6 +89,8 @@ export interface ListChannelsCommandOutput extends ListChannelsResponse, __Metad
|
|
|
58
89
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
59
90
|
* The parameters sent in the request are not valid.
|
|
60
91
|
*
|
|
92
|
+
* @throws {@link MediaPackageServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
61
94
|
*
|
|
62
95
|
*/
|
|
63
96
|
export declare class ListChannelsCommand extends $Command<ListChannelsCommandInput, ListChannelsCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -34,6 +34,27 @@ export interface ListHarvestJobsCommandOutput extends ListHarvestJobsResponse, _
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListHarvestJobsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListHarvestJobsResponse
|
|
38
|
+
* // HarvestJobs: [ // __listOfHarvestJob
|
|
39
|
+
* // { // HarvestJob
|
|
40
|
+
* // Arn: "STRING_VALUE",
|
|
41
|
+
* // ChannelId: "STRING_VALUE",
|
|
42
|
+
* // CreatedAt: "STRING_VALUE",
|
|
43
|
+
* // EndTime: "STRING_VALUE",
|
|
44
|
+
* // Id: "STRING_VALUE",
|
|
45
|
+
* // OriginEndpointId: "STRING_VALUE",
|
|
46
|
+
* // S3Destination: { // S3Destination
|
|
47
|
+
* // BucketName: "STRING_VALUE", // required
|
|
48
|
+
* // ManifestKey: "STRING_VALUE", // required
|
|
49
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // StartTime: "STRING_VALUE",
|
|
52
|
+
* // Status: "IN_PROGRESS" || "SUCCEEDED" || "FAILED",
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // NextToken: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
37
58
|
* ```
|
|
38
59
|
*
|
|
39
60
|
* @param ListHarvestJobsCommandInput - {@link ListHarvestJobsCommandInput}
|
|
@@ -60,6 +81,8 @@ export interface ListHarvestJobsCommandOutput extends ListHarvestJobsResponse, _
|
|
|
60
81
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
61
82
|
* The parameters sent in the request are not valid.
|
|
62
83
|
*
|
|
84
|
+
* @throws {@link MediaPackageServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
63
86
|
*
|
|
64
87
|
*/
|
|
65
88
|
export declare class ListHarvestJobsCommand extends $Command<ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -33,6 +33,180 @@ export interface ListOriginEndpointsCommandOutput extends ListOriginEndpointsRes
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListOriginEndpointsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListOriginEndpointsResponse
|
|
37
|
+
* // NextToken: "STRING_VALUE",
|
|
38
|
+
* // OriginEndpoints: [ // __listOfOriginEndpoint
|
|
39
|
+
* // { // OriginEndpoint
|
|
40
|
+
* // Arn: "STRING_VALUE",
|
|
41
|
+
* // Authorization: { // Authorization
|
|
42
|
+
* // CdnIdentifierSecret: "STRING_VALUE", // required
|
|
43
|
+
* // SecretsRoleArn: "STRING_VALUE", // required
|
|
44
|
+
* // },
|
|
45
|
+
* // ChannelId: "STRING_VALUE",
|
|
46
|
+
* // CmafPackage: { // CmafPackage
|
|
47
|
+
* // Encryption: { // CmafEncryption
|
|
48
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
49
|
+
* // EncryptionMethod: "SAMPLE_AES" || "AES_CTR",
|
|
50
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
51
|
+
* // SpekeKeyProvider: { // SpekeKeyProvider
|
|
52
|
+
* // CertificateArn: "STRING_VALUE",
|
|
53
|
+
* // EncryptionContractConfiguration: { // EncryptionContractConfiguration
|
|
54
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
55
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
58
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
59
|
+
* // SystemIds: [ // __listOf__string // required
|
|
60
|
+
* // "STRING_VALUE",
|
|
61
|
+
* // ],
|
|
62
|
+
* // Url: "STRING_VALUE", // required
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // HlsManifests: [ // __listOfHlsManifest
|
|
66
|
+
* // { // HlsManifest
|
|
67
|
+
* // AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
68
|
+
* // Id: "STRING_VALUE", // required
|
|
69
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
70
|
+
* // ManifestName: "STRING_VALUE",
|
|
71
|
+
* // PlaylistType: "NONE" || "EVENT" || "VOD",
|
|
72
|
+
* // PlaylistWindowSeconds: Number("int"),
|
|
73
|
+
* // ProgramDateTimeIntervalSeconds: Number("int"),
|
|
74
|
+
* // Url: "STRING_VALUE",
|
|
75
|
+
* // AdTriggers: [ // AdTriggers
|
|
76
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
77
|
+
* // ],
|
|
78
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
79
|
+
* // },
|
|
80
|
+
* // ],
|
|
81
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
82
|
+
* // SegmentPrefix: "STRING_VALUE",
|
|
83
|
+
* // StreamSelection: { // StreamSelection
|
|
84
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
85
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
86
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
87
|
+
* // },
|
|
88
|
+
* // },
|
|
89
|
+
* // CreatedAt: "STRING_VALUE",
|
|
90
|
+
* // DashPackage: { // DashPackage
|
|
91
|
+
* // AdTriggers: [
|
|
92
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
93
|
+
* // ],
|
|
94
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
95
|
+
* // Encryption: { // DashEncryption
|
|
96
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
97
|
+
* // SpekeKeyProvider: {
|
|
98
|
+
* // CertificateArn: "STRING_VALUE",
|
|
99
|
+
* // EncryptionContractConfiguration: {
|
|
100
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
101
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
102
|
+
* // },
|
|
103
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
104
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
105
|
+
* // SystemIds: [ // required
|
|
106
|
+
* // "STRING_VALUE",
|
|
107
|
+
* // ],
|
|
108
|
+
* // Url: "STRING_VALUE", // required
|
|
109
|
+
* // },
|
|
110
|
+
* // },
|
|
111
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
112
|
+
* // ManifestLayout: "FULL" || "COMPACT",
|
|
113
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
114
|
+
* // MinBufferTimeSeconds: Number("int"),
|
|
115
|
+
* // MinUpdatePeriodSeconds: Number("int"),
|
|
116
|
+
* // PeriodTriggers: [ // __listOf__PeriodTriggersElement
|
|
117
|
+
* // "ADS",
|
|
118
|
+
* // ],
|
|
119
|
+
* // Profile: "NONE" || "HBBTV_1_5" || "HYBRIDCAST" || "DVB_DASH_2014",
|
|
120
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
121
|
+
* // SegmentTemplateFormat: "NUMBER_WITH_TIMELINE" || "TIME_WITH_TIMELINE" || "NUMBER_WITH_DURATION",
|
|
122
|
+
* // StreamSelection: {
|
|
123
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
124
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
125
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
126
|
+
* // },
|
|
127
|
+
* // SuggestedPresentationDelaySeconds: Number("int"),
|
|
128
|
+
* // UtcTiming: "NONE" || "HTTP-HEAD" || "HTTP-ISO" || "HTTP-XSDATE",
|
|
129
|
+
* // UtcTimingUri: "STRING_VALUE",
|
|
130
|
+
* // },
|
|
131
|
+
* // Description: "STRING_VALUE",
|
|
132
|
+
* // HlsPackage: { // HlsPackage
|
|
133
|
+
* // AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
134
|
+
* // AdTriggers: [
|
|
135
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
136
|
+
* // ],
|
|
137
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
138
|
+
* // Encryption: { // HlsEncryption
|
|
139
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
140
|
+
* // EncryptionMethod: "AES_128" || "SAMPLE_AES",
|
|
141
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
142
|
+
* // RepeatExtXKey: true || false,
|
|
143
|
+
* // SpekeKeyProvider: {
|
|
144
|
+
* // CertificateArn: "STRING_VALUE",
|
|
145
|
+
* // EncryptionContractConfiguration: {
|
|
146
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
147
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
148
|
+
* // },
|
|
149
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
150
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
151
|
+
* // SystemIds: [ // required
|
|
152
|
+
* // "STRING_VALUE",
|
|
153
|
+
* // ],
|
|
154
|
+
* // Url: "STRING_VALUE", // required
|
|
155
|
+
* // },
|
|
156
|
+
* // },
|
|
157
|
+
* // IncludeDvbSubtitles: true || false,
|
|
158
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
159
|
+
* // PlaylistType: "NONE" || "EVENT" || "VOD",
|
|
160
|
+
* // PlaylistWindowSeconds: Number("int"),
|
|
161
|
+
* // ProgramDateTimeIntervalSeconds: Number("int"),
|
|
162
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
163
|
+
* // StreamSelection: {
|
|
164
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
165
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
166
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
167
|
+
* // },
|
|
168
|
+
* // UseAudioRenditionGroup: true || false,
|
|
169
|
+
* // },
|
|
170
|
+
* // Id: "STRING_VALUE",
|
|
171
|
+
* // ManifestName: "STRING_VALUE",
|
|
172
|
+
* // MssPackage: { // MssPackage
|
|
173
|
+
* // Encryption: { // MssEncryption
|
|
174
|
+
* // SpekeKeyProvider: {
|
|
175
|
+
* // CertificateArn: "STRING_VALUE",
|
|
176
|
+
* // EncryptionContractConfiguration: {
|
|
177
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
178
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
179
|
+
* // },
|
|
180
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
181
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
182
|
+
* // SystemIds: [ // required
|
|
183
|
+
* // "STRING_VALUE",
|
|
184
|
+
* // ],
|
|
185
|
+
* // Url: "STRING_VALUE", // required
|
|
186
|
+
* // },
|
|
187
|
+
* // },
|
|
188
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
189
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
190
|
+
* // StreamSelection: {
|
|
191
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
192
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
193
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
194
|
+
* // },
|
|
195
|
+
* // },
|
|
196
|
+
* // Origination: "ALLOW" || "DENY",
|
|
197
|
+
* // StartoverWindowSeconds: Number("int"),
|
|
198
|
+
* // Tags: { // Tags
|
|
199
|
+
* // "<keys>": "STRING_VALUE",
|
|
200
|
+
* // },
|
|
201
|
+
* // TimeDelaySeconds: Number("int"),
|
|
202
|
+
* // Url: "STRING_VALUE",
|
|
203
|
+
* // Whitelist: [
|
|
204
|
+
* // "STRING_VALUE",
|
|
205
|
+
* // ],
|
|
206
|
+
* // },
|
|
207
|
+
* // ],
|
|
208
|
+
* // };
|
|
209
|
+
*
|
|
36
210
|
* ```
|
|
37
211
|
*
|
|
38
212
|
* @param ListOriginEndpointsCommandInput - {@link ListOriginEndpointsCommandInput}
|
|
@@ -59,6 +233,8 @@ export interface ListOriginEndpointsCommandOutput extends ListOriginEndpointsRes
|
|
|
59
233
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
60
234
|
* The parameters sent in the request are not valid.
|
|
61
235
|
*
|
|
236
|
+
* @throws {@link MediaPackageServiceException}
|
|
237
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
62
238
|
*
|
|
63
239
|
*/
|
|
64
240
|
export declare class ListOriginEndpointsCommand extends $Command<ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -33,6 +33,32 @@ export interface RotateChannelCredentialsCommandOutput extends RotateChannelCred
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new RotateChannelCredentialsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // RotateChannelCredentialsResponse
|
|
37
|
+
* // Arn: "STRING_VALUE",
|
|
38
|
+
* // CreatedAt: "STRING_VALUE",
|
|
39
|
+
* // Description: "STRING_VALUE",
|
|
40
|
+
* // EgressAccessLogs: { // EgressAccessLogs
|
|
41
|
+
* // LogGroupName: "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // HlsIngest: { // HlsIngest
|
|
44
|
+
* // IngestEndpoints: [ // __listOfIngestEndpoint
|
|
45
|
+
* // { // IngestEndpoint
|
|
46
|
+
* // Id: "STRING_VALUE",
|
|
47
|
+
* // Password: "STRING_VALUE",
|
|
48
|
+
* // Url: "STRING_VALUE",
|
|
49
|
+
* // Username: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // },
|
|
53
|
+
* // Id: "STRING_VALUE",
|
|
54
|
+
* // IngressAccessLogs: { // IngressAccessLogs
|
|
55
|
+
* // LogGroupName: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // Tags: { // Tags
|
|
58
|
+
* // "<keys>": "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
36
62
|
* ```
|
|
37
63
|
*
|
|
38
64
|
* @param RotateChannelCredentialsCommandInput - {@link RotateChannelCredentialsCommandInput}
|
|
@@ -59,6 +85,8 @@ export interface RotateChannelCredentialsCommandOutput extends RotateChannelCred
|
|
|
59
85
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
60
86
|
* The parameters sent in the request are not valid.
|
|
61
87
|
*
|
|
88
|
+
* @throws {@link MediaPackageServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
62
90
|
*
|
|
63
91
|
*/
|
|
64
92
|
export declare class RotateChannelCredentialsCommand extends $Command<RotateChannelCredentialsCommandInput, RotateChannelCredentialsCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -32,6 +32,32 @@ export interface RotateIngestEndpointCredentialsCommandOutput extends RotateInge
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RotateIngestEndpointCredentialsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // RotateIngestEndpointCredentialsResponse
|
|
36
|
+
* // Arn: "STRING_VALUE",
|
|
37
|
+
* // CreatedAt: "STRING_VALUE",
|
|
38
|
+
* // Description: "STRING_VALUE",
|
|
39
|
+
* // EgressAccessLogs: { // EgressAccessLogs
|
|
40
|
+
* // LogGroupName: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // HlsIngest: { // HlsIngest
|
|
43
|
+
* // IngestEndpoints: [ // __listOfIngestEndpoint
|
|
44
|
+
* // { // IngestEndpoint
|
|
45
|
+
* // Id: "STRING_VALUE",
|
|
46
|
+
* // Password: "STRING_VALUE",
|
|
47
|
+
* // Url: "STRING_VALUE",
|
|
48
|
+
* // Username: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // },
|
|
52
|
+
* // Id: "STRING_VALUE",
|
|
53
|
+
* // IngressAccessLogs: { // IngressAccessLogs
|
|
54
|
+
* // LogGroupName: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // Tags: { // Tags
|
|
57
|
+
* // "<keys>": "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
35
61
|
* ```
|
|
36
62
|
*
|
|
37
63
|
* @param RotateIngestEndpointCredentialsCommandInput - {@link RotateIngestEndpointCredentialsCommandInput}
|
|
@@ -58,6 +84,8 @@ export interface RotateIngestEndpointCredentialsCommandOutput extends RotateInge
|
|
|
58
84
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
59
85
|
* The parameters sent in the request are not valid.
|
|
60
86
|
*
|
|
87
|
+
* @throws {@link MediaPackageServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
61
89
|
*
|
|
62
90
|
*/
|
|
63
91
|
export declare class RotateIngestEndpointCredentialsCommand extends $Command<RotateIngestEndpointCredentialsCommandInput, RotateIngestEndpointCredentialsCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -32,6 +32,32 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateChannelCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // UpdateChannelResponse
|
|
36
|
+
* // Arn: "STRING_VALUE",
|
|
37
|
+
* // CreatedAt: "STRING_VALUE",
|
|
38
|
+
* // Description: "STRING_VALUE",
|
|
39
|
+
* // EgressAccessLogs: { // EgressAccessLogs
|
|
40
|
+
* // LogGroupName: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // HlsIngest: { // HlsIngest
|
|
43
|
+
* // IngestEndpoints: [ // __listOfIngestEndpoint
|
|
44
|
+
* // { // IngestEndpoint
|
|
45
|
+
* // Id: "STRING_VALUE",
|
|
46
|
+
* // Password: "STRING_VALUE",
|
|
47
|
+
* // Url: "STRING_VALUE",
|
|
48
|
+
* // Username: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // },
|
|
52
|
+
* // Id: "STRING_VALUE",
|
|
53
|
+
* // IngressAccessLogs: { // IngressAccessLogs
|
|
54
|
+
* // LogGroupName: "STRING_VALUE",
|
|
55
|
+
* // },
|
|
56
|
+
* // Tags: { // Tags
|
|
57
|
+
* // "<keys>": "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
35
61
|
* ```
|
|
36
62
|
*
|
|
37
63
|
* @param UpdateChannelCommandInput - {@link UpdateChannelCommandInput}
|
|
@@ -58,6 +84,8 @@ export interface UpdateChannelCommandOutput extends UpdateChannelResponse, __Met
|
|
|
58
84
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
59
85
|
* The parameters sent in the request are not valid.
|
|
60
86
|
*
|
|
87
|
+
* @throws {@link MediaPackageServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
61
89
|
*
|
|
62
90
|
*/
|
|
63
91
|
export declare class UpdateChannelCommand extends $Command<UpdateChannelCommandInput, UpdateChannelCommandOutput, MediaPackageClientResolvedConfig> {
|
|
@@ -188,6 +188,175 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
|
|
|
188
188
|
* };
|
|
189
189
|
* const command = new UpdateOriginEndpointCommand(input);
|
|
190
190
|
* const response = await client.send(command);
|
|
191
|
+
* // { // UpdateOriginEndpointResponse
|
|
192
|
+
* // Arn: "STRING_VALUE",
|
|
193
|
+
* // Authorization: { // Authorization
|
|
194
|
+
* // CdnIdentifierSecret: "STRING_VALUE", // required
|
|
195
|
+
* // SecretsRoleArn: "STRING_VALUE", // required
|
|
196
|
+
* // },
|
|
197
|
+
* // ChannelId: "STRING_VALUE",
|
|
198
|
+
* // CmafPackage: { // CmafPackage
|
|
199
|
+
* // Encryption: { // CmafEncryption
|
|
200
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
201
|
+
* // EncryptionMethod: "SAMPLE_AES" || "AES_CTR",
|
|
202
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
203
|
+
* // SpekeKeyProvider: { // SpekeKeyProvider
|
|
204
|
+
* // CertificateArn: "STRING_VALUE",
|
|
205
|
+
* // EncryptionContractConfiguration: { // EncryptionContractConfiguration
|
|
206
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
207
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
208
|
+
* // },
|
|
209
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
210
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
211
|
+
* // SystemIds: [ // __listOf__string // required
|
|
212
|
+
* // "STRING_VALUE",
|
|
213
|
+
* // ],
|
|
214
|
+
* // Url: "STRING_VALUE", // required
|
|
215
|
+
* // },
|
|
216
|
+
* // },
|
|
217
|
+
* // HlsManifests: [ // __listOfHlsManifest
|
|
218
|
+
* // { // HlsManifest
|
|
219
|
+
* // AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
220
|
+
* // Id: "STRING_VALUE", // required
|
|
221
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
222
|
+
* // ManifestName: "STRING_VALUE",
|
|
223
|
+
* // PlaylistType: "NONE" || "EVENT" || "VOD",
|
|
224
|
+
* // PlaylistWindowSeconds: Number("int"),
|
|
225
|
+
* // ProgramDateTimeIntervalSeconds: Number("int"),
|
|
226
|
+
* // Url: "STRING_VALUE",
|
|
227
|
+
* // AdTriggers: [ // AdTriggers
|
|
228
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
229
|
+
* // ],
|
|
230
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
231
|
+
* // },
|
|
232
|
+
* // ],
|
|
233
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
234
|
+
* // SegmentPrefix: "STRING_VALUE",
|
|
235
|
+
* // StreamSelection: { // StreamSelection
|
|
236
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
237
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
238
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
239
|
+
* // },
|
|
240
|
+
* // },
|
|
241
|
+
* // CreatedAt: "STRING_VALUE",
|
|
242
|
+
* // DashPackage: { // DashPackage
|
|
243
|
+
* // AdTriggers: [
|
|
244
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
245
|
+
* // ],
|
|
246
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
247
|
+
* // Encryption: { // DashEncryption
|
|
248
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
249
|
+
* // SpekeKeyProvider: {
|
|
250
|
+
* // CertificateArn: "STRING_VALUE",
|
|
251
|
+
* // EncryptionContractConfiguration: {
|
|
252
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
253
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
254
|
+
* // },
|
|
255
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
256
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
257
|
+
* // SystemIds: [ // required
|
|
258
|
+
* // "STRING_VALUE",
|
|
259
|
+
* // ],
|
|
260
|
+
* // Url: "STRING_VALUE", // required
|
|
261
|
+
* // },
|
|
262
|
+
* // },
|
|
263
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
264
|
+
* // ManifestLayout: "FULL" || "COMPACT",
|
|
265
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
266
|
+
* // MinBufferTimeSeconds: Number("int"),
|
|
267
|
+
* // MinUpdatePeriodSeconds: Number("int"),
|
|
268
|
+
* // PeriodTriggers: [ // __listOf__PeriodTriggersElement
|
|
269
|
+
* // "ADS",
|
|
270
|
+
* // ],
|
|
271
|
+
* // Profile: "NONE" || "HBBTV_1_5" || "HYBRIDCAST" || "DVB_DASH_2014",
|
|
272
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
273
|
+
* // SegmentTemplateFormat: "NUMBER_WITH_TIMELINE" || "TIME_WITH_TIMELINE" || "NUMBER_WITH_DURATION",
|
|
274
|
+
* // StreamSelection: {
|
|
275
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
276
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
277
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
278
|
+
* // },
|
|
279
|
+
* // SuggestedPresentationDelaySeconds: Number("int"),
|
|
280
|
+
* // UtcTiming: "NONE" || "HTTP-HEAD" || "HTTP-ISO" || "HTTP-XSDATE",
|
|
281
|
+
* // UtcTimingUri: "STRING_VALUE",
|
|
282
|
+
* // },
|
|
283
|
+
* // Description: "STRING_VALUE",
|
|
284
|
+
* // HlsPackage: { // HlsPackage
|
|
285
|
+
* // AdMarkers: "NONE" || "SCTE35_ENHANCED" || "PASSTHROUGH" || "DATERANGE",
|
|
286
|
+
* // AdTriggers: [
|
|
287
|
+
* // "SPLICE_INSERT" || "BREAK" || "PROVIDER_ADVERTISEMENT" || "DISTRIBUTOR_ADVERTISEMENT" || "PROVIDER_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_PLACEMENT_OPPORTUNITY" || "PROVIDER_OVERLAY_PLACEMENT_OPPORTUNITY" || "DISTRIBUTOR_OVERLAY_PLACEMENT_OPPORTUNITY",
|
|
288
|
+
* // ],
|
|
289
|
+
* // AdsOnDeliveryRestrictions: "NONE" || "RESTRICTED" || "UNRESTRICTED" || "BOTH",
|
|
290
|
+
* // Encryption: { // HlsEncryption
|
|
291
|
+
* // ConstantInitializationVector: "STRING_VALUE",
|
|
292
|
+
* // EncryptionMethod: "AES_128" || "SAMPLE_AES",
|
|
293
|
+
* // KeyRotationIntervalSeconds: Number("int"),
|
|
294
|
+
* // RepeatExtXKey: true || false,
|
|
295
|
+
* // SpekeKeyProvider: {
|
|
296
|
+
* // CertificateArn: "STRING_VALUE",
|
|
297
|
+
* // EncryptionContractConfiguration: {
|
|
298
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
299
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
300
|
+
* // },
|
|
301
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
302
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
303
|
+
* // SystemIds: [ // required
|
|
304
|
+
* // "STRING_VALUE",
|
|
305
|
+
* // ],
|
|
306
|
+
* // Url: "STRING_VALUE", // required
|
|
307
|
+
* // },
|
|
308
|
+
* // },
|
|
309
|
+
* // IncludeDvbSubtitles: true || false,
|
|
310
|
+
* // IncludeIframeOnlyStream: true || false,
|
|
311
|
+
* // PlaylistType: "NONE" || "EVENT" || "VOD",
|
|
312
|
+
* // PlaylistWindowSeconds: Number("int"),
|
|
313
|
+
* // ProgramDateTimeIntervalSeconds: Number("int"),
|
|
314
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
315
|
+
* // StreamSelection: {
|
|
316
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
317
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
318
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
319
|
+
* // },
|
|
320
|
+
* // UseAudioRenditionGroup: true || false,
|
|
321
|
+
* // },
|
|
322
|
+
* // Id: "STRING_VALUE",
|
|
323
|
+
* // ManifestName: "STRING_VALUE",
|
|
324
|
+
* // MssPackage: { // MssPackage
|
|
325
|
+
* // Encryption: { // MssEncryption
|
|
326
|
+
* // SpekeKeyProvider: {
|
|
327
|
+
* // CertificateArn: "STRING_VALUE",
|
|
328
|
+
* // EncryptionContractConfiguration: {
|
|
329
|
+
* // PresetSpeke20Audio: "PRESET-AUDIO-1" || "PRESET-AUDIO-2" || "PRESET-AUDIO-3" || "SHARED" || "UNENCRYPTED", // required
|
|
330
|
+
* // PresetSpeke20Video: "PRESET-VIDEO-1" || "PRESET-VIDEO-2" || "PRESET-VIDEO-3" || "PRESET-VIDEO-4" || "PRESET-VIDEO-5" || "PRESET-VIDEO-6" || "PRESET-VIDEO-7" || "PRESET-VIDEO-8" || "SHARED" || "UNENCRYPTED", // required
|
|
331
|
+
* // },
|
|
332
|
+
* // ResourceId: "STRING_VALUE", // required
|
|
333
|
+
* // RoleArn: "STRING_VALUE", // required
|
|
334
|
+
* // SystemIds: [ // required
|
|
335
|
+
* // "STRING_VALUE",
|
|
336
|
+
* // ],
|
|
337
|
+
* // Url: "STRING_VALUE", // required
|
|
338
|
+
* // },
|
|
339
|
+
* // },
|
|
340
|
+
* // ManifestWindowSeconds: Number("int"),
|
|
341
|
+
* // SegmentDurationSeconds: Number("int"),
|
|
342
|
+
* // StreamSelection: {
|
|
343
|
+
* // MaxVideoBitsPerSecond: Number("int"),
|
|
344
|
+
* // MinVideoBitsPerSecond: Number("int"),
|
|
345
|
+
* // StreamOrder: "ORIGINAL" || "VIDEO_BITRATE_ASCENDING" || "VIDEO_BITRATE_DESCENDING",
|
|
346
|
+
* // },
|
|
347
|
+
* // },
|
|
348
|
+
* // Origination: "ALLOW" || "DENY",
|
|
349
|
+
* // StartoverWindowSeconds: Number("int"),
|
|
350
|
+
* // Tags: { // Tags
|
|
351
|
+
* // "<keys>": "STRING_VALUE",
|
|
352
|
+
* // },
|
|
353
|
+
* // TimeDelaySeconds: Number("int"),
|
|
354
|
+
* // Url: "STRING_VALUE",
|
|
355
|
+
* // Whitelist: [
|
|
356
|
+
* // "STRING_VALUE",
|
|
357
|
+
* // ],
|
|
358
|
+
* // };
|
|
359
|
+
*
|
|
191
360
|
* ```
|
|
192
361
|
*
|
|
193
362
|
* @param UpdateOriginEndpointCommandInput - {@link UpdateOriginEndpointCommandInput}
|
|
@@ -214,6 +383,8 @@ export interface UpdateOriginEndpointCommandOutput extends UpdateOriginEndpointR
|
|
|
214
383
|
* @throws {@link UnprocessableEntityException} (client fault)
|
|
215
384
|
* The parameters sent in the request are not valid.
|
|
216
385
|
*
|
|
386
|
+
* @throws {@link MediaPackageServiceException}
|
|
387
|
+
* <p>Base exception class for all service exceptions from MediaPackage service.</p>
|
|
217
388
|
*
|
|
218
389
|
*/
|
|
219
390
|
export declare class UpdateOriginEndpointCommand extends $Command<UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput, MediaPackageClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediapackage",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediapackage Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|