@aws-sdk/client-mediaconvert 3.170.0 → 3.178.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/CHANGELOG.md +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/MediaConvert.d.ts +0 -28
- package/dist-types/ts3.4/MediaConvertClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AssociateCertificateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateJobTemplateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreatePresetCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteJobTemplateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeletePresetCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisassociateCertificateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetJobTemplateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetPresetCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/GetQueueCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListJobTemplatesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListPresetsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/PutPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateJobTemplateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdatePresetCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateQueueCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/MediaConvertServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -686
- package/dist-types/ts3.4/models/models_1.d.ts +0 -669
- package/dist-types/ts3.4/models/models_2.d.ts +0 -55
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -60,7 +60,6 @@ export declare enum M2tsRateMode {
|
|
|
60
60
|
CBR = "CBR",
|
|
61
61
|
VBR = "VBR",
|
|
62
62
|
}
|
|
63
|
-
|
|
64
63
|
export interface M2tsScte35Esam {
|
|
65
64
|
Scte35EsamPid?: number;
|
|
66
65
|
}
|
|
@@ -80,84 +79,45 @@ export declare enum M2tsSegmentationStyle {
|
|
|
80
79
|
MAINTAIN_CADENCE = "MAINTAIN_CADENCE",
|
|
81
80
|
RESET_CADENCE = "RESET_CADENCE",
|
|
82
81
|
}
|
|
83
|
-
|
|
84
82
|
export interface M2tsSettings {
|
|
85
83
|
AudioBufferModel?: M2tsAudioBufferModel | string;
|
|
86
|
-
|
|
87
84
|
AudioDuration?: M2tsAudioDuration | string;
|
|
88
|
-
|
|
89
85
|
AudioFramesPerPes?: number;
|
|
90
|
-
|
|
91
86
|
AudioPids?: number[];
|
|
92
|
-
|
|
93
87
|
Bitrate?: number;
|
|
94
|
-
|
|
95
88
|
BufferModel?: M2tsBufferModel | string;
|
|
96
|
-
|
|
97
89
|
DataPTSControl?: M2tsDataPtsControl | string;
|
|
98
|
-
|
|
99
90
|
DvbNitSettings?: DvbNitSettings;
|
|
100
|
-
|
|
101
91
|
DvbSdtSettings?: DvbSdtSettings;
|
|
102
|
-
|
|
103
92
|
DvbSubPids?: number[];
|
|
104
|
-
|
|
105
93
|
DvbTdtSettings?: DvbTdtSettings;
|
|
106
|
-
|
|
107
94
|
DvbTeletextPid?: number;
|
|
108
|
-
|
|
109
95
|
EbpAudioInterval?: M2tsEbpAudioInterval | string;
|
|
110
|
-
|
|
111
96
|
EbpPlacement?: M2tsEbpPlacement | string;
|
|
112
|
-
|
|
113
97
|
EsRateInPes?: M2tsEsRateInPes | string;
|
|
114
|
-
|
|
115
98
|
ForceTsVideoEbpOrder?: M2tsForceTsVideoEbpOrder | string;
|
|
116
|
-
|
|
117
99
|
FragmentTime?: number;
|
|
118
|
-
|
|
119
100
|
KlvMetadata?: M2tsKlvMetadata | string;
|
|
120
|
-
|
|
121
101
|
MaxPcrInterval?: number;
|
|
122
|
-
|
|
123
102
|
MinEbpInterval?: number;
|
|
124
|
-
|
|
125
103
|
NielsenId3?: M2tsNielsenId3 | string;
|
|
126
|
-
|
|
127
104
|
NullPacketBitrate?: number;
|
|
128
|
-
|
|
129
105
|
PatInterval?: number;
|
|
130
|
-
|
|
131
106
|
PcrControl?: M2tsPcrControl | string;
|
|
132
|
-
|
|
133
107
|
PcrPid?: number;
|
|
134
|
-
|
|
135
108
|
PmtInterval?: number;
|
|
136
|
-
|
|
137
109
|
PmtPid?: number;
|
|
138
|
-
|
|
139
110
|
PrivateMetadataPid?: number;
|
|
140
|
-
|
|
141
111
|
ProgramNumber?: number;
|
|
142
|
-
|
|
143
112
|
RateMode?: M2tsRateMode | string;
|
|
144
|
-
|
|
145
113
|
Scte35Esam?: M2tsScte35Esam;
|
|
146
|
-
|
|
147
114
|
Scte35Pid?: number;
|
|
148
|
-
|
|
149
115
|
Scte35Source?: M2tsScte35Source | string;
|
|
150
|
-
|
|
151
116
|
SegmentationMarkers?: M2tsSegmentationMarkers | string;
|
|
152
|
-
|
|
153
117
|
SegmentationStyle?: M2tsSegmentationStyle | string;
|
|
154
|
-
|
|
155
118
|
SegmentationTime?: number;
|
|
156
|
-
|
|
157
119
|
TimedMetadataPid?: number;
|
|
158
|
-
|
|
159
120
|
TransportStreamId?: number;
|
|
160
|
-
|
|
161
121
|
VideoPid?: number;
|
|
162
122
|
}
|
|
163
123
|
export declare enum M3u8AudioDuration {
|
|
@@ -184,44 +144,25 @@ export declare enum TimedMetadata {
|
|
|
184
144
|
NONE = "NONE",
|
|
185
145
|
PASSTHROUGH = "PASSTHROUGH",
|
|
186
146
|
}
|
|
187
|
-
|
|
188
147
|
export interface M3u8Settings {
|
|
189
148
|
AudioDuration?: M3u8AudioDuration | string;
|
|
190
|
-
|
|
191
149
|
AudioFramesPerPes?: number;
|
|
192
|
-
|
|
193
150
|
AudioPids?: number[];
|
|
194
|
-
|
|
195
151
|
DataPTSControl?: M3u8DataPtsControl | string;
|
|
196
|
-
|
|
197
152
|
MaxPcrInterval?: number;
|
|
198
|
-
|
|
199
153
|
NielsenId3?: M3u8NielsenId3 | string;
|
|
200
|
-
|
|
201
154
|
PatInterval?: number;
|
|
202
|
-
|
|
203
155
|
PcrControl?: M3u8PcrControl | string;
|
|
204
|
-
|
|
205
156
|
PcrPid?: number;
|
|
206
|
-
|
|
207
157
|
PmtInterval?: number;
|
|
208
|
-
|
|
209
158
|
PmtPid?: number;
|
|
210
|
-
|
|
211
159
|
PrivateMetadataPid?: number;
|
|
212
|
-
|
|
213
160
|
ProgramNumber?: number;
|
|
214
|
-
|
|
215
161
|
Scte35Pid?: number;
|
|
216
|
-
|
|
217
162
|
Scte35Source?: M3u8Scte35Source | string;
|
|
218
|
-
|
|
219
163
|
TimedMetadata?: TimedMetadata | string;
|
|
220
|
-
|
|
221
164
|
TimedMetadataPid?: number;
|
|
222
|
-
|
|
223
165
|
TransportStreamId?: number;
|
|
224
|
-
|
|
225
166
|
VideoPid?: number;
|
|
226
167
|
}
|
|
227
168
|
export declare enum MovClapAtom {
|
|
@@ -244,16 +185,11 @@ export declare enum MovReference {
|
|
|
244
185
|
EXTERNAL = "EXTERNAL",
|
|
245
186
|
SELF_CONTAINED = "SELF_CONTAINED",
|
|
246
187
|
}
|
|
247
|
-
|
|
248
188
|
export interface MovSettings {
|
|
249
189
|
ClapAtom?: MovClapAtom | string;
|
|
250
|
-
|
|
251
190
|
CslgAtom?: MovCslgAtom | string;
|
|
252
|
-
|
|
253
191
|
Mpeg2FourCCControl?: MovMpeg2FourCCControl | string;
|
|
254
|
-
|
|
255
192
|
PaddingControl?: MovPaddingControl | string;
|
|
256
|
-
|
|
257
193
|
Reference?: MovReference | string;
|
|
258
194
|
}
|
|
259
195
|
export declare enum Mp4CslgAtom {
|
|
@@ -268,18 +204,12 @@ export declare enum Mp4MoovPlacement {
|
|
|
268
204
|
NORMAL = "NORMAL",
|
|
269
205
|
PROGRESSIVE_DOWNLOAD = "PROGRESSIVE_DOWNLOAD",
|
|
270
206
|
}
|
|
271
|
-
|
|
272
207
|
export interface Mp4Settings {
|
|
273
208
|
AudioDuration?: CmfcAudioDuration | string;
|
|
274
|
-
|
|
275
209
|
CslgAtom?: Mp4CslgAtom | string;
|
|
276
|
-
|
|
277
210
|
CttsVersion?: number;
|
|
278
|
-
|
|
279
211
|
FreeSpaceBox?: Mp4FreeSpaceBox | string;
|
|
280
|
-
|
|
281
212
|
MoovPlacement?: Mp4MoovPlacement | string;
|
|
282
|
-
|
|
283
213
|
Mp4MajorBrand?: string;
|
|
284
214
|
}
|
|
285
215
|
export declare enum MpdAccessibilityCaptionHints {
|
|
@@ -310,20 +240,13 @@ export declare enum MpdTimedMetadata {
|
|
|
310
240
|
NONE = "NONE",
|
|
311
241
|
PASSTHROUGH = "PASSTHROUGH",
|
|
312
242
|
}
|
|
313
|
-
|
|
314
243
|
export interface MpdSettings {
|
|
315
244
|
AccessibilityCaptionHints?: MpdAccessibilityCaptionHints | string;
|
|
316
|
-
|
|
317
245
|
AudioDuration?: MpdAudioDuration | string;
|
|
318
|
-
|
|
319
246
|
CaptionContainerType?: MpdCaptionContainerType | string;
|
|
320
|
-
|
|
321
247
|
KlvMetadata?: MpdKlvMetadata | string;
|
|
322
|
-
|
|
323
248
|
Scte35Esam?: MpdScte35Esam | string;
|
|
324
|
-
|
|
325
249
|
Scte35Source?: MpdScte35Source | string;
|
|
326
|
-
|
|
327
250
|
TimedMetadata?: MpdTimedMetadata | string;
|
|
328
251
|
}
|
|
329
252
|
export declare enum MxfAfdSignaling {
|
|
@@ -340,38 +263,24 @@ export declare enum MxfXavcDurationMode {
|
|
|
340
263
|
ALLOW_ANY_DURATION = "ALLOW_ANY_DURATION",
|
|
341
264
|
DROP_FRAMES_FOR_COMPLIANCE = "DROP_FRAMES_FOR_COMPLIANCE",
|
|
342
265
|
}
|
|
343
|
-
|
|
344
266
|
export interface MxfXavcProfileSettings {
|
|
345
267
|
DurationMode?: MxfXavcDurationMode | string;
|
|
346
|
-
|
|
347
268
|
MaxAncDataSize?: number;
|
|
348
269
|
}
|
|
349
|
-
|
|
350
270
|
export interface MxfSettings {
|
|
351
271
|
AfdSignaling?: MxfAfdSignaling | string;
|
|
352
|
-
|
|
353
272
|
Profile?: MxfProfile | string;
|
|
354
|
-
|
|
355
273
|
XavcProfileSettings?: MxfXavcProfileSettings;
|
|
356
274
|
}
|
|
357
|
-
|
|
358
275
|
export interface ContainerSettings {
|
|
359
276
|
CmfcSettings?: CmfcSettings;
|
|
360
|
-
|
|
361
277
|
Container?: ContainerType | string;
|
|
362
|
-
|
|
363
278
|
F4vSettings?: F4vSettings;
|
|
364
|
-
|
|
365
279
|
M2tsSettings?: M2tsSettings;
|
|
366
|
-
|
|
367
280
|
M3u8Settings?: M3u8Settings;
|
|
368
|
-
|
|
369
281
|
MovSettings?: MovSettings;
|
|
370
|
-
|
|
371
282
|
Mp4Settings?: Mp4Settings;
|
|
372
|
-
|
|
373
283
|
MpdSettings?: MpdSettings;
|
|
374
|
-
|
|
375
284
|
MxfSettings?: MxfSettings;
|
|
376
285
|
}
|
|
377
286
|
export declare enum HlsAudioOnlyContainer {
|
|
@@ -392,23 +301,15 @@ export declare enum HlsIFrameOnlyManifest {
|
|
|
392
301
|
EXCLUDE = "EXCLUDE",
|
|
393
302
|
INCLUDE = "INCLUDE",
|
|
394
303
|
}
|
|
395
|
-
|
|
396
304
|
export interface HlsSettings {
|
|
397
305
|
AudioGroupId?: string;
|
|
398
|
-
|
|
399
306
|
AudioOnlyContainer?: HlsAudioOnlyContainer | string;
|
|
400
|
-
|
|
401
307
|
AudioRenditionSets?: string;
|
|
402
|
-
|
|
403
308
|
AudioTrackType?: HlsAudioTrackType | string;
|
|
404
|
-
|
|
405
309
|
DescriptiveVideoServiceFlag?: HlsDescriptiveVideoServiceFlag | string;
|
|
406
|
-
|
|
407
310
|
IFrameOnlyManifest?: HlsIFrameOnlyManifest | string;
|
|
408
|
-
|
|
409
311
|
SegmentModifier?: string;
|
|
410
312
|
}
|
|
411
|
-
|
|
412
313
|
export interface OutputSettings {
|
|
413
314
|
HlsSettings?: HlsSettings;
|
|
414
315
|
}
|
|
@@ -442,10 +343,8 @@ export declare enum Av1FramerateConversionAlgorithm {
|
|
|
442
343
|
FRAMEFORMER = "FRAMEFORMER",
|
|
443
344
|
INTERPOLATE = "INTERPOLATE",
|
|
444
345
|
}
|
|
445
|
-
|
|
446
346
|
export interface Av1QvbrSettings {
|
|
447
347
|
QvbrQualityLevel?: number;
|
|
448
|
-
|
|
449
348
|
QvbrQualityLevelFineTune?: number;
|
|
450
349
|
}
|
|
451
350
|
export declare enum Av1RateControlMode {
|
|
@@ -455,32 +354,19 @@ export declare enum Av1SpatialAdaptiveQuantization {
|
|
|
455
354
|
DISABLED = "DISABLED",
|
|
456
355
|
ENABLED = "ENABLED",
|
|
457
356
|
}
|
|
458
|
-
|
|
459
357
|
export interface Av1Settings {
|
|
460
358
|
AdaptiveQuantization?: Av1AdaptiveQuantization | string;
|
|
461
|
-
|
|
462
359
|
BitDepth?: Av1BitDepth | string;
|
|
463
|
-
|
|
464
360
|
FramerateControl?: Av1FramerateControl | string;
|
|
465
|
-
|
|
466
361
|
FramerateConversionAlgorithm?: Av1FramerateConversionAlgorithm | string;
|
|
467
|
-
|
|
468
362
|
FramerateDenominator?: number;
|
|
469
|
-
|
|
470
363
|
FramerateNumerator?: number;
|
|
471
|
-
|
|
472
364
|
GopSize?: number;
|
|
473
|
-
|
|
474
365
|
MaxBitrate?: number;
|
|
475
|
-
|
|
476
366
|
NumberBFramesBetweenReferenceFrames?: number;
|
|
477
|
-
|
|
478
367
|
QvbrSettings?: Av1QvbrSettings;
|
|
479
|
-
|
|
480
368
|
RateControlMode?: Av1RateControlMode | string;
|
|
481
|
-
|
|
482
369
|
Slices?: number;
|
|
483
|
-
|
|
484
370
|
SpatialAdaptiveQuantization?: Av1SpatialAdaptiveQuantization | string;
|
|
485
371
|
}
|
|
486
372
|
export declare enum AvcIntraClass {
|
|
@@ -493,7 +379,6 @@ export declare enum AvcIntraUhdQualityTuningLevel {
|
|
|
493
379
|
MULTI_PASS = "MULTI_PASS",
|
|
494
380
|
SINGLE_PASS = "SINGLE_PASS",
|
|
495
381
|
}
|
|
496
|
-
|
|
497
382
|
export interface AvcIntraUhdSettings {
|
|
498
383
|
QualityTuningLevel?: AvcIntraUhdQualityTuningLevel | string;
|
|
499
384
|
}
|
|
@@ -525,26 +410,16 @@ export declare enum AvcIntraTelecine {
|
|
|
525
410
|
HARD = "HARD",
|
|
526
411
|
NONE = "NONE",
|
|
527
412
|
}
|
|
528
|
-
|
|
529
413
|
export interface AvcIntraSettings {
|
|
530
414
|
AvcIntraClass?: AvcIntraClass | string;
|
|
531
|
-
|
|
532
415
|
AvcIntraUhdSettings?: AvcIntraUhdSettings;
|
|
533
|
-
|
|
534
416
|
FramerateControl?: AvcIntraFramerateControl | string;
|
|
535
|
-
|
|
536
417
|
FramerateConversionAlgorithm?: AvcIntraFramerateConversionAlgorithm | string;
|
|
537
|
-
|
|
538
418
|
FramerateDenominator?: number;
|
|
539
|
-
|
|
540
419
|
FramerateNumerator?: number;
|
|
541
|
-
|
|
542
420
|
InterlaceMode?: AvcIntraInterlaceMode | string;
|
|
543
|
-
|
|
544
421
|
ScanTypeConversionMode?: AvcIntraScanTypeConversionMode | string;
|
|
545
|
-
|
|
546
422
|
SlowPal?: AvcIntraSlowPal | string;
|
|
547
|
-
|
|
548
423
|
Telecine?: AvcIntraTelecine | string;
|
|
549
424
|
}
|
|
550
425
|
export declare enum VideoCodec {
|
|
@@ -560,14 +435,10 @@ export declare enum VideoCodec {
|
|
|
560
435
|
VP9 = "VP9",
|
|
561
436
|
XAVC = "XAVC",
|
|
562
437
|
}
|
|
563
|
-
|
|
564
438
|
export interface FrameCaptureSettings {
|
|
565
439
|
FramerateDenominator?: number;
|
|
566
|
-
|
|
567
440
|
FramerateNumerator?: number;
|
|
568
|
-
|
|
569
441
|
MaxCaptures?: number;
|
|
570
|
-
|
|
571
442
|
Quality?: number;
|
|
572
443
|
}
|
|
573
444
|
export declare enum H264AdaptiveQuantization {
|
|
@@ -657,12 +528,9 @@ export declare enum H264QualityTuningLevel {
|
|
|
657
528
|
SINGLE_PASS = "SINGLE_PASS",
|
|
658
529
|
SINGLE_PASS_HQ = "SINGLE_PASS_HQ",
|
|
659
530
|
}
|
|
660
|
-
|
|
661
531
|
export interface H264QvbrSettings {
|
|
662
532
|
MaxAverageBitrate?: number;
|
|
663
|
-
|
|
664
533
|
QvbrQualityLevel?: number;
|
|
665
|
-
|
|
666
534
|
QvbrQualityLevelFineTune?: number;
|
|
667
535
|
}
|
|
668
536
|
export declare enum H264RateControlMode {
|
|
@@ -708,86 +576,46 @@ export declare enum H264UnregisteredSeiTimecode {
|
|
|
708
576
|
DISABLED = "DISABLED",
|
|
709
577
|
ENABLED = "ENABLED",
|
|
710
578
|
}
|
|
711
|
-
|
|
712
579
|
export interface H264Settings {
|
|
713
580
|
AdaptiveQuantization?: H264AdaptiveQuantization | string;
|
|
714
|
-
|
|
715
581
|
Bitrate?: number;
|
|
716
|
-
|
|
717
582
|
CodecLevel?: H264CodecLevel | string;
|
|
718
|
-
|
|
719
583
|
CodecProfile?: H264CodecProfile | string;
|
|
720
|
-
|
|
721
584
|
DynamicSubGop?: H264DynamicSubGop | string;
|
|
722
|
-
|
|
723
585
|
EntropyEncoding?: H264EntropyEncoding | string;
|
|
724
|
-
|
|
725
586
|
FieldEncoding?: H264FieldEncoding | string;
|
|
726
|
-
|
|
727
587
|
FlickerAdaptiveQuantization?: H264FlickerAdaptiveQuantization | string;
|
|
728
|
-
|
|
729
588
|
FramerateControl?: H264FramerateControl | string;
|
|
730
|
-
|
|
731
589
|
FramerateConversionAlgorithm?: H264FramerateConversionAlgorithm | string;
|
|
732
|
-
|
|
733
590
|
FramerateDenominator?: number;
|
|
734
|
-
|
|
735
591
|
FramerateNumerator?: number;
|
|
736
|
-
|
|
737
592
|
GopBReference?: H264GopBReference | string;
|
|
738
|
-
|
|
739
593
|
GopClosedCadence?: number;
|
|
740
|
-
|
|
741
594
|
GopSize?: number;
|
|
742
|
-
|
|
743
595
|
GopSizeUnits?: H264GopSizeUnits | string;
|
|
744
|
-
|
|
745
596
|
HrdBufferInitialFillPercentage?: number;
|
|
746
|
-
|
|
747
597
|
HrdBufferSize?: number;
|
|
748
|
-
|
|
749
598
|
InterlaceMode?: H264InterlaceMode | string;
|
|
750
|
-
|
|
751
599
|
MaxBitrate?: number;
|
|
752
|
-
|
|
753
600
|
MinIInterval?: number;
|
|
754
|
-
|
|
755
601
|
NumberBFramesBetweenReferenceFrames?: number;
|
|
756
|
-
|
|
757
602
|
NumberReferenceFrames?: number;
|
|
758
|
-
|
|
759
603
|
ParControl?: H264ParControl | string;
|
|
760
|
-
|
|
761
604
|
ParDenominator?: number;
|
|
762
|
-
|
|
763
605
|
ParNumerator?: number;
|
|
764
|
-
|
|
765
606
|
QualityTuningLevel?: H264QualityTuningLevel | string;
|
|
766
|
-
|
|
767
607
|
QvbrSettings?: H264QvbrSettings;
|
|
768
|
-
|
|
769
608
|
RateControlMode?: H264RateControlMode | string;
|
|
770
|
-
|
|
771
609
|
RepeatPps?: H264RepeatPps | string;
|
|
772
|
-
|
|
773
610
|
ScanTypeConversionMode?: H264ScanTypeConversionMode | string;
|
|
774
|
-
|
|
775
611
|
SceneChangeDetect?: H264SceneChangeDetect | string;
|
|
776
|
-
|
|
777
612
|
Slices?: number;
|
|
778
|
-
|
|
779
613
|
SlowPal?: H264SlowPal | string;
|
|
780
|
-
|
|
781
614
|
Softness?: number;
|
|
782
|
-
|
|
783
615
|
SpatialAdaptiveQuantization?: H264SpatialAdaptiveQuantization | string;
|
|
784
|
-
|
|
785
616
|
Syntax?: H264Syntax | string;
|
|
786
|
-
|
|
787
617
|
Telecine?: H264Telecine | string;
|
|
788
|
-
|
|
789
618
|
TemporalAdaptiveQuantization?: H264TemporalAdaptiveQuantization | string;
|
|
790
|
-
|
|
791
619
|
UnregisteredSeiTimecode?: H264UnregisteredSeiTimecode | string;
|
|
792
620
|
}
|
|
793
621
|
export declare enum H265AdaptiveQuantization {
|
|
@@ -871,12 +699,9 @@ export declare enum H265QualityTuningLevel {
|
|
|
871
699
|
SINGLE_PASS = "SINGLE_PASS",
|
|
872
700
|
SINGLE_PASS_HQ = "SINGLE_PASS_HQ",
|
|
873
701
|
}
|
|
874
|
-
|
|
875
702
|
export interface H265QvbrSettings {
|
|
876
703
|
MaxAverageBitrate?: number;
|
|
877
|
-
|
|
878
704
|
QvbrQualityLevel?: number;
|
|
879
|
-
|
|
880
705
|
QvbrQualityLevelFineTune?: number;
|
|
881
706
|
}
|
|
882
707
|
export declare enum H265RateControlMode {
|
|
@@ -931,86 +756,46 @@ export declare enum H265WriteMp4PackagingType {
|
|
|
931
756
|
HEV1 = "HEV1",
|
|
932
757
|
HVC1 = "HVC1",
|
|
933
758
|
}
|
|
934
|
-
|
|
935
759
|
export interface H265Settings {
|
|
936
760
|
AdaptiveQuantization?: H265AdaptiveQuantization | string;
|
|
937
|
-
|
|
938
761
|
AlternateTransferFunctionSei?: H265AlternateTransferFunctionSei | string;
|
|
939
|
-
|
|
940
762
|
Bitrate?: number;
|
|
941
|
-
|
|
942
763
|
CodecLevel?: H265CodecLevel | string;
|
|
943
|
-
|
|
944
764
|
CodecProfile?: H265CodecProfile | string;
|
|
945
|
-
|
|
946
765
|
DynamicSubGop?: H265DynamicSubGop | string;
|
|
947
|
-
|
|
948
766
|
FlickerAdaptiveQuantization?: H265FlickerAdaptiveQuantization | string;
|
|
949
|
-
|
|
950
767
|
FramerateControl?: H265FramerateControl | string;
|
|
951
|
-
|
|
952
768
|
FramerateConversionAlgorithm?: H265FramerateConversionAlgorithm | string;
|
|
953
|
-
|
|
954
769
|
FramerateDenominator?: number;
|
|
955
|
-
|
|
956
770
|
FramerateNumerator?: number;
|
|
957
|
-
|
|
958
771
|
GopBReference?: H265GopBReference | string;
|
|
959
|
-
|
|
960
772
|
GopClosedCadence?: number;
|
|
961
|
-
|
|
962
773
|
GopSize?: number;
|
|
963
|
-
|
|
964
774
|
GopSizeUnits?: H265GopSizeUnits | string;
|
|
965
|
-
|
|
966
775
|
HrdBufferInitialFillPercentage?: number;
|
|
967
|
-
|
|
968
776
|
HrdBufferSize?: number;
|
|
969
|
-
|
|
970
777
|
InterlaceMode?: H265InterlaceMode | string;
|
|
971
|
-
|
|
972
778
|
MaxBitrate?: number;
|
|
973
|
-
|
|
974
779
|
MinIInterval?: number;
|
|
975
|
-
|
|
976
780
|
NumberBFramesBetweenReferenceFrames?: number;
|
|
977
|
-
|
|
978
781
|
NumberReferenceFrames?: number;
|
|
979
|
-
|
|
980
782
|
ParControl?: H265ParControl | string;
|
|
981
|
-
|
|
982
783
|
ParDenominator?: number;
|
|
983
|
-
|
|
984
784
|
ParNumerator?: number;
|
|
985
|
-
|
|
986
785
|
QualityTuningLevel?: H265QualityTuningLevel | string;
|
|
987
|
-
|
|
988
786
|
QvbrSettings?: H265QvbrSettings;
|
|
989
|
-
|
|
990
787
|
RateControlMode?: H265RateControlMode | string;
|
|
991
|
-
|
|
992
788
|
SampleAdaptiveOffsetFilterMode?: H265SampleAdaptiveOffsetFilterMode | string;
|
|
993
|
-
|
|
994
789
|
ScanTypeConversionMode?: H265ScanTypeConversionMode | string;
|
|
995
|
-
|
|
996
790
|
SceneChangeDetect?: H265SceneChangeDetect | string;
|
|
997
|
-
|
|
998
791
|
Slices?: number;
|
|
999
|
-
|
|
1000
792
|
SlowPal?: H265SlowPal | string;
|
|
1001
|
-
|
|
1002
793
|
SpatialAdaptiveQuantization?: H265SpatialAdaptiveQuantization | string;
|
|
1003
|
-
|
|
1004
794
|
Telecine?: H265Telecine | string;
|
|
1005
|
-
|
|
1006
795
|
TemporalAdaptiveQuantization?: H265TemporalAdaptiveQuantization | string;
|
|
1007
|
-
|
|
1008
796
|
TemporalIds?: H265TemporalIds | string;
|
|
1009
|
-
|
|
1010
797
|
Tiles?: H265Tiles | string;
|
|
1011
|
-
|
|
1012
798
|
UnregisteredSeiTimecode?: H265UnregisteredSeiTimecode | string;
|
|
1013
|
-
|
|
1014
799
|
WriteMp4PackagingType?: H265WriteMp4PackagingType | string;
|
|
1015
800
|
}
|
|
1016
801
|
export declare enum Mpeg2AdaptiveQuantization {
|
|
@@ -1102,70 +887,38 @@ export declare enum Mpeg2TemporalAdaptiveQuantization {
|
|
|
1102
887
|
DISABLED = "DISABLED",
|
|
1103
888
|
ENABLED = "ENABLED",
|
|
1104
889
|
}
|
|
1105
|
-
|
|
1106
890
|
export interface Mpeg2Settings {
|
|
1107
891
|
AdaptiveQuantization?: Mpeg2AdaptiveQuantization | string;
|
|
1108
|
-
|
|
1109
892
|
Bitrate?: number;
|
|
1110
|
-
|
|
1111
893
|
CodecLevel?: Mpeg2CodecLevel | string;
|
|
1112
|
-
|
|
1113
894
|
CodecProfile?: Mpeg2CodecProfile | string;
|
|
1114
|
-
|
|
1115
895
|
DynamicSubGop?: Mpeg2DynamicSubGop | string;
|
|
1116
|
-
|
|
1117
896
|
FramerateControl?: Mpeg2FramerateControl | string;
|
|
1118
|
-
|
|
1119
897
|
FramerateConversionAlgorithm?: Mpeg2FramerateConversionAlgorithm | string;
|
|
1120
|
-
|
|
1121
898
|
FramerateDenominator?: number;
|
|
1122
|
-
|
|
1123
899
|
FramerateNumerator?: number;
|
|
1124
|
-
|
|
1125
900
|
GopClosedCadence?: number;
|
|
1126
|
-
|
|
1127
901
|
GopSize?: number;
|
|
1128
|
-
|
|
1129
902
|
GopSizeUnits?: Mpeg2GopSizeUnits | string;
|
|
1130
|
-
|
|
1131
903
|
HrdBufferInitialFillPercentage?: number;
|
|
1132
|
-
|
|
1133
904
|
HrdBufferSize?: number;
|
|
1134
|
-
|
|
1135
905
|
InterlaceMode?: Mpeg2InterlaceMode | string;
|
|
1136
|
-
|
|
1137
906
|
IntraDcPrecision?: Mpeg2IntraDcPrecision | string;
|
|
1138
|
-
|
|
1139
907
|
MaxBitrate?: number;
|
|
1140
|
-
|
|
1141
908
|
MinIInterval?: number;
|
|
1142
|
-
|
|
1143
909
|
NumberBFramesBetweenReferenceFrames?: number;
|
|
1144
|
-
|
|
1145
910
|
ParControl?: Mpeg2ParControl | string;
|
|
1146
|
-
|
|
1147
911
|
ParDenominator?: number;
|
|
1148
|
-
|
|
1149
912
|
ParNumerator?: number;
|
|
1150
|
-
|
|
1151
913
|
QualityTuningLevel?: Mpeg2QualityTuningLevel | string;
|
|
1152
|
-
|
|
1153
914
|
RateControlMode?: Mpeg2RateControlMode | string;
|
|
1154
|
-
|
|
1155
915
|
ScanTypeConversionMode?: Mpeg2ScanTypeConversionMode | string;
|
|
1156
|
-
|
|
1157
916
|
SceneChangeDetect?: Mpeg2SceneChangeDetect | string;
|
|
1158
|
-
|
|
1159
917
|
SlowPal?: Mpeg2SlowPal | string;
|
|
1160
|
-
|
|
1161
918
|
Softness?: number;
|
|
1162
|
-
|
|
1163
919
|
SpatialAdaptiveQuantization?: Mpeg2SpatialAdaptiveQuantization | string;
|
|
1164
|
-
|
|
1165
920
|
Syntax?: Mpeg2Syntax | string;
|
|
1166
|
-
|
|
1167
921
|
Telecine?: Mpeg2Telecine | string;
|
|
1168
|
-
|
|
1169
922
|
TemporalAdaptiveQuantization?: Mpeg2TemporalAdaptiveQuantization | string;
|
|
1170
923
|
}
|
|
1171
924
|
export declare enum ProresChromaSampling {
|
|
@@ -1212,32 +965,19 @@ export declare enum ProresTelecine {
|
|
|
1212
965
|
HARD = "HARD",
|
|
1213
966
|
NONE = "NONE",
|
|
1214
967
|
}
|
|
1215
|
-
|
|
1216
968
|
export interface ProresSettings {
|
|
1217
969
|
ChromaSampling?: ProresChromaSampling | string;
|
|
1218
|
-
|
|
1219
970
|
CodecProfile?: ProresCodecProfile | string;
|
|
1220
|
-
|
|
1221
971
|
FramerateControl?: ProresFramerateControl | string;
|
|
1222
|
-
|
|
1223
972
|
FramerateConversionAlgorithm?: ProresFramerateConversionAlgorithm | string;
|
|
1224
|
-
|
|
1225
973
|
FramerateDenominator?: number;
|
|
1226
|
-
|
|
1227
974
|
FramerateNumerator?: number;
|
|
1228
|
-
|
|
1229
975
|
InterlaceMode?: ProresInterlaceMode | string;
|
|
1230
|
-
|
|
1231
976
|
ParControl?: ProresParControl | string;
|
|
1232
|
-
|
|
1233
977
|
ParDenominator?: number;
|
|
1234
|
-
|
|
1235
978
|
ParNumerator?: number;
|
|
1236
|
-
|
|
1237
979
|
ScanTypeConversionMode?: ProresScanTypeConversionMode | string;
|
|
1238
|
-
|
|
1239
980
|
SlowPal?: ProresSlowPal | string;
|
|
1240
|
-
|
|
1241
981
|
Telecine?: ProresTelecine | string;
|
|
1242
982
|
}
|
|
1243
983
|
export declare enum Vc3FramerateControl {
|
|
@@ -1270,24 +1010,15 @@ export declare enum Vc3Class {
|
|
|
1270
1010
|
CLASS_220_10BIT = "CLASS_220_10BIT",
|
|
1271
1011
|
CLASS_220_8BIT = "CLASS_220_8BIT",
|
|
1272
1012
|
}
|
|
1273
|
-
|
|
1274
1013
|
export interface Vc3Settings {
|
|
1275
1014
|
FramerateControl?: Vc3FramerateControl | string;
|
|
1276
|
-
|
|
1277
1015
|
FramerateConversionAlgorithm?: Vc3FramerateConversionAlgorithm | string;
|
|
1278
|
-
|
|
1279
1016
|
FramerateDenominator?: number;
|
|
1280
|
-
|
|
1281
1017
|
FramerateNumerator?: number;
|
|
1282
|
-
|
|
1283
1018
|
InterlaceMode?: Vc3InterlaceMode | string;
|
|
1284
|
-
|
|
1285
1019
|
ScanTypeConversionMode?: Vc3ScanTypeConversionMode | string;
|
|
1286
|
-
|
|
1287
1020
|
SlowPal?: Vc3SlowPal | string;
|
|
1288
|
-
|
|
1289
1021
|
Telecine?: Vc3Telecine | string;
|
|
1290
|
-
|
|
1291
1022
|
Vc3Class?: Vc3Class | string;
|
|
1292
1023
|
}
|
|
1293
1024
|
export declare enum Vp8FramerateControl {
|
|
@@ -1310,32 +1041,19 @@ export declare enum Vp8QualityTuningLevel {
|
|
|
1310
1041
|
export declare enum Vp8RateControlMode {
|
|
1311
1042
|
VBR = "VBR",
|
|
1312
1043
|
}
|
|
1313
|
-
|
|
1314
1044
|
export interface Vp8Settings {
|
|
1315
1045
|
Bitrate?: number;
|
|
1316
|
-
|
|
1317
1046
|
FramerateControl?: Vp8FramerateControl | string;
|
|
1318
|
-
|
|
1319
1047
|
FramerateConversionAlgorithm?: Vp8FramerateConversionAlgorithm | string;
|
|
1320
|
-
|
|
1321
1048
|
FramerateDenominator?: number;
|
|
1322
|
-
|
|
1323
1049
|
FramerateNumerator?: number;
|
|
1324
|
-
|
|
1325
1050
|
GopSize?: number;
|
|
1326
|
-
|
|
1327
1051
|
HrdBufferSize?: number;
|
|
1328
|
-
|
|
1329
1052
|
MaxBitrate?: number;
|
|
1330
|
-
|
|
1331
1053
|
ParControl?: Vp8ParControl | string;
|
|
1332
|
-
|
|
1333
1054
|
ParDenominator?: number;
|
|
1334
|
-
|
|
1335
1055
|
ParNumerator?: number;
|
|
1336
|
-
|
|
1337
1056
|
QualityTuningLevel?: Vp8QualityTuningLevel | string;
|
|
1338
|
-
|
|
1339
1057
|
RateControlMode?: Vp8RateControlMode | string;
|
|
1340
1058
|
}
|
|
1341
1059
|
export declare enum Vp9FramerateControl {
|
|
@@ -1358,32 +1076,19 @@ export declare enum Vp9QualityTuningLevel {
|
|
|
1358
1076
|
export declare enum Vp9RateControlMode {
|
|
1359
1077
|
VBR = "VBR",
|
|
1360
1078
|
}
|
|
1361
|
-
|
|
1362
1079
|
export interface Vp9Settings {
|
|
1363
1080
|
Bitrate?: number;
|
|
1364
|
-
|
|
1365
1081
|
FramerateControl?: Vp9FramerateControl | string;
|
|
1366
|
-
|
|
1367
1082
|
FramerateConversionAlgorithm?: Vp9FramerateConversionAlgorithm | string;
|
|
1368
|
-
|
|
1369
1083
|
FramerateDenominator?: number;
|
|
1370
|
-
|
|
1371
1084
|
FramerateNumerator?: number;
|
|
1372
|
-
|
|
1373
1085
|
GopSize?: number;
|
|
1374
|
-
|
|
1375
1086
|
HrdBufferSize?: number;
|
|
1376
|
-
|
|
1377
1087
|
MaxBitrate?: number;
|
|
1378
|
-
|
|
1379
1088
|
ParControl?: Vp9ParControl | string;
|
|
1380
|
-
|
|
1381
1089
|
ParDenominator?: number;
|
|
1382
|
-
|
|
1383
1090
|
ParNumerator?: number;
|
|
1384
|
-
|
|
1385
1091
|
QualityTuningLevel?: Vp9QualityTuningLevel | string;
|
|
1386
|
-
|
|
1387
1092
|
RateControlMode?: Vp9RateControlMode | string;
|
|
1388
1093
|
}
|
|
1389
1094
|
export declare enum XavcAdaptiveQuantization {
|
|
@@ -1433,7 +1138,6 @@ export declare enum Xavc4kIntraCbgProfileClass {
|
|
|
1433
1138
|
CLASS_300 = "CLASS_300",
|
|
1434
1139
|
CLASS_480 = "CLASS_480",
|
|
1435
1140
|
}
|
|
1436
|
-
|
|
1437
1141
|
export interface Xavc4kIntraCbgProfileSettings {
|
|
1438
1142
|
XavcClass?: Xavc4kIntraCbgProfileClass | string;
|
|
1439
1143
|
}
|
|
@@ -1442,7 +1146,6 @@ export declare enum Xavc4kIntraVbrProfileClass {
|
|
|
1442
1146
|
CLASS_300 = "CLASS_300",
|
|
1443
1147
|
CLASS_480 = "CLASS_480",
|
|
1444
1148
|
}
|
|
1445
|
-
|
|
1446
1149
|
export interface Xavc4kIntraVbrProfileSettings {
|
|
1447
1150
|
XavcClass?: Xavc4kIntraVbrProfileClass | string;
|
|
1448
1151
|
}
|
|
@@ -1468,22 +1171,14 @@ export declare enum Xavc4kProfileQualityTuningLevel {
|
|
|
1468
1171
|
SINGLE_PASS = "SINGLE_PASS",
|
|
1469
1172
|
SINGLE_PASS_HQ = "SINGLE_PASS_HQ",
|
|
1470
1173
|
}
|
|
1471
|
-
|
|
1472
1174
|
export interface Xavc4kProfileSettings {
|
|
1473
1175
|
BitrateClass?: Xavc4kProfileBitrateClass | string;
|
|
1474
|
-
|
|
1475
1176
|
CodecProfile?: Xavc4kProfileCodecProfile | string;
|
|
1476
|
-
|
|
1477
1177
|
FlickerAdaptiveQuantization?: XavcFlickerAdaptiveQuantization | string;
|
|
1478
|
-
|
|
1479
1178
|
GopBReference?: XavcGopBReference | string;
|
|
1480
|
-
|
|
1481
1179
|
GopClosedCadence?: number;
|
|
1482
|
-
|
|
1483
1180
|
HrdBufferSize?: number;
|
|
1484
|
-
|
|
1485
1181
|
QualityTuningLevel?: Xavc4kProfileQualityTuningLevel | string;
|
|
1486
|
-
|
|
1487
1182
|
Slices?: number;
|
|
1488
1183
|
}
|
|
1489
1184
|
export declare enum XavcHdIntraCbgProfileClass {
|
|
@@ -1491,7 +1186,6 @@ export declare enum XavcHdIntraCbgProfileClass {
|
|
|
1491
1186
|
CLASS_200 = "CLASS_200",
|
|
1492
1187
|
CLASS_50 = "CLASS_50",
|
|
1493
1188
|
}
|
|
1494
|
-
|
|
1495
1189
|
export interface XavcHdIntraCbgProfileSettings {
|
|
1496
1190
|
XavcClass?: XavcHdIntraCbgProfileClass | string;
|
|
1497
1191
|
}
|
|
@@ -1516,84 +1210,47 @@ export declare enum XavcHdProfileTelecine {
|
|
|
1516
1210
|
HARD = "HARD",
|
|
1517
1211
|
NONE = "NONE",
|
|
1518
1212
|
}
|
|
1519
|
-
|
|
1520
1213
|
export interface XavcHdProfileSettings {
|
|
1521
1214
|
BitrateClass?: XavcHdProfileBitrateClass | string;
|
|
1522
|
-
|
|
1523
1215
|
FlickerAdaptiveQuantization?: XavcFlickerAdaptiveQuantization | string;
|
|
1524
|
-
|
|
1525
1216
|
GopBReference?: XavcGopBReference | string;
|
|
1526
|
-
|
|
1527
1217
|
GopClosedCadence?: number;
|
|
1528
|
-
|
|
1529
1218
|
HrdBufferSize?: number;
|
|
1530
|
-
|
|
1531
1219
|
InterlaceMode?: XavcInterlaceMode | string;
|
|
1532
|
-
|
|
1533
1220
|
QualityTuningLevel?: XavcHdProfileQualityTuningLevel | string;
|
|
1534
|
-
|
|
1535
1221
|
Slices?: number;
|
|
1536
|
-
|
|
1537
1222
|
Telecine?: XavcHdProfileTelecine | string;
|
|
1538
1223
|
}
|
|
1539
|
-
|
|
1540
1224
|
export interface XavcSettings {
|
|
1541
1225
|
AdaptiveQuantization?: XavcAdaptiveQuantization | string;
|
|
1542
|
-
|
|
1543
1226
|
EntropyEncoding?: XavcEntropyEncoding | string;
|
|
1544
|
-
|
|
1545
1227
|
FramerateControl?: XavcFramerateControl | string;
|
|
1546
|
-
|
|
1547
1228
|
FramerateConversionAlgorithm?: XavcFramerateConversionAlgorithm | string;
|
|
1548
|
-
|
|
1549
1229
|
FramerateDenominator?: number;
|
|
1550
|
-
|
|
1551
1230
|
FramerateNumerator?: number;
|
|
1552
|
-
|
|
1553
1231
|
Profile?: XavcProfile | string;
|
|
1554
|
-
|
|
1555
1232
|
SlowPal?: XavcSlowPal | string;
|
|
1556
|
-
|
|
1557
1233
|
Softness?: number;
|
|
1558
|
-
|
|
1559
1234
|
SpatialAdaptiveQuantization?: XavcSpatialAdaptiveQuantization | string;
|
|
1560
|
-
|
|
1561
1235
|
TemporalAdaptiveQuantization?: XavcTemporalAdaptiveQuantization | string;
|
|
1562
|
-
|
|
1563
1236
|
Xavc4kIntraCbgProfileSettings?: Xavc4kIntraCbgProfileSettings;
|
|
1564
|
-
|
|
1565
1237
|
Xavc4kIntraVbrProfileSettings?: Xavc4kIntraVbrProfileSettings;
|
|
1566
|
-
|
|
1567
1238
|
Xavc4kProfileSettings?: Xavc4kProfileSettings;
|
|
1568
|
-
|
|
1569
1239
|
XavcHdIntraCbgProfileSettings?: XavcHdIntraCbgProfileSettings;
|
|
1570
|
-
|
|
1571
1240
|
XavcHdProfileSettings?: XavcHdProfileSettings;
|
|
1572
1241
|
}
|
|
1573
|
-
|
|
1574
1242
|
export interface VideoCodecSettings {
|
|
1575
1243
|
Av1Settings?: Av1Settings;
|
|
1576
|
-
|
|
1577
1244
|
AvcIntraSettings?: AvcIntraSettings;
|
|
1578
|
-
|
|
1579
1245
|
Codec?: VideoCodec | string;
|
|
1580
|
-
|
|
1581
1246
|
FrameCaptureSettings?: FrameCaptureSettings;
|
|
1582
|
-
|
|
1583
1247
|
H264Settings?: H264Settings;
|
|
1584
|
-
|
|
1585
1248
|
H265Settings?: H265Settings;
|
|
1586
|
-
|
|
1587
1249
|
Mpeg2Settings?: Mpeg2Settings;
|
|
1588
|
-
|
|
1589
1250
|
ProresSettings?: ProresSettings;
|
|
1590
|
-
|
|
1591
1251
|
Vc3Settings?: Vc3Settings;
|
|
1592
|
-
|
|
1593
1252
|
Vp8Settings?: Vp8Settings;
|
|
1594
|
-
|
|
1595
1253
|
Vp9Settings?: Vp9Settings;
|
|
1596
|
-
|
|
1597
1254
|
XavcSettings?: XavcSettings;
|
|
1598
1255
|
}
|
|
1599
1256
|
export declare enum ColorMetadata {
|
|
@@ -1628,20 +1285,13 @@ export declare enum SampleRangeConversion {
|
|
|
1628
1285
|
LIMITED_RANGE_SQUEEZE = "LIMITED_RANGE_SQUEEZE",
|
|
1629
1286
|
NONE = "NONE",
|
|
1630
1287
|
}
|
|
1631
|
-
|
|
1632
1288
|
export interface ColorCorrector {
|
|
1633
1289
|
Brightness?: number;
|
|
1634
|
-
|
|
1635
1290
|
ColorSpaceConversion?: ColorSpaceConversion | string;
|
|
1636
|
-
|
|
1637
1291
|
Contrast?: number;
|
|
1638
|
-
|
|
1639
1292
|
Hdr10Metadata?: Hdr10Metadata;
|
|
1640
|
-
|
|
1641
1293
|
Hue?: number;
|
|
1642
|
-
|
|
1643
1294
|
SampleRangeConversion?: SampleRangeConversion | string;
|
|
1644
|
-
|
|
1645
1295
|
Saturation?: number;
|
|
1646
1296
|
}
|
|
1647
1297
|
export declare enum DeinterlaceAlgorithm {
|
|
@@ -1659,18 +1309,13 @@ export declare enum DeinterlacerMode {
|
|
|
1659
1309
|
DEINTERLACE = "DEINTERLACE",
|
|
1660
1310
|
INVERSE_TELECINE = "INVERSE_TELECINE",
|
|
1661
1311
|
}
|
|
1662
|
-
|
|
1663
1312
|
export interface Deinterlacer {
|
|
1664
1313
|
Algorithm?: DeinterlaceAlgorithm | string;
|
|
1665
|
-
|
|
1666
1314
|
Control?: DeinterlacerControl | string;
|
|
1667
|
-
|
|
1668
1315
|
Mode?: DeinterlacerMode | string;
|
|
1669
1316
|
}
|
|
1670
|
-
|
|
1671
1317
|
export interface DolbyVisionLevel6Metadata {
|
|
1672
1318
|
MaxCll?: number;
|
|
1673
|
-
|
|
1674
1319
|
MaxFall?: number;
|
|
1675
1320
|
}
|
|
1676
1321
|
export declare enum DolbyVisionLevel6Mode {
|
|
@@ -1686,20 +1331,14 @@ export declare enum DolbyVisionProfile {
|
|
|
1686
1331
|
PROFILE_5 = "PROFILE_5",
|
|
1687
1332
|
PROFILE_8_1 = "PROFILE_8_1",
|
|
1688
1333
|
}
|
|
1689
|
-
|
|
1690
1334
|
export interface DolbyVision {
|
|
1691
1335
|
L6Metadata?: DolbyVisionLevel6Metadata;
|
|
1692
|
-
|
|
1693
1336
|
L6Mode?: DolbyVisionLevel6Mode | string;
|
|
1694
|
-
|
|
1695
1337
|
Mapping?: DolbyVisionMapping | string;
|
|
1696
|
-
|
|
1697
1338
|
Profile?: DolbyVisionProfile | string;
|
|
1698
1339
|
}
|
|
1699
|
-
|
|
1700
1340
|
export interface Hdr10Plus {
|
|
1701
1341
|
MasteringMonitorNits?: number;
|
|
1702
|
-
|
|
1703
1342
|
TargetMonitorNits?: number;
|
|
1704
1343
|
}
|
|
1705
1344
|
export declare enum NoiseReducerFilter {
|
|
@@ -1712,16 +1351,12 @@ export declare enum NoiseReducerFilter {
|
|
|
1712
1351
|
SPATIAL = "SPATIAL",
|
|
1713
1352
|
TEMPORAL = "TEMPORAL",
|
|
1714
1353
|
}
|
|
1715
|
-
|
|
1716
1354
|
export interface NoiseReducerFilterSettings {
|
|
1717
1355
|
Strength?: number;
|
|
1718
1356
|
}
|
|
1719
|
-
|
|
1720
1357
|
export interface NoiseReducerSpatialFilterSettings {
|
|
1721
1358
|
PostFilterSharpenStrength?: number;
|
|
1722
|
-
|
|
1723
1359
|
Speed?: number;
|
|
1724
|
-
|
|
1725
1360
|
Strength?: number;
|
|
1726
1361
|
}
|
|
1727
1362
|
export declare enum NoiseFilterPostTemporalSharpening {
|
|
@@ -1734,28 +1369,19 @@ export declare enum NoiseFilterPostTemporalSharpeningStrength {
|
|
|
1734
1369
|
LOW = "LOW",
|
|
1735
1370
|
MEDIUM = "MEDIUM",
|
|
1736
1371
|
}
|
|
1737
|
-
|
|
1738
1372
|
export interface NoiseReducerTemporalFilterSettings {
|
|
1739
1373
|
AggressiveMode?: number;
|
|
1740
|
-
|
|
1741
1374
|
PostTemporalSharpening?: NoiseFilterPostTemporalSharpening | string;
|
|
1742
|
-
|
|
1743
1375
|
PostTemporalSharpeningStrength?:
|
|
1744
1376
|
| NoiseFilterPostTemporalSharpeningStrength
|
|
1745
1377
|
| string;
|
|
1746
|
-
|
|
1747
1378
|
Speed?: number;
|
|
1748
|
-
|
|
1749
1379
|
Strength?: number;
|
|
1750
1380
|
}
|
|
1751
|
-
|
|
1752
1381
|
export interface NoiseReducer {
|
|
1753
1382
|
Filter?: NoiseReducerFilter | string;
|
|
1754
|
-
|
|
1755
1383
|
FilterSettings?: NoiseReducerFilterSettings;
|
|
1756
|
-
|
|
1757
1384
|
SpatialFilterSettings?: NoiseReducerSpatialFilterSettings;
|
|
1758
|
-
|
|
1759
1385
|
TemporalFilterSettings?: NoiseReducerTemporalFilterSettings;
|
|
1760
1386
|
}
|
|
1761
1387
|
export declare enum WatermarkingStrength {
|
|
@@ -1765,17 +1391,12 @@ export declare enum WatermarkingStrength {
|
|
|
1765
1391
|
STRONGER = "STRONGER",
|
|
1766
1392
|
STRONGEST = "STRONGEST",
|
|
1767
1393
|
}
|
|
1768
|
-
|
|
1769
1394
|
export interface NexGuardFileMarkerSettings {
|
|
1770
1395
|
License?: string;
|
|
1771
|
-
|
|
1772
1396
|
Payload?: number;
|
|
1773
|
-
|
|
1774
1397
|
Preset?: string;
|
|
1775
|
-
|
|
1776
1398
|
Strength?: WatermarkingStrength | string;
|
|
1777
1399
|
}
|
|
1778
|
-
|
|
1779
1400
|
export interface PartnerWatermarking {
|
|
1780
1401
|
NexguardFileMarkerSettings?: NexGuardFileMarkerSettings;
|
|
1781
1402
|
}
|
|
@@ -1790,92 +1411,53 @@ export declare enum TimecodeBurninPosition {
|
|
|
1790
1411
|
TOP_LEFT = "TOP_LEFT",
|
|
1791
1412
|
TOP_RIGHT = "TOP_RIGHT",
|
|
1792
1413
|
}
|
|
1793
|
-
|
|
1794
1414
|
export interface TimecodeBurnin {
|
|
1795
1415
|
FontSize?: number;
|
|
1796
|
-
|
|
1797
1416
|
Position?: TimecodeBurninPosition | string;
|
|
1798
|
-
|
|
1799
1417
|
Prefix?: string;
|
|
1800
1418
|
}
|
|
1801
|
-
|
|
1802
1419
|
export interface VideoPreprocessor {
|
|
1803
1420
|
ColorCorrector?: ColorCorrector;
|
|
1804
|
-
|
|
1805
1421
|
Deinterlacer?: Deinterlacer;
|
|
1806
|
-
|
|
1807
1422
|
DolbyVision?: DolbyVision;
|
|
1808
|
-
|
|
1809
1423
|
Hdr10Plus?: Hdr10Plus;
|
|
1810
|
-
|
|
1811
1424
|
ImageInserter?: ImageInserter;
|
|
1812
|
-
|
|
1813
1425
|
NoiseReducer?: NoiseReducer;
|
|
1814
|
-
|
|
1815
1426
|
PartnerWatermarking?: PartnerWatermarking;
|
|
1816
|
-
|
|
1817
1427
|
TimecodeBurnin?: TimecodeBurnin;
|
|
1818
1428
|
}
|
|
1819
|
-
|
|
1820
1429
|
export interface VideoDescription {
|
|
1821
1430
|
AfdSignaling?: AfdSignaling | string;
|
|
1822
|
-
|
|
1823
1431
|
AntiAlias?: AntiAlias | string;
|
|
1824
|
-
|
|
1825
1432
|
CodecSettings?: VideoCodecSettings;
|
|
1826
|
-
|
|
1827
1433
|
ColorMetadata?: ColorMetadata | string;
|
|
1828
|
-
|
|
1829
1434
|
Crop?: Rectangle;
|
|
1830
|
-
|
|
1831
1435
|
DropFrameTimecode?: DropFrameTimecode | string;
|
|
1832
|
-
|
|
1833
1436
|
FixedAfd?: number;
|
|
1834
|
-
|
|
1835
1437
|
Height?: number;
|
|
1836
|
-
|
|
1837
1438
|
Position?: Rectangle;
|
|
1838
|
-
|
|
1839
1439
|
RespondToAfd?: RespondToAfd | string;
|
|
1840
|
-
|
|
1841
1440
|
ScalingBehavior?: ScalingBehavior | string;
|
|
1842
|
-
|
|
1843
1441
|
Sharpness?: number;
|
|
1844
|
-
|
|
1845
1442
|
TimecodeInsertion?: VideoTimecodeInsertion | string;
|
|
1846
|
-
|
|
1847
1443
|
VideoPreprocessors?: VideoPreprocessor;
|
|
1848
|
-
|
|
1849
1444
|
Width?: number;
|
|
1850
1445
|
}
|
|
1851
|
-
|
|
1852
1446
|
export interface Output {
|
|
1853
1447
|
AudioDescriptions?: AudioDescription[];
|
|
1854
|
-
|
|
1855
1448
|
CaptionDescriptions?: CaptionDescription[];
|
|
1856
|
-
|
|
1857
1449
|
ContainerSettings?: ContainerSettings;
|
|
1858
|
-
|
|
1859
1450
|
Extension?: string;
|
|
1860
|
-
|
|
1861
1451
|
NameModifier?: string;
|
|
1862
|
-
|
|
1863
1452
|
OutputSettings?: OutputSettings;
|
|
1864
|
-
|
|
1865
1453
|
Preset?: string;
|
|
1866
|
-
|
|
1867
1454
|
VideoDescription?: VideoDescription;
|
|
1868
1455
|
}
|
|
1869
|
-
|
|
1870
1456
|
export interface OutputGroup {
|
|
1871
1457
|
AutomatedEncodingSettings?: AutomatedEncodingSettings;
|
|
1872
|
-
|
|
1873
1458
|
CustomName?: string;
|
|
1874
|
-
|
|
1875
1459
|
Name?: string;
|
|
1876
|
-
|
|
1877
1460
|
OutputGroupSettings?: OutputGroupSettings;
|
|
1878
|
-
|
|
1879
1461
|
Outputs?: Output[];
|
|
1880
1462
|
}
|
|
1881
1463
|
export declare enum TimecodeSource {
|
|
@@ -1883,44 +1465,27 @@ export declare enum TimecodeSource {
|
|
|
1883
1465
|
SPECIFIEDSTART = "SPECIFIEDSTART",
|
|
1884
1466
|
ZEROBASED = "ZEROBASED",
|
|
1885
1467
|
}
|
|
1886
|
-
|
|
1887
1468
|
export interface TimecodeConfig {
|
|
1888
1469
|
Anchor?: string;
|
|
1889
|
-
|
|
1890
1470
|
Source?: TimecodeSource | string;
|
|
1891
|
-
|
|
1892
1471
|
Start?: string;
|
|
1893
|
-
|
|
1894
1472
|
TimestampOffset?: string;
|
|
1895
1473
|
}
|
|
1896
|
-
|
|
1897
1474
|
export interface TimedMetadataInsertion {
|
|
1898
1475
|
Id3Insertions?: Id3Insertion[];
|
|
1899
1476
|
}
|
|
1900
|
-
|
|
1901
1477
|
export interface JobSettings {
|
|
1902
1478
|
AdAvailOffset?: number;
|
|
1903
|
-
|
|
1904
1479
|
AvailBlanking?: AvailBlanking;
|
|
1905
|
-
|
|
1906
1480
|
Esam?: EsamSettings;
|
|
1907
|
-
|
|
1908
1481
|
ExtendedDataServices?: ExtendedDataServices;
|
|
1909
|
-
|
|
1910
1482
|
Inputs?: Input[];
|
|
1911
|
-
|
|
1912
1483
|
KantarWatermark?: KantarWatermarkSettings;
|
|
1913
|
-
|
|
1914
1484
|
MotionImageInserter?: MotionImageInserter;
|
|
1915
|
-
|
|
1916
1485
|
NielsenConfiguration?: NielsenConfiguration;
|
|
1917
|
-
|
|
1918
1486
|
NielsenNonLinearWatermark?: NielsenNonLinearWatermarkSettings;
|
|
1919
|
-
|
|
1920
1487
|
OutputGroups?: OutputGroup[];
|
|
1921
|
-
|
|
1922
1488
|
TimecodeConfig?: TimecodeConfig;
|
|
1923
|
-
|
|
1924
1489
|
TimedMetadataInsertion?: TimedMetadataInsertion;
|
|
1925
1490
|
}
|
|
1926
1491
|
export declare enum SimulateReservedQueue {
|
|
@@ -1951,150 +1516,85 @@ export declare enum StatusUpdateInterval {
|
|
|
1951
1516
|
SECONDS_60 = "SECONDS_60",
|
|
1952
1517
|
SECONDS_600 = "SECONDS_600",
|
|
1953
1518
|
}
|
|
1954
|
-
|
|
1955
1519
|
export interface Timing {
|
|
1956
1520
|
FinishTime?: Date;
|
|
1957
|
-
|
|
1958
1521
|
StartTime?: Date;
|
|
1959
|
-
|
|
1960
1522
|
SubmitTime?: Date;
|
|
1961
1523
|
}
|
|
1962
|
-
|
|
1963
1524
|
export interface Job {
|
|
1964
1525
|
AccelerationSettings?: AccelerationSettings;
|
|
1965
|
-
|
|
1966
1526
|
AccelerationStatus?: AccelerationStatus | string;
|
|
1967
|
-
|
|
1968
1527
|
Arn?: string;
|
|
1969
|
-
|
|
1970
1528
|
BillingTagsSource?: BillingTagsSource | string;
|
|
1971
|
-
|
|
1972
1529
|
CreatedAt?: Date;
|
|
1973
|
-
|
|
1974
1530
|
CurrentPhase?: JobPhase | string;
|
|
1975
|
-
|
|
1976
1531
|
ErrorCode?: number;
|
|
1977
|
-
|
|
1978
1532
|
ErrorMessage?: string;
|
|
1979
|
-
|
|
1980
1533
|
HopDestinations?: HopDestination[];
|
|
1981
|
-
|
|
1982
1534
|
Id?: string;
|
|
1983
|
-
|
|
1984
1535
|
JobPercentComplete?: number;
|
|
1985
|
-
|
|
1986
1536
|
JobTemplate?: string;
|
|
1987
|
-
|
|
1988
1537
|
Messages?: JobMessages;
|
|
1989
|
-
|
|
1990
1538
|
OutputGroupDetails?: OutputGroupDetail[];
|
|
1991
|
-
|
|
1992
1539
|
Priority?: number;
|
|
1993
|
-
|
|
1994
1540
|
Queue?: string;
|
|
1995
|
-
|
|
1996
1541
|
QueueTransitions?: QueueTransition[];
|
|
1997
|
-
|
|
1998
1542
|
RetryCount?: number;
|
|
1999
|
-
|
|
2000
1543
|
Role: string | undefined;
|
|
2001
|
-
|
|
2002
1544
|
Settings: JobSettings | undefined;
|
|
2003
|
-
|
|
2004
1545
|
SimulateReservedQueue?: SimulateReservedQueue | string;
|
|
2005
|
-
|
|
2006
1546
|
Status?: JobStatus | string;
|
|
2007
|
-
|
|
2008
1547
|
StatusUpdateInterval?: StatusUpdateInterval | string;
|
|
2009
|
-
|
|
2010
1548
|
Timing?: Timing;
|
|
2011
|
-
|
|
2012
1549
|
UserMetadata?: Record<string, string>;
|
|
2013
1550
|
}
|
|
2014
|
-
|
|
2015
1551
|
export interface JobTemplateSettings {
|
|
2016
1552
|
AdAvailOffset?: number;
|
|
2017
|
-
|
|
2018
1553
|
AvailBlanking?: AvailBlanking;
|
|
2019
|
-
|
|
2020
1554
|
Esam?: EsamSettings;
|
|
2021
|
-
|
|
2022
1555
|
ExtendedDataServices?: ExtendedDataServices;
|
|
2023
|
-
|
|
2024
1556
|
Inputs?: InputTemplate[];
|
|
2025
|
-
|
|
2026
1557
|
KantarWatermark?: KantarWatermarkSettings;
|
|
2027
|
-
|
|
2028
1558
|
MotionImageInserter?: MotionImageInserter;
|
|
2029
|
-
|
|
2030
1559
|
NielsenConfiguration?: NielsenConfiguration;
|
|
2031
|
-
|
|
2032
1560
|
NielsenNonLinearWatermark?: NielsenNonLinearWatermarkSettings;
|
|
2033
|
-
|
|
2034
1561
|
OutputGroups?: OutputGroup[];
|
|
2035
|
-
|
|
2036
1562
|
TimecodeConfig?: TimecodeConfig;
|
|
2037
|
-
|
|
2038
1563
|
TimedMetadataInsertion?: TimedMetadataInsertion;
|
|
2039
1564
|
}
|
|
2040
1565
|
export declare enum Type {
|
|
2041
1566
|
CUSTOM = "CUSTOM",
|
|
2042
1567
|
SYSTEM = "SYSTEM",
|
|
2043
1568
|
}
|
|
2044
|
-
|
|
2045
1569
|
export interface JobTemplate {
|
|
2046
1570
|
AccelerationSettings?: AccelerationSettings;
|
|
2047
|
-
|
|
2048
1571
|
Arn?: string;
|
|
2049
|
-
|
|
2050
1572
|
Category?: string;
|
|
2051
|
-
|
|
2052
1573
|
CreatedAt?: Date;
|
|
2053
|
-
|
|
2054
1574
|
Description?: string;
|
|
2055
|
-
|
|
2056
1575
|
HopDestinations?: HopDestination[];
|
|
2057
|
-
|
|
2058
1576
|
LastUpdated?: Date;
|
|
2059
|
-
|
|
2060
1577
|
Name: string | undefined;
|
|
2061
|
-
|
|
2062
1578
|
Priority?: number;
|
|
2063
|
-
|
|
2064
1579
|
Queue?: string;
|
|
2065
|
-
|
|
2066
1580
|
Settings: JobTemplateSettings | undefined;
|
|
2067
|
-
|
|
2068
1581
|
StatusUpdateInterval?: StatusUpdateInterval | string;
|
|
2069
|
-
|
|
2070
1582
|
Type?: Type | string;
|
|
2071
1583
|
}
|
|
2072
|
-
|
|
2073
1584
|
export interface PresetSettings {
|
|
2074
1585
|
AudioDescriptions?: AudioDescription[];
|
|
2075
|
-
|
|
2076
1586
|
CaptionDescriptions?: CaptionDescriptionPreset[];
|
|
2077
|
-
|
|
2078
1587
|
ContainerSettings?: ContainerSettings;
|
|
2079
|
-
|
|
2080
1588
|
VideoDescription?: VideoDescription;
|
|
2081
1589
|
}
|
|
2082
|
-
|
|
2083
1590
|
export interface Preset {
|
|
2084
1591
|
Arn?: string;
|
|
2085
|
-
|
|
2086
1592
|
Category?: string;
|
|
2087
|
-
|
|
2088
1593
|
CreatedAt?: Date;
|
|
2089
|
-
|
|
2090
1594
|
Description?: string;
|
|
2091
|
-
|
|
2092
1595
|
LastUpdated?: Date;
|
|
2093
|
-
|
|
2094
1596
|
Name: string | undefined;
|
|
2095
|
-
|
|
2096
1597
|
Settings: PresetSettings | undefined;
|
|
2097
|
-
|
|
2098
1598
|
Type?: Type | string;
|
|
2099
1599
|
}
|
|
2100
1600
|
export declare enum PricingPlan {
|
|
@@ -2112,102 +1612,73 @@ export declare enum ReservationPlanStatus {
|
|
|
2112
1612
|
ACTIVE = "ACTIVE",
|
|
2113
1613
|
EXPIRED = "EXPIRED",
|
|
2114
1614
|
}
|
|
2115
|
-
|
|
2116
1615
|
export interface ReservationPlan {
|
|
2117
1616
|
Commitment?: Commitment | string;
|
|
2118
|
-
|
|
2119
1617
|
ExpiresAt?: Date;
|
|
2120
|
-
|
|
2121
1618
|
PurchasedAt?: Date;
|
|
2122
|
-
|
|
2123
1619
|
RenewalType?: RenewalType | string;
|
|
2124
|
-
|
|
2125
1620
|
ReservedSlots?: number;
|
|
2126
|
-
|
|
2127
1621
|
Status?: ReservationPlanStatus | string;
|
|
2128
1622
|
}
|
|
2129
1623
|
export declare enum QueueStatus {
|
|
2130
1624
|
ACTIVE = "ACTIVE",
|
|
2131
1625
|
PAUSED = "PAUSED",
|
|
2132
1626
|
}
|
|
2133
|
-
|
|
2134
1627
|
export interface Queue {
|
|
2135
1628
|
Arn?: string;
|
|
2136
|
-
|
|
2137
1629
|
CreatedAt?: Date;
|
|
2138
|
-
|
|
2139
1630
|
Description?: string;
|
|
2140
|
-
|
|
2141
1631
|
LastUpdated?: Date;
|
|
2142
|
-
|
|
2143
1632
|
Name: string | undefined;
|
|
2144
|
-
|
|
2145
1633
|
PricingPlan?: PricingPlan | string;
|
|
2146
|
-
|
|
2147
1634
|
ProgressingJobsCount?: number;
|
|
2148
|
-
|
|
2149
1635
|
ReservationPlan?: ReservationPlan;
|
|
2150
|
-
|
|
2151
1636
|
Status?: QueueStatus | string;
|
|
2152
|
-
|
|
2153
1637
|
SubmittedJobsCount?: number;
|
|
2154
|
-
|
|
2155
1638
|
Type?: Type | string;
|
|
2156
1639
|
}
|
|
2157
1640
|
export interface AssociateCertificateRequest {
|
|
2158
1641
|
Arn: string | undefined;
|
|
2159
1642
|
}
|
|
2160
1643
|
export interface AssociateCertificateResponse {}
|
|
2161
|
-
|
|
2162
1644
|
export declare class BadRequestException extends __BaseException {
|
|
2163
1645
|
readonly name: "BadRequestException";
|
|
2164
1646
|
readonly $fault: "client";
|
|
2165
1647
|
Message?: string;
|
|
2166
|
-
|
|
2167
1648
|
constructor(
|
|
2168
1649
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
2169
1650
|
);
|
|
2170
1651
|
}
|
|
2171
|
-
|
|
2172
1652
|
export declare class ConflictException extends __BaseException {
|
|
2173
1653
|
readonly name: "ConflictException";
|
|
2174
1654
|
readonly $fault: "client";
|
|
2175
1655
|
Message?: string;
|
|
2176
|
-
|
|
2177
1656
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
2178
1657
|
}
|
|
2179
|
-
|
|
2180
1658
|
export declare class ForbiddenException extends __BaseException {
|
|
2181
1659
|
readonly name: "ForbiddenException";
|
|
2182
1660
|
readonly $fault: "client";
|
|
2183
1661
|
Message?: string;
|
|
2184
|
-
|
|
2185
1662
|
constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
|
|
2186
1663
|
}
|
|
2187
|
-
|
|
2188
1664
|
export declare class InternalServerErrorException extends __BaseException {
|
|
2189
1665
|
readonly name: "InternalServerErrorException";
|
|
2190
1666
|
readonly $fault: "server";
|
|
2191
1667
|
Message?: string;
|
|
2192
|
-
|
|
2193
1668
|
constructor(
|
|
2194
1669
|
opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
|
|
2195
1670
|
);
|
|
2196
1671
|
}
|
|
2197
|
-
|
|
2198
1672
|
export declare class NotFoundException extends __BaseException {
|
|
2199
1673
|
readonly name: "NotFoundException";
|
|
2200
1674
|
readonly $fault: "client";
|
|
2201
1675
|
Message?: string;
|
|
2202
|
-
|
|
2203
1676
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
2204
1677
|
}
|
|
2205
|
-
|
|
2206
1678
|
export declare class TooManyRequestsException extends __BaseException {
|
|
2207
1679
|
readonly name: "TooManyRequestsException";
|
|
2208
1680
|
readonly $fault: "client";
|
|
2209
1681
|
Message?: string;
|
|
2210
|
-
|
|
2211
1682
|
constructor(
|
|
2212
1683
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
2213
1684
|
);
|
|
@@ -2218,29 +1689,17 @@ export interface CancelJobRequest {
|
|
|
2218
1689
|
export interface CancelJobResponse {}
|
|
2219
1690
|
export interface CreateJobRequest {
|
|
2220
1691
|
AccelerationSettings?: AccelerationSettings;
|
|
2221
|
-
|
|
2222
1692
|
BillingTagsSource?: BillingTagsSource | string;
|
|
2223
|
-
|
|
2224
1693
|
ClientRequestToken?: string;
|
|
2225
|
-
|
|
2226
1694
|
HopDestinations?: HopDestination[];
|
|
2227
|
-
|
|
2228
1695
|
JobTemplate?: string;
|
|
2229
|
-
|
|
2230
1696
|
Priority?: number;
|
|
2231
|
-
|
|
2232
1697
|
Queue?: string;
|
|
2233
|
-
|
|
2234
1698
|
Role: string | undefined;
|
|
2235
|
-
|
|
2236
1699
|
Settings: JobSettings | undefined;
|
|
2237
|
-
|
|
2238
1700
|
SimulateReservedQueue?: SimulateReservedQueue | string;
|
|
2239
|
-
|
|
2240
1701
|
StatusUpdateInterval?: StatusUpdateInterval | string;
|
|
2241
|
-
|
|
2242
1702
|
Tags?: Record<string, string>;
|
|
2243
|
-
|
|
2244
1703
|
UserMetadata?: Record<string, string>;
|
|
2245
1704
|
}
|
|
2246
1705
|
export interface CreateJobResponse {
|
|
@@ -2248,23 +1707,14 @@ export interface CreateJobResponse {
|
|
|
2248
1707
|
}
|
|
2249
1708
|
export interface CreateJobTemplateRequest {
|
|
2250
1709
|
AccelerationSettings?: AccelerationSettings;
|
|
2251
|
-
|
|
2252
1710
|
Category?: string;
|
|
2253
|
-
|
|
2254
1711
|
Description?: string;
|
|
2255
|
-
|
|
2256
1712
|
HopDestinations?: HopDestination[];
|
|
2257
|
-
|
|
2258
1713
|
Name: string | undefined;
|
|
2259
|
-
|
|
2260
1714
|
Priority?: number;
|
|
2261
|
-
|
|
2262
1715
|
Queue?: string;
|
|
2263
|
-
|
|
2264
1716
|
Settings: JobTemplateSettings | undefined;
|
|
2265
|
-
|
|
2266
1717
|
StatusUpdateInterval?: StatusUpdateInterval | string;
|
|
2267
|
-
|
|
2268
1718
|
Tags?: Record<string, string>;
|
|
2269
1719
|
}
|
|
2270
1720
|
export interface CreateJobTemplateResponse {
|
|
@@ -2272,37 +1722,25 @@ export interface CreateJobTemplateResponse {
|
|
|
2272
1722
|
}
|
|
2273
1723
|
export interface CreatePresetRequest {
|
|
2274
1724
|
Category?: string;
|
|
2275
|
-
|
|
2276
1725
|
Description?: string;
|
|
2277
|
-
|
|
2278
1726
|
Name: string | undefined;
|
|
2279
|
-
|
|
2280
1727
|
Settings: PresetSettings | undefined;
|
|
2281
|
-
|
|
2282
1728
|
Tags?: Record<string, string>;
|
|
2283
1729
|
}
|
|
2284
1730
|
export interface CreatePresetResponse {
|
|
2285
1731
|
Preset?: Preset;
|
|
2286
1732
|
}
|
|
2287
|
-
|
|
2288
1733
|
export interface ReservationPlanSettings {
|
|
2289
1734
|
Commitment: Commitment | string | undefined;
|
|
2290
|
-
|
|
2291
1735
|
RenewalType: RenewalType | string | undefined;
|
|
2292
|
-
|
|
2293
1736
|
ReservedSlots: number | undefined;
|
|
2294
1737
|
}
|
|
2295
1738
|
export interface CreateQueueRequest {
|
|
2296
1739
|
Description?: string;
|
|
2297
|
-
|
|
2298
1740
|
Name: string | undefined;
|
|
2299
|
-
|
|
2300
1741
|
PricingPlan?: PricingPlan | string;
|
|
2301
|
-
|
|
2302
1742
|
ReservationPlanSettings?: ReservationPlanSettings;
|
|
2303
|
-
|
|
2304
1743
|
Status?: QueueStatus | string;
|
|
2305
|
-
|
|
2306
1744
|
Tags?: Record<string, string>;
|
|
2307
1745
|
}
|
|
2308
1746
|
export interface CreateQueueResponse {
|
|
@@ -2326,17 +1764,13 @@ export declare enum DescribeEndpointsMode {
|
|
|
2326
1764
|
DEFAULT = "DEFAULT",
|
|
2327
1765
|
GET_ONLY = "GET_ONLY",
|
|
2328
1766
|
}
|
|
2329
|
-
|
|
2330
1767
|
export interface DescribeEndpointsRequest {
|
|
2331
1768
|
MaxResults?: number;
|
|
2332
|
-
|
|
2333
1769
|
Mode?: DescribeEndpointsMode | string;
|
|
2334
|
-
|
|
2335
1770
|
NextToken?: string;
|
|
2336
1771
|
}
|
|
2337
1772
|
export interface DescribeEndpointsResponse {
|
|
2338
1773
|
Endpoints?: Endpoint[];
|
|
2339
|
-
|
|
2340
1774
|
NextToken?: string;
|
|
2341
1775
|
}
|
|
2342
1776
|
export interface DisassociateCertificateRequest {
|
|
@@ -2360,12 +1794,9 @@ export declare enum InputPolicy {
|
|
|
2360
1794
|
ALLOWED = "ALLOWED",
|
|
2361
1795
|
DISALLOWED = "DISALLOWED",
|
|
2362
1796
|
}
|
|
2363
|
-
|
|
2364
1797
|
export interface Policy {
|
|
2365
1798
|
HttpInputs?: InputPolicy | string;
|
|
2366
|
-
|
|
2367
1799
|
HttpsInputs?: InputPolicy | string;
|
|
2368
|
-
|
|
2369
1800
|
S3Inputs?: InputPolicy | string;
|
|
2370
1801
|
}
|
|
2371
1802
|
export interface GetPolicyResponse {
|
|
@@ -2394,342 +1825,242 @@ export declare enum Order {
|
|
|
2394
1825
|
}
|
|
2395
1826
|
export interface ListJobsRequest {
|
|
2396
1827
|
MaxResults?: number;
|
|
2397
|
-
|
|
2398
1828
|
NextToken?: string;
|
|
2399
|
-
|
|
2400
1829
|
Order?: Order | string;
|
|
2401
|
-
|
|
2402
1830
|
Queue?: string;
|
|
2403
|
-
|
|
2404
1831
|
Status?: JobStatus | string;
|
|
2405
1832
|
}
|
|
2406
|
-
|
|
2407
1833
|
export declare const M2tsScte35EsamFilterSensitiveLog: (
|
|
2408
1834
|
obj: M2tsScte35Esam
|
|
2409
1835
|
) => any;
|
|
2410
|
-
|
|
2411
1836
|
export declare const M2tsSettingsFilterSensitiveLog: (obj: M2tsSettings) => any;
|
|
2412
|
-
|
|
2413
1837
|
export declare const M3u8SettingsFilterSensitiveLog: (obj: M3u8Settings) => any;
|
|
2414
|
-
|
|
2415
1838
|
export declare const MovSettingsFilterSensitiveLog: (obj: MovSettings) => any;
|
|
2416
|
-
|
|
2417
1839
|
export declare const Mp4SettingsFilterSensitiveLog: (obj: Mp4Settings) => any;
|
|
2418
|
-
|
|
2419
1840
|
export declare const MpdSettingsFilterSensitiveLog: (obj: MpdSettings) => any;
|
|
2420
|
-
|
|
2421
1841
|
export declare const MxfXavcProfileSettingsFilterSensitiveLog: (
|
|
2422
1842
|
obj: MxfXavcProfileSettings
|
|
2423
1843
|
) => any;
|
|
2424
|
-
|
|
2425
1844
|
export declare const MxfSettingsFilterSensitiveLog: (obj: MxfSettings) => any;
|
|
2426
|
-
|
|
2427
1845
|
export declare const ContainerSettingsFilterSensitiveLog: (
|
|
2428
1846
|
obj: ContainerSettings
|
|
2429
1847
|
) => any;
|
|
2430
|
-
|
|
2431
1848
|
export declare const HlsSettingsFilterSensitiveLog: (obj: HlsSettings) => any;
|
|
2432
|
-
|
|
2433
1849
|
export declare const OutputSettingsFilterSensitiveLog: (
|
|
2434
1850
|
obj: OutputSettings
|
|
2435
1851
|
) => any;
|
|
2436
|
-
|
|
2437
1852
|
export declare const Av1QvbrSettingsFilterSensitiveLog: (
|
|
2438
1853
|
obj: Av1QvbrSettings
|
|
2439
1854
|
) => any;
|
|
2440
|
-
|
|
2441
1855
|
export declare const Av1SettingsFilterSensitiveLog: (obj: Av1Settings) => any;
|
|
2442
|
-
|
|
2443
1856
|
export declare const AvcIntraUhdSettingsFilterSensitiveLog: (
|
|
2444
1857
|
obj: AvcIntraUhdSettings
|
|
2445
1858
|
) => any;
|
|
2446
|
-
|
|
2447
1859
|
export declare const AvcIntraSettingsFilterSensitiveLog: (
|
|
2448
1860
|
obj: AvcIntraSettings
|
|
2449
1861
|
) => any;
|
|
2450
|
-
|
|
2451
1862
|
export declare const FrameCaptureSettingsFilterSensitiveLog: (
|
|
2452
1863
|
obj: FrameCaptureSettings
|
|
2453
1864
|
) => any;
|
|
2454
|
-
|
|
2455
1865
|
export declare const H264QvbrSettingsFilterSensitiveLog: (
|
|
2456
1866
|
obj: H264QvbrSettings
|
|
2457
1867
|
) => any;
|
|
2458
|
-
|
|
2459
1868
|
export declare const H264SettingsFilterSensitiveLog: (obj: H264Settings) => any;
|
|
2460
|
-
|
|
2461
1869
|
export declare const H265QvbrSettingsFilterSensitiveLog: (
|
|
2462
1870
|
obj: H265QvbrSettings
|
|
2463
1871
|
) => any;
|
|
2464
|
-
|
|
2465
1872
|
export declare const H265SettingsFilterSensitiveLog: (obj: H265Settings) => any;
|
|
2466
|
-
|
|
2467
1873
|
export declare const Mpeg2SettingsFilterSensitiveLog: (
|
|
2468
1874
|
obj: Mpeg2Settings
|
|
2469
1875
|
) => any;
|
|
2470
|
-
|
|
2471
1876
|
export declare const ProresSettingsFilterSensitiveLog: (
|
|
2472
1877
|
obj: ProresSettings
|
|
2473
1878
|
) => any;
|
|
2474
|
-
|
|
2475
1879
|
export declare const Vc3SettingsFilterSensitiveLog: (obj: Vc3Settings) => any;
|
|
2476
|
-
|
|
2477
1880
|
export declare const Vp8SettingsFilterSensitiveLog: (obj: Vp8Settings) => any;
|
|
2478
|
-
|
|
2479
1881
|
export declare const Vp9SettingsFilterSensitiveLog: (obj: Vp9Settings) => any;
|
|
2480
|
-
|
|
2481
1882
|
export declare const Xavc4kIntraCbgProfileSettingsFilterSensitiveLog: (
|
|
2482
1883
|
obj: Xavc4kIntraCbgProfileSettings
|
|
2483
1884
|
) => any;
|
|
2484
|
-
|
|
2485
1885
|
export declare const Xavc4kIntraVbrProfileSettingsFilterSensitiveLog: (
|
|
2486
1886
|
obj: Xavc4kIntraVbrProfileSettings
|
|
2487
1887
|
) => any;
|
|
2488
|
-
|
|
2489
1888
|
export declare const Xavc4kProfileSettingsFilterSensitiveLog: (
|
|
2490
1889
|
obj: Xavc4kProfileSettings
|
|
2491
1890
|
) => any;
|
|
2492
|
-
|
|
2493
1891
|
export declare const XavcHdIntraCbgProfileSettingsFilterSensitiveLog: (
|
|
2494
1892
|
obj: XavcHdIntraCbgProfileSettings
|
|
2495
1893
|
) => any;
|
|
2496
|
-
|
|
2497
1894
|
export declare const XavcHdProfileSettingsFilterSensitiveLog: (
|
|
2498
1895
|
obj: XavcHdProfileSettings
|
|
2499
1896
|
) => any;
|
|
2500
|
-
|
|
2501
1897
|
export declare const XavcSettingsFilterSensitiveLog: (obj: XavcSettings) => any;
|
|
2502
|
-
|
|
2503
1898
|
export declare const VideoCodecSettingsFilterSensitiveLog: (
|
|
2504
1899
|
obj: VideoCodecSettings
|
|
2505
1900
|
) => any;
|
|
2506
|
-
|
|
2507
1901
|
export declare const ColorCorrectorFilterSensitiveLog: (
|
|
2508
1902
|
obj: ColorCorrector
|
|
2509
1903
|
) => any;
|
|
2510
|
-
|
|
2511
1904
|
export declare const DeinterlacerFilterSensitiveLog: (obj: Deinterlacer) => any;
|
|
2512
|
-
|
|
2513
1905
|
export declare const DolbyVisionLevel6MetadataFilterSensitiveLog: (
|
|
2514
1906
|
obj: DolbyVisionLevel6Metadata
|
|
2515
1907
|
) => any;
|
|
2516
|
-
|
|
2517
1908
|
export declare const DolbyVisionFilterSensitiveLog: (obj: DolbyVision) => any;
|
|
2518
|
-
|
|
2519
1909
|
export declare const Hdr10PlusFilterSensitiveLog: (obj: Hdr10Plus) => any;
|
|
2520
|
-
|
|
2521
1910
|
export declare const NoiseReducerFilterSettingsFilterSensitiveLog: (
|
|
2522
1911
|
obj: NoiseReducerFilterSettings
|
|
2523
1912
|
) => any;
|
|
2524
|
-
|
|
2525
1913
|
export declare const NoiseReducerSpatialFilterSettingsFilterSensitiveLog: (
|
|
2526
1914
|
obj: NoiseReducerSpatialFilterSettings
|
|
2527
1915
|
) => any;
|
|
2528
|
-
|
|
2529
1916
|
export declare const NoiseReducerTemporalFilterSettingsFilterSensitiveLog: (
|
|
2530
1917
|
obj: NoiseReducerTemporalFilterSettings
|
|
2531
1918
|
) => any;
|
|
2532
|
-
|
|
2533
1919
|
export declare const NoiseReducerFilterSensitiveLog: (obj: NoiseReducer) => any;
|
|
2534
|
-
|
|
2535
1920
|
export declare const NexGuardFileMarkerSettingsFilterSensitiveLog: (
|
|
2536
1921
|
obj: NexGuardFileMarkerSettings
|
|
2537
1922
|
) => any;
|
|
2538
|
-
|
|
2539
1923
|
export declare const PartnerWatermarkingFilterSensitiveLog: (
|
|
2540
1924
|
obj: PartnerWatermarking
|
|
2541
1925
|
) => any;
|
|
2542
|
-
|
|
2543
1926
|
export declare const TimecodeBurninFilterSensitiveLog: (
|
|
2544
1927
|
obj: TimecodeBurnin
|
|
2545
1928
|
) => any;
|
|
2546
|
-
|
|
2547
1929
|
export declare const VideoPreprocessorFilterSensitiveLog: (
|
|
2548
1930
|
obj: VideoPreprocessor
|
|
2549
1931
|
) => any;
|
|
2550
|
-
|
|
2551
1932
|
export declare const VideoDescriptionFilterSensitiveLog: (
|
|
2552
1933
|
obj: VideoDescription
|
|
2553
1934
|
) => any;
|
|
2554
|
-
|
|
2555
1935
|
export declare const OutputFilterSensitiveLog: (obj: Output) => any;
|
|
2556
|
-
|
|
2557
1936
|
export declare const OutputGroupFilterSensitiveLog: (obj: OutputGroup) => any;
|
|
2558
|
-
|
|
2559
1937
|
export declare const TimecodeConfigFilterSensitiveLog: (
|
|
2560
1938
|
obj: TimecodeConfig
|
|
2561
1939
|
) => any;
|
|
2562
|
-
|
|
2563
1940
|
export declare const TimedMetadataInsertionFilterSensitiveLog: (
|
|
2564
1941
|
obj: TimedMetadataInsertion
|
|
2565
1942
|
) => any;
|
|
2566
|
-
|
|
2567
1943
|
export declare const JobSettingsFilterSensitiveLog: (obj: JobSettings) => any;
|
|
2568
|
-
|
|
2569
1944
|
export declare const TimingFilterSensitiveLog: (obj: Timing) => any;
|
|
2570
|
-
|
|
2571
1945
|
export declare const JobFilterSensitiveLog: (obj: Job) => any;
|
|
2572
|
-
|
|
2573
1946
|
export declare const JobTemplateSettingsFilterSensitiveLog: (
|
|
2574
1947
|
obj: JobTemplateSettings
|
|
2575
1948
|
) => any;
|
|
2576
|
-
|
|
2577
1949
|
export declare const JobTemplateFilterSensitiveLog: (obj: JobTemplate) => any;
|
|
2578
|
-
|
|
2579
1950
|
export declare const PresetSettingsFilterSensitiveLog: (
|
|
2580
1951
|
obj: PresetSettings
|
|
2581
1952
|
) => any;
|
|
2582
|
-
|
|
2583
1953
|
export declare const PresetFilterSensitiveLog: (obj: Preset) => any;
|
|
2584
|
-
|
|
2585
1954
|
export declare const ReservationPlanFilterSensitiveLog: (
|
|
2586
1955
|
obj: ReservationPlan
|
|
2587
1956
|
) => any;
|
|
2588
|
-
|
|
2589
1957
|
export declare const QueueFilterSensitiveLog: (obj: Queue) => any;
|
|
2590
|
-
|
|
2591
1958
|
export declare const AssociateCertificateRequestFilterSensitiveLog: (
|
|
2592
1959
|
obj: AssociateCertificateRequest
|
|
2593
1960
|
) => any;
|
|
2594
|
-
|
|
2595
1961
|
export declare const AssociateCertificateResponseFilterSensitiveLog: (
|
|
2596
1962
|
obj: AssociateCertificateResponse
|
|
2597
1963
|
) => any;
|
|
2598
|
-
|
|
2599
1964
|
export declare const CancelJobRequestFilterSensitiveLog: (
|
|
2600
1965
|
obj: CancelJobRequest
|
|
2601
1966
|
) => any;
|
|
2602
|
-
|
|
2603
1967
|
export declare const CancelJobResponseFilterSensitiveLog: (
|
|
2604
1968
|
obj: CancelJobResponse
|
|
2605
1969
|
) => any;
|
|
2606
|
-
|
|
2607
1970
|
export declare const CreateJobRequestFilterSensitiveLog: (
|
|
2608
1971
|
obj: CreateJobRequest
|
|
2609
1972
|
) => any;
|
|
2610
|
-
|
|
2611
1973
|
export declare const CreateJobResponseFilterSensitiveLog: (
|
|
2612
1974
|
obj: CreateJobResponse
|
|
2613
1975
|
) => any;
|
|
2614
|
-
|
|
2615
1976
|
export declare const CreateJobTemplateRequestFilterSensitiveLog: (
|
|
2616
1977
|
obj: CreateJobTemplateRequest
|
|
2617
1978
|
) => any;
|
|
2618
|
-
|
|
2619
1979
|
export declare const CreateJobTemplateResponseFilterSensitiveLog: (
|
|
2620
1980
|
obj: CreateJobTemplateResponse
|
|
2621
1981
|
) => any;
|
|
2622
|
-
|
|
2623
1982
|
export declare const CreatePresetRequestFilterSensitiveLog: (
|
|
2624
1983
|
obj: CreatePresetRequest
|
|
2625
1984
|
) => any;
|
|
2626
|
-
|
|
2627
1985
|
export declare const CreatePresetResponseFilterSensitiveLog: (
|
|
2628
1986
|
obj: CreatePresetResponse
|
|
2629
1987
|
) => any;
|
|
2630
|
-
|
|
2631
1988
|
export declare const ReservationPlanSettingsFilterSensitiveLog: (
|
|
2632
1989
|
obj: ReservationPlanSettings
|
|
2633
1990
|
) => any;
|
|
2634
|
-
|
|
2635
1991
|
export declare const CreateQueueRequestFilterSensitiveLog: (
|
|
2636
1992
|
obj: CreateQueueRequest
|
|
2637
1993
|
) => any;
|
|
2638
|
-
|
|
2639
1994
|
export declare const CreateQueueResponseFilterSensitiveLog: (
|
|
2640
1995
|
obj: CreateQueueResponse
|
|
2641
1996
|
) => any;
|
|
2642
|
-
|
|
2643
1997
|
export declare const DeleteJobTemplateRequestFilterSensitiveLog: (
|
|
2644
1998
|
obj: DeleteJobTemplateRequest
|
|
2645
1999
|
) => any;
|
|
2646
|
-
|
|
2647
2000
|
export declare const DeleteJobTemplateResponseFilterSensitiveLog: (
|
|
2648
2001
|
obj: DeleteJobTemplateResponse
|
|
2649
2002
|
) => any;
|
|
2650
|
-
|
|
2651
2003
|
export declare const DeletePolicyRequestFilterSensitiveLog: (
|
|
2652
2004
|
obj: DeletePolicyRequest
|
|
2653
2005
|
) => any;
|
|
2654
|
-
|
|
2655
2006
|
export declare const DeletePolicyResponseFilterSensitiveLog: (
|
|
2656
2007
|
obj: DeletePolicyResponse
|
|
2657
2008
|
) => any;
|
|
2658
|
-
|
|
2659
2009
|
export declare const DeletePresetRequestFilterSensitiveLog: (
|
|
2660
2010
|
obj: DeletePresetRequest
|
|
2661
2011
|
) => any;
|
|
2662
|
-
|
|
2663
2012
|
export declare const DeletePresetResponseFilterSensitiveLog: (
|
|
2664
2013
|
obj: DeletePresetResponse
|
|
2665
2014
|
) => any;
|
|
2666
|
-
|
|
2667
2015
|
export declare const DeleteQueueRequestFilterSensitiveLog: (
|
|
2668
2016
|
obj: DeleteQueueRequest
|
|
2669
2017
|
) => any;
|
|
2670
|
-
|
|
2671
2018
|
export declare const DeleteQueueResponseFilterSensitiveLog: (
|
|
2672
2019
|
obj: DeleteQueueResponse
|
|
2673
2020
|
) => any;
|
|
2674
|
-
|
|
2675
2021
|
export declare const DescribeEndpointsRequestFilterSensitiveLog: (
|
|
2676
2022
|
obj: DescribeEndpointsRequest
|
|
2677
2023
|
) => any;
|
|
2678
|
-
|
|
2679
2024
|
export declare const DescribeEndpointsResponseFilterSensitiveLog: (
|
|
2680
2025
|
obj: DescribeEndpointsResponse
|
|
2681
2026
|
) => any;
|
|
2682
|
-
|
|
2683
2027
|
export declare const DisassociateCertificateRequestFilterSensitiveLog: (
|
|
2684
2028
|
obj: DisassociateCertificateRequest
|
|
2685
2029
|
) => any;
|
|
2686
|
-
|
|
2687
2030
|
export declare const DisassociateCertificateResponseFilterSensitiveLog: (
|
|
2688
2031
|
obj: DisassociateCertificateResponse
|
|
2689
2032
|
) => any;
|
|
2690
|
-
|
|
2691
2033
|
export declare const GetJobRequestFilterSensitiveLog: (
|
|
2692
2034
|
obj: GetJobRequest
|
|
2693
2035
|
) => any;
|
|
2694
|
-
|
|
2695
2036
|
export declare const GetJobResponseFilterSensitiveLog: (
|
|
2696
2037
|
obj: GetJobResponse
|
|
2697
2038
|
) => any;
|
|
2698
|
-
|
|
2699
2039
|
export declare const GetJobTemplateRequestFilterSensitiveLog: (
|
|
2700
2040
|
obj: GetJobTemplateRequest
|
|
2701
2041
|
) => any;
|
|
2702
|
-
|
|
2703
2042
|
export declare const GetJobTemplateResponseFilterSensitiveLog: (
|
|
2704
2043
|
obj: GetJobTemplateResponse
|
|
2705
2044
|
) => any;
|
|
2706
|
-
|
|
2707
2045
|
export declare const GetPolicyRequestFilterSensitiveLog: (
|
|
2708
2046
|
obj: GetPolicyRequest
|
|
2709
2047
|
) => any;
|
|
2710
|
-
|
|
2711
2048
|
export declare const PolicyFilterSensitiveLog: (obj: Policy) => any;
|
|
2712
|
-
|
|
2713
2049
|
export declare const GetPolicyResponseFilterSensitiveLog: (
|
|
2714
2050
|
obj: GetPolicyResponse
|
|
2715
2051
|
) => any;
|
|
2716
|
-
|
|
2717
2052
|
export declare const GetPresetRequestFilterSensitiveLog: (
|
|
2718
2053
|
obj: GetPresetRequest
|
|
2719
2054
|
) => any;
|
|
2720
|
-
|
|
2721
2055
|
export declare const GetPresetResponseFilterSensitiveLog: (
|
|
2722
2056
|
obj: GetPresetResponse
|
|
2723
2057
|
) => any;
|
|
2724
|
-
|
|
2725
2058
|
export declare const GetQueueRequestFilterSensitiveLog: (
|
|
2726
2059
|
obj: GetQueueRequest
|
|
2727
2060
|
) => any;
|
|
2728
|
-
|
|
2729
2061
|
export declare const GetQueueResponseFilterSensitiveLog: (
|
|
2730
2062
|
obj: GetQueueResponse
|
|
2731
2063
|
) => any;
|
|
2732
|
-
|
|
2733
2064
|
export declare const ListJobsRequestFilterSensitiveLog: (
|
|
2734
2065
|
obj: ListJobsRequest
|
|
2735
2066
|
) => any;
|