@aws-sdk/client-mediaconvert 3.300.0 → 3.303.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-cjs/models/models_0.js +1160 -1353
- package/dist-cjs/models/models_1.js +1011 -1216
- package/dist-cjs/models/models_2.js +22 -27
- package/dist-es/models/models_0.js +1160 -1353
- package/dist-es/models/models_1.js +1011 -1216
- package/dist-es/models/models_2.js +22 -27
- package/dist-types/commands/AssociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/CancelJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateJobCommand.d.ts +187 -187
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +184 -184
- package/dist-types/commands/CreatePresetCommand.d.ts +94 -94
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -3
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeletePresetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteQueueCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/commands/GetJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetPresetCommand.d.ts +1 -1
- package/dist-types/commands/GetQueueCommand.d.ts +1 -1
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListPresetsCommand.d.ts +1 -1
- package/dist-types/commands/ListQueuesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/PutPolicyCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateJobTemplateCommand.d.ts +183 -183
- package/dist-types/commands/UpdatePresetCommand.d.ts +93 -93
- package/dist-types/commands/UpdateQueueCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +2131 -1166
- package/dist-types/models/models_1.d.ts +2036 -1011
- package/dist-types/models/models_2.d.ts +47 -22
- package/dist-types/ts3.4/models/models_0.d.ts +1524 -1160
- package/dist-types/ts3.4/models/models_1.d.ts +1381 -1011
- package/dist-types/ts3.4/models/models_2.d.ts +28 -22
- package/package.json +34 -34
|
@@ -26,14 +26,14 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
26
26
|
* import { MediaConvertClient, UpdateJobTemplateCommand } from "@aws-sdk/client-mediaconvert"; // ES Modules import
|
|
27
27
|
* // const { MediaConvertClient, UpdateJobTemplateCommand } = require("@aws-sdk/client-mediaconvert"); // CommonJS import
|
|
28
28
|
* const client = new MediaConvertClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* AccelerationSettings: {
|
|
29
|
+
* const input = { // UpdateJobTemplateRequest
|
|
30
|
+
* AccelerationSettings: { // AccelerationSettings
|
|
31
31
|
* Mode: "DISABLED" || "ENABLED" || "PREFERRED", // required
|
|
32
32
|
* },
|
|
33
33
|
* Category: "STRING_VALUE",
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
|
-
* HopDestinations: [
|
|
36
|
-
* {
|
|
35
|
+
* HopDestinations: [ // __listOfHopDestination
|
|
36
|
+
* { // HopDestination
|
|
37
37
|
* Priority: Number("int"),
|
|
38
38
|
* Queue: "STRING_VALUE",
|
|
39
39
|
* WaitMinutes: Number("int"),
|
|
@@ -42,58 +42,58 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
42
42
|
* Name: "STRING_VALUE", // required
|
|
43
43
|
* Priority: Number("int"),
|
|
44
44
|
* Queue: "STRING_VALUE",
|
|
45
|
-
* Settings: {
|
|
45
|
+
* Settings: { // JobTemplateSettings
|
|
46
46
|
* AdAvailOffset: Number("int"),
|
|
47
|
-
* AvailBlanking: {
|
|
47
|
+
* AvailBlanking: { // AvailBlanking
|
|
48
48
|
* AvailBlankingImage: "STRING_VALUE",
|
|
49
49
|
* },
|
|
50
|
-
* Esam: {
|
|
51
|
-
* ManifestConfirmConditionNotification: {
|
|
50
|
+
* Esam: { // EsamSettings
|
|
51
|
+
* ManifestConfirmConditionNotification: { // EsamManifestConfirmConditionNotification
|
|
52
52
|
* MccXml: "STRING_VALUE",
|
|
53
53
|
* },
|
|
54
54
|
* ResponseSignalPreroll: Number("int"),
|
|
55
|
-
* SignalProcessingNotification: {
|
|
55
|
+
* SignalProcessingNotification: { // EsamSignalProcessingNotification
|
|
56
56
|
* SccXml: "STRING_VALUE",
|
|
57
57
|
* },
|
|
58
58
|
* },
|
|
59
|
-
* ExtendedDataServices: {
|
|
59
|
+
* ExtendedDataServices: { // ExtendedDataServices
|
|
60
60
|
* CopyProtectionAction: "PASSTHROUGH" || "STRIP",
|
|
61
61
|
* VchipAction: "PASSTHROUGH" || "STRIP",
|
|
62
62
|
* },
|
|
63
|
-
* Inputs: [
|
|
64
|
-
* {
|
|
65
|
-
* AudioSelectorGroups: {
|
|
66
|
-
* "<keys>": {
|
|
67
|
-
* AudioSelectorNames: [
|
|
63
|
+
* Inputs: [ // __listOfInputTemplate
|
|
64
|
+
* { // InputTemplate
|
|
65
|
+
* AudioSelectorGroups: { // __mapOfAudioSelectorGroup
|
|
66
|
+
* "<keys>": { // AudioSelectorGroup
|
|
67
|
+
* AudioSelectorNames: [ // __listOf__stringMin1
|
|
68
68
|
* "STRING_VALUE",
|
|
69
69
|
* ],
|
|
70
70
|
* },
|
|
71
71
|
* },
|
|
72
|
-
* AudioSelectors: {
|
|
73
|
-
* "<keys>": {
|
|
72
|
+
* AudioSelectors: { // __mapOfAudioSelector
|
|
73
|
+
* "<keys>": { // AudioSelector
|
|
74
74
|
* AudioDurationCorrection: "DISABLED" || "AUTO" || "TRACK" || "FRAME",
|
|
75
75
|
* CustomLanguageCode: "STRING_VALUE",
|
|
76
76
|
* DefaultSelection: "DEFAULT" || "NOT_DEFAULT",
|
|
77
77
|
* ExternalAudioFileInput: "STRING_VALUE",
|
|
78
|
-
* HlsRenditionGroupSettings: {
|
|
78
|
+
* HlsRenditionGroupSettings: { // HlsRenditionGroupSettings
|
|
79
79
|
* RenditionGroupId: "STRING_VALUE",
|
|
80
80
|
* RenditionLanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
81
81
|
* RenditionName: "STRING_VALUE",
|
|
82
82
|
* },
|
|
83
83
|
* LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
84
84
|
* Offset: Number("int"),
|
|
85
|
-
* Pids: [
|
|
85
|
+
* Pids: [ // __listOf__integerMin1Max2147483647
|
|
86
86
|
* Number("int"),
|
|
87
87
|
* ],
|
|
88
88
|
* ProgramSelection: Number("int"),
|
|
89
|
-
* RemixSettings: {
|
|
90
|
-
* ChannelMapping: {
|
|
91
|
-
* OutputChannels: [
|
|
92
|
-
* {
|
|
93
|
-
* InputChannels: [
|
|
89
|
+
* RemixSettings: { // RemixSettings
|
|
90
|
+
* ChannelMapping: { // ChannelMapping
|
|
91
|
+
* OutputChannels: [ // __listOfOutputChannelMapping
|
|
92
|
+
* { // OutputChannelMapping
|
|
93
|
+
* InputChannels: [ // __listOf__integerMinNegative60Max6
|
|
94
94
|
* Number("int"),
|
|
95
95
|
* ],
|
|
96
|
-
* InputChannelsFineTune: [
|
|
96
|
+
* InputChannelsFineTune: [ // __listOf__doubleMinNegative60Max6
|
|
97
97
|
* Number("double"),
|
|
98
98
|
* ],
|
|
99
99
|
* },
|
|
@@ -108,28 +108,28 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
108
108
|
* ],
|
|
109
109
|
* },
|
|
110
110
|
* },
|
|
111
|
-
* CaptionSelectors: {
|
|
112
|
-
* "<keys>": {
|
|
111
|
+
* CaptionSelectors: { // __mapOfCaptionSelector
|
|
112
|
+
* "<keys>": { // CaptionSelector
|
|
113
113
|
* CustomLanguageCode: "STRING_VALUE",
|
|
114
114
|
* LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
115
|
-
* SourceSettings: {
|
|
116
|
-
* AncillarySourceSettings: {
|
|
115
|
+
* SourceSettings: { // CaptionSourceSettings
|
|
116
|
+
* AncillarySourceSettings: { // AncillarySourceSettings
|
|
117
117
|
* Convert608To708: "UPCONVERT" || "DISABLED",
|
|
118
118
|
* SourceAncillaryChannelNumber: Number("int"),
|
|
119
119
|
* TerminateCaptions: "END_OF_INPUT" || "DISABLED",
|
|
120
120
|
* },
|
|
121
|
-
* DvbSubSourceSettings: {
|
|
121
|
+
* DvbSubSourceSettings: { // DvbSubSourceSettings
|
|
122
122
|
* Pid: Number("int"),
|
|
123
123
|
* },
|
|
124
|
-
* EmbeddedSourceSettings: {
|
|
124
|
+
* EmbeddedSourceSettings: { // EmbeddedSourceSettings
|
|
125
125
|
* Convert608To708: "UPCONVERT" || "DISABLED",
|
|
126
126
|
* Source608ChannelNumber: Number("int"),
|
|
127
127
|
* Source608TrackNumber: Number("int"),
|
|
128
128
|
* TerminateCaptions: "END_OF_INPUT" || "DISABLED",
|
|
129
129
|
* },
|
|
130
|
-
* FileSourceSettings: {
|
|
130
|
+
* FileSourceSettings: { // FileSourceSettings
|
|
131
131
|
* Convert608To708: "UPCONVERT" || "DISABLED",
|
|
132
|
-
* Framerate: {
|
|
132
|
+
* Framerate: { // CaptionSourceFramerate
|
|
133
133
|
* FramerateDenominator: Number("int"),
|
|
134
134
|
* FramerateNumerator: Number("int"),
|
|
135
135
|
* },
|
|
@@ -138,13 +138,13 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
138
138
|
* TimeDeltaUnits: "SECONDS" || "MILLISECONDS",
|
|
139
139
|
* },
|
|
140
140
|
* SourceType: "ANCILLARY" || "DVB_SUB" || "EMBEDDED" || "SCTE20" || "SCC" || "TTML" || "STL" || "SRT" || "SMI" || "SMPTE_TT" || "TELETEXT" || "NULL_SOURCE" || "IMSC" || "WEBVTT",
|
|
141
|
-
* TeletextSourceSettings: {
|
|
141
|
+
* TeletextSourceSettings: { // TeletextSourceSettings
|
|
142
142
|
* PageNumber: "STRING_VALUE",
|
|
143
143
|
* },
|
|
144
|
-
* TrackSourceSettings: {
|
|
144
|
+
* TrackSourceSettings: { // TrackSourceSettings
|
|
145
145
|
* TrackNumber: Number("int"),
|
|
146
146
|
* },
|
|
147
|
-
* WebvttHlsSourceSettings: {
|
|
147
|
+
* WebvttHlsSourceSettings: { // WebvttHlsSourceSettings
|
|
148
148
|
* RenditionGroupId: "STRING_VALUE",
|
|
149
149
|
* RenditionLanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
150
150
|
* RenditionName: "STRING_VALUE",
|
|
@@ -152,7 +152,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
152
152
|
* },
|
|
153
153
|
* },
|
|
154
154
|
* },
|
|
155
|
-
* Crop: {
|
|
155
|
+
* Crop: { // Rectangle
|
|
156
156
|
* Height: Number("int"),
|
|
157
157
|
* Width: Number("int"),
|
|
158
158
|
* X: Number("int"),
|
|
@@ -163,9 +163,9 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
163
163
|
* DolbyVisionMetadataXml: "STRING_VALUE",
|
|
164
164
|
* FilterEnable: "AUTO" || "DISABLE" || "FORCE",
|
|
165
165
|
* FilterStrength: Number("int"),
|
|
166
|
-
* ImageInserter: {
|
|
167
|
-
* InsertableImages: [
|
|
168
|
-
* {
|
|
166
|
+
* ImageInserter: { // ImageInserter
|
|
167
|
+
* InsertableImages: [ // __listOfInsertableImage
|
|
168
|
+
* { // InsertableImage
|
|
169
169
|
* Duration: Number("int"),
|
|
170
170
|
* FadeIn: Number("int"),
|
|
171
171
|
* FadeOut: Number("int"),
|
|
@@ -181,8 +181,8 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
181
181
|
* ],
|
|
182
182
|
* SdrReferenceWhiteLevel: Number("int"),
|
|
183
183
|
* },
|
|
184
|
-
* InputClippings: [
|
|
185
|
-
* {
|
|
184
|
+
* InputClippings: [ // __listOfInputClipping
|
|
185
|
+
* { // InputClipping
|
|
186
186
|
* EndTimecode: "STRING_VALUE",
|
|
187
187
|
* StartTimecode: "STRING_VALUE",
|
|
188
188
|
* },
|
|
@@ -198,12 +198,12 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
198
198
|
* PsiControl: "IGNORE_PSI" || "USE_PSI",
|
|
199
199
|
* TimecodeSource: "EMBEDDED" || "ZEROBASED" || "SPECIFIEDSTART",
|
|
200
200
|
* TimecodeStart: "STRING_VALUE",
|
|
201
|
-
* VideoSelector: {
|
|
201
|
+
* VideoSelector: { // VideoSelector
|
|
202
202
|
* AlphaBehavior: "DISCARD" || "REMAP_TO_LUMA",
|
|
203
203
|
* ColorSpace: "FOLLOW" || "REC_601" || "REC_709" || "HDR10" || "HLG_2020" || "P3DCI" || "P3D65_SDR" || "P3D65_HDR",
|
|
204
204
|
* ColorSpaceUsage: "FORCE" || "FALLBACK",
|
|
205
205
|
* EmbeddedTimecodeOverride: "NONE" || "USE_MDPM",
|
|
206
|
-
* Hdr10Metadata: {
|
|
206
|
+
* Hdr10Metadata: { // Hdr10Metadata
|
|
207
207
|
* BluePrimaryX: Number("int"),
|
|
208
208
|
* BluePrimaryY: Number("int"),
|
|
209
209
|
* GreenPrimaryX: Number("int"),
|
|
@@ -225,7 +225,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
225
225
|
* },
|
|
226
226
|
* },
|
|
227
227
|
* ],
|
|
228
|
-
* KantarWatermark: {
|
|
228
|
+
* KantarWatermark: { // KantarWatermarkSettings
|
|
229
229
|
* ChannelName: "STRING_VALUE",
|
|
230
230
|
* ContentReference: "STRING_VALUE",
|
|
231
231
|
* CredentialsSecretName: "STRING_VALUE",
|
|
@@ -240,25 +240,25 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
240
240
|
* Metadata7: "STRING_VALUE",
|
|
241
241
|
* Metadata8: "STRING_VALUE",
|
|
242
242
|
* },
|
|
243
|
-
* MotionImageInserter: {
|
|
244
|
-
* Framerate: {
|
|
243
|
+
* MotionImageInserter: { // MotionImageInserter
|
|
244
|
+
* Framerate: { // MotionImageInsertionFramerate
|
|
245
245
|
* FramerateDenominator: Number("int"),
|
|
246
246
|
* FramerateNumerator: Number("int"),
|
|
247
247
|
* },
|
|
248
248
|
* Input: "STRING_VALUE",
|
|
249
249
|
* InsertionMode: "MOV" || "PNG",
|
|
250
|
-
* Offset: {
|
|
250
|
+
* Offset: { // MotionImageInsertionOffset
|
|
251
251
|
* ImageX: Number("int"),
|
|
252
252
|
* ImageY: Number("int"),
|
|
253
253
|
* },
|
|
254
254
|
* Playback: "ONCE" || "REPEAT",
|
|
255
255
|
* StartTime: "STRING_VALUE",
|
|
256
256
|
* },
|
|
257
|
-
* NielsenConfiguration: {
|
|
257
|
+
* NielsenConfiguration: { // NielsenConfiguration
|
|
258
258
|
* BreakoutCode: Number("int"),
|
|
259
259
|
* DistributorId: "STRING_VALUE",
|
|
260
260
|
* },
|
|
261
|
-
* NielsenNonLinearWatermark: {
|
|
261
|
+
* NielsenNonLinearWatermark: { // NielsenNonLinearWatermarkSettings
|
|
262
262
|
* ActiveWatermarkProcess: "NAES2_AND_NW" || "CBET" || "NAES2_AND_NW_AND_CBET",
|
|
263
263
|
* AdiFilename: "STRING_VALUE",
|
|
264
264
|
* AssetId: "STRING_VALUE",
|
|
@@ -271,33 +271,33 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
271
271
|
* TicServerUrl: "STRING_VALUE",
|
|
272
272
|
* UniqueTicPerAudioTrack: "RESERVE_UNIQUE_TICS_PER_TRACK" || "SAME_TICS_PER_TRACK",
|
|
273
273
|
* },
|
|
274
|
-
* OutputGroups: [
|
|
275
|
-
* {
|
|
276
|
-
* AutomatedEncodingSettings: {
|
|
277
|
-
* AbrSettings: {
|
|
274
|
+
* OutputGroups: [ // __listOfOutputGroup
|
|
275
|
+
* { // OutputGroup
|
|
276
|
+
* AutomatedEncodingSettings: { // AutomatedEncodingSettings
|
|
277
|
+
* AbrSettings: { // AutomatedAbrSettings
|
|
278
278
|
* MaxAbrBitrate: Number("int"),
|
|
279
279
|
* MaxRenditions: Number("int"),
|
|
280
280
|
* MinAbrBitrate: Number("int"),
|
|
281
|
-
* Rules: [
|
|
282
|
-
* {
|
|
283
|
-
* AllowedRenditions: [
|
|
284
|
-
* {
|
|
281
|
+
* Rules: [ // __listOfAutomatedAbrRule
|
|
282
|
+
* { // AutomatedAbrRule
|
|
283
|
+
* AllowedRenditions: [ // __listOfAllowedRenditionSize
|
|
284
|
+
* { // AllowedRenditionSize
|
|
285
285
|
* Height: Number("int"),
|
|
286
286
|
* Required: "ENABLED" || "DISABLED",
|
|
287
287
|
* Width: Number("int"),
|
|
288
288
|
* },
|
|
289
289
|
* ],
|
|
290
|
-
* ForceIncludeRenditions: [
|
|
291
|
-
* {
|
|
290
|
+
* ForceIncludeRenditions: [ // __listOfForceIncludeRenditionSize
|
|
291
|
+
* { // ForceIncludeRenditionSize
|
|
292
292
|
* Height: Number("int"),
|
|
293
293
|
* Width: Number("int"),
|
|
294
294
|
* },
|
|
295
295
|
* ],
|
|
296
|
-
* MinBottomRenditionSize: {
|
|
296
|
+
* MinBottomRenditionSize: { // MinBottomRenditionSize
|
|
297
297
|
* Height: Number("int"),
|
|
298
298
|
* Width: Number("int"),
|
|
299
299
|
* },
|
|
300
|
-
* MinTopRenditionSize: {
|
|
300
|
+
* MinTopRenditionSize: { // MinTopRenditionSize
|
|
301
301
|
* Height: Number("int"),
|
|
302
302
|
* Width: Number("int"),
|
|
303
303
|
* },
|
|
@@ -308,10 +308,10 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
308
308
|
* },
|
|
309
309
|
* CustomName: "STRING_VALUE",
|
|
310
310
|
* Name: "STRING_VALUE",
|
|
311
|
-
* OutputGroupSettings: {
|
|
312
|
-
* CmafGroupSettings: {
|
|
313
|
-
* AdditionalManifests: [
|
|
314
|
-
* {
|
|
311
|
+
* OutputGroupSettings: { // OutputGroupSettings
|
|
312
|
+
* CmafGroupSettings: { // CmafGroupSettings
|
|
313
|
+
* AdditionalManifests: [ // __listOfCmafAdditionalManifest
|
|
314
|
+
* { // CmafAdditionalManifest
|
|
315
315
|
* ManifestNameModifier: "STRING_VALUE",
|
|
316
316
|
* SelectedOutputs: [
|
|
317
317
|
* "STRING_VALUE",
|
|
@@ -323,25 +323,25 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
323
323
|
* CodecSpecification: "RFC_6381" || "RFC_4281",
|
|
324
324
|
* DashManifestStyle: "BASIC" || "COMPACT" || "DISTINCT",
|
|
325
325
|
* Destination: "STRING_VALUE",
|
|
326
|
-
* DestinationSettings: {
|
|
327
|
-
* S3Settings: {
|
|
328
|
-
* AccessControl: {
|
|
326
|
+
* DestinationSettings: { // DestinationSettings
|
|
327
|
+
* S3Settings: { // S3DestinationSettings
|
|
328
|
+
* AccessControl: { // S3DestinationAccessControl
|
|
329
329
|
* CannedAcl: "PUBLIC_READ" || "AUTHENTICATED_READ" || "BUCKET_OWNER_READ" || "BUCKET_OWNER_FULL_CONTROL",
|
|
330
330
|
* },
|
|
331
|
-
* Encryption: {
|
|
331
|
+
* Encryption: { // S3EncryptionSettings
|
|
332
332
|
* EncryptionType: "SERVER_SIDE_ENCRYPTION_S3" || "SERVER_SIDE_ENCRYPTION_KMS",
|
|
333
333
|
* KmsEncryptionContext: "STRING_VALUE",
|
|
334
334
|
* KmsKeyArn: "STRING_VALUE",
|
|
335
335
|
* },
|
|
336
336
|
* },
|
|
337
337
|
* },
|
|
338
|
-
* Encryption: {
|
|
338
|
+
* Encryption: { // CmafEncryptionSettings
|
|
339
339
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
340
340
|
* EncryptionMethod: "SAMPLE_AES" || "AES_CTR",
|
|
341
341
|
* InitializationVectorInManifest: "INCLUDE" || "EXCLUDE",
|
|
342
|
-
* SpekeKeyProvider: {
|
|
342
|
+
* SpekeKeyProvider: { // SpekeKeyProviderCmaf
|
|
343
343
|
* CertificateArn: "STRING_VALUE",
|
|
344
|
-
* DashSignaledSystemIds: [
|
|
344
|
+
* DashSignaledSystemIds: [ // __listOf__stringMin36Max36Pattern09aFAF809aFAF409aFAF409aFAF409aFAF12
|
|
345
345
|
* "STRING_VALUE",
|
|
346
346
|
* ],
|
|
347
347
|
* HlsSignaledSystemIds: [
|
|
@@ -350,7 +350,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
350
350
|
* ResourceId: "STRING_VALUE",
|
|
351
351
|
* Url: "STRING_VALUE",
|
|
352
352
|
* },
|
|
353
|
-
* StaticKeyProvider: {
|
|
353
|
+
* StaticKeyProvider: { // StaticKeyProvider
|
|
354
354
|
* KeyFormat: "STRING_VALUE",
|
|
355
355
|
* KeyFormatVersions: "STRING_VALUE",
|
|
356
356
|
* StaticKeyValue: "STRING_VALUE",
|
|
@@ -360,7 +360,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
360
360
|
* },
|
|
361
361
|
* FragmentLength: Number("int"),
|
|
362
362
|
* ImageBasedTrickPlay: "NONE" || "THUMBNAIL" || "THUMBNAIL_AND_FULLFRAME" || "ADVANCED",
|
|
363
|
-
* ImageBasedTrickPlaySettings: {
|
|
363
|
+
* ImageBasedTrickPlaySettings: { // CmafImageBasedTrickPlaySettings
|
|
364
364
|
* IntervalCadence: "FOLLOW_IFRAME" || "FOLLOW_CUSTOM",
|
|
365
365
|
* ThumbnailHeight: Number("int"),
|
|
366
366
|
* ThumbnailInterval: Number("double"),
|
|
@@ -385,9 +385,9 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
385
385
|
* WriteHlsManifest: "DISABLED" || "ENABLED",
|
|
386
386
|
* WriteSegmentTimelineInRepresentation: "ENABLED" || "DISABLED",
|
|
387
387
|
* },
|
|
388
|
-
* DashIsoGroupSettings: {
|
|
389
|
-
* AdditionalManifests: [
|
|
390
|
-
* {
|
|
388
|
+
* DashIsoGroupSettings: { // DashIsoGroupSettings
|
|
389
|
+
* AdditionalManifests: [ // __listOfDashAdditionalManifest
|
|
390
|
+
* { // DashAdditionalManifest
|
|
391
391
|
* ManifestNameModifier: "STRING_VALUE",
|
|
392
392
|
* SelectedOutputs: [
|
|
393
393
|
* "STRING_VALUE",
|
|
@@ -410,12 +410,12 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
410
410
|
* },
|
|
411
411
|
* },
|
|
412
412
|
* },
|
|
413
|
-
* Encryption: {
|
|
413
|
+
* Encryption: { // DashIsoEncryptionSettings
|
|
414
414
|
* PlaybackDeviceCompatibility: "CENC_V1" || "UNENCRYPTED_SEI",
|
|
415
|
-
* SpekeKeyProvider: {
|
|
415
|
+
* SpekeKeyProvider: { // SpekeKeyProvider
|
|
416
416
|
* CertificateArn: "STRING_VALUE",
|
|
417
417
|
* ResourceId: "STRING_VALUE",
|
|
418
|
-
* SystemIds: [
|
|
418
|
+
* SystemIds: [ // __listOf__stringPattern09aFAF809aFAF409aFAF409aFAF409aFAF12
|
|
419
419
|
* "STRING_VALUE",
|
|
420
420
|
* ],
|
|
421
421
|
* Url: "STRING_VALUE",
|
|
@@ -424,7 +424,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
424
424
|
* FragmentLength: Number("int"),
|
|
425
425
|
* HbbtvCompliance: "HBBTV_1_5" || "NONE",
|
|
426
426
|
* ImageBasedTrickPlay: "NONE" || "THUMBNAIL" || "THUMBNAIL_AND_FULLFRAME" || "ADVANCED",
|
|
427
|
-
* ImageBasedTrickPlaySettings: {
|
|
427
|
+
* ImageBasedTrickPlaySettings: { // DashIsoImageBasedTrickPlaySettings
|
|
428
428
|
* IntervalCadence: "FOLLOW_IFRAME" || "FOLLOW_CUSTOM",
|
|
429
429
|
* ThumbnailHeight: Number("int"),
|
|
430
430
|
* ThumbnailInterval: Number("double"),
|
|
@@ -443,7 +443,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
443
443
|
* VideoCompositionOffsets: "SIGNED" || "UNSIGNED",
|
|
444
444
|
* WriteSegmentTimelineInRepresentation: "ENABLED" || "DISABLED",
|
|
445
445
|
* },
|
|
446
|
-
* FileGroupSettings: {
|
|
446
|
+
* FileGroupSettings: { // FileGroupSettings
|
|
447
447
|
* Destination: "STRING_VALUE",
|
|
448
448
|
* DestinationSettings: {
|
|
449
449
|
* S3Settings: {
|
|
@@ -458,12 +458,12 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
458
458
|
* },
|
|
459
459
|
* },
|
|
460
460
|
* },
|
|
461
|
-
* HlsGroupSettings: {
|
|
462
|
-
* AdMarkers: [
|
|
461
|
+
* HlsGroupSettings: { // HlsGroupSettings
|
|
462
|
+
* AdMarkers: [ // __listOfHlsAdMarkers
|
|
463
463
|
* "ELEMENTAL" || "ELEMENTAL_SCTE35",
|
|
464
464
|
* ],
|
|
465
|
-
* AdditionalManifests: [
|
|
466
|
-
* {
|
|
465
|
+
* AdditionalManifests: [ // __listOfHlsAdditionalManifest
|
|
466
|
+
* { // HlsAdditionalManifest
|
|
467
467
|
* ManifestNameModifier: "STRING_VALUE",
|
|
468
468
|
* SelectedOutputs: [
|
|
469
469
|
* "STRING_VALUE",
|
|
@@ -472,8 +472,8 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
472
472
|
* ],
|
|
473
473
|
* AudioOnlyHeader: "INCLUDE" || "EXCLUDE",
|
|
474
474
|
* BaseUrl: "STRING_VALUE",
|
|
475
|
-
* CaptionLanguageMappings: [
|
|
476
|
-
* {
|
|
475
|
+
* CaptionLanguageMappings: [ // __listOfHlsCaptionLanguageMapping
|
|
476
|
+
* { // HlsCaptionLanguageMapping
|
|
477
477
|
* CaptionChannel: Number("int"),
|
|
478
478
|
* CustomLanguageCode: "STRING_VALUE",
|
|
479
479
|
* LanguageCode: "ENG" || "SPA" || "FRA" || "DEU" || "GER" || "ZHO" || "ARA" || "HIN" || "JPN" || "RUS" || "POR" || "ITA" || "URD" || "VIE" || "KOR" || "PAN" || "ABK" || "AAR" || "AFR" || "AKA" || "SQI" || "AMH" || "ARG" || "HYE" || "ASM" || "AVA" || "AVE" || "AYM" || "AZE" || "BAM" || "BAK" || "EUS" || "BEL" || "BEN" || "BIH" || "BIS" || "BOS" || "BRE" || "BUL" || "MYA" || "CAT" || "KHM" || "CHA" || "CHE" || "NYA" || "CHU" || "CHV" || "COR" || "COS" || "CRE" || "HRV" || "CES" || "DAN" || "DIV" || "NLD" || "DZO" || "ENM" || "EPO" || "EST" || "EWE" || "FAO" || "FIJ" || "FIN" || "FRM" || "FUL" || "GLA" || "GLG" || "LUG" || "KAT" || "ELL" || "GRN" || "GUJ" || "HAT" || "HAU" || "HEB" || "HER" || "HMO" || "HUN" || "ISL" || "IDO" || "IBO" || "IND" || "INA" || "ILE" || "IKU" || "IPK" || "GLE" || "JAV" || "KAL" || "KAN" || "KAU" || "KAS" || "KAZ" || "KIK" || "KIN" || "KIR" || "KOM" || "KON" || "KUA" || "KUR" || "LAO" || "LAT" || "LAV" || "LIM" || "LIN" || "LIT" || "LUB" || "LTZ" || "MKD" || "MLG" || "MSA" || "MAL" || "MLT" || "GLV" || "MRI" || "MAR" || "MAH" || "MON" || "NAU" || "NAV" || "NDE" || "NBL" || "NDO" || "NEP" || "SME" || "NOR" || "NOB" || "NNO" || "OCI" || "OJI" || "ORI" || "ORM" || "OSS" || "PLI" || "FAS" || "POL" || "PUS" || "QUE" || "QAA" || "RON" || "ROH" || "RUN" || "SMO" || "SAG" || "SAN" || "SRD" || "SRB" || "SNA" || "III" || "SND" || "SIN" || "SLK" || "SLV" || "SOM" || "SOT" || "SUN" || "SWA" || "SSW" || "SWE" || "TGL" || "TAH" || "TGK" || "TAM" || "TAT" || "TEL" || "THA" || "BOD" || "TIR" || "TON" || "TSO" || "TSN" || "TUR" || "TUK" || "TWI" || "UIG" || "UKR" || "UZB" || "VEN" || "VOL" || "WLN" || "CYM" || "FRY" || "WOL" || "XHO" || "YID" || "YOR" || "ZHA" || "ZUL" || "ORJ" || "QPC" || "TNG" || "SRP",
|
|
@@ -498,7 +498,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
498
498
|
* },
|
|
499
499
|
* },
|
|
500
500
|
* DirectoryStructure: "SINGLE_DIRECTORY" || "SUBDIRECTORY_PER_STREAM",
|
|
501
|
-
* Encryption: {
|
|
501
|
+
* Encryption: { // HlsEncryptionSettings
|
|
502
502
|
* ConstantInitializationVector: "STRING_VALUE",
|
|
503
503
|
* EncryptionMethod: "AES128" || "SAMPLE_AES",
|
|
504
504
|
* InitializationVectorInManifest: "INCLUDE" || "EXCLUDE",
|
|
@@ -520,7 +520,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
520
520
|
* Type: "SPEKE" || "STATIC_KEY",
|
|
521
521
|
* },
|
|
522
522
|
* ImageBasedTrickPlay: "NONE" || "THUMBNAIL" || "THUMBNAIL_AND_FULLFRAME" || "ADVANCED",
|
|
523
|
-
* ImageBasedTrickPlaySettings: {
|
|
523
|
+
* ImageBasedTrickPlaySettings: { // HlsImageBasedTrickPlaySettings
|
|
524
524
|
* IntervalCadence: "FOLLOW_IFRAME" || "FOLLOW_CUSTOM",
|
|
525
525
|
* ThumbnailHeight: Number("int"),
|
|
526
526
|
* ThumbnailInterval: Number("double"),
|
|
@@ -545,9 +545,9 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
545
545
|
* TimedMetadataId3Period: Number("int"),
|
|
546
546
|
* TimestampDeltaMilliseconds: Number("int"),
|
|
547
547
|
* },
|
|
548
|
-
* MsSmoothGroupSettings: {
|
|
549
|
-
* AdditionalManifests: [
|
|
550
|
-
* {
|
|
548
|
+
* MsSmoothGroupSettings: { // MsSmoothGroupSettings
|
|
549
|
+
* AdditionalManifests: [ // __listOfMsSmoothAdditionalManifest
|
|
550
|
+
* { // MsSmoothAdditionalManifest
|
|
551
551
|
* ManifestNameModifier: "STRING_VALUE",
|
|
552
552
|
* SelectedOutputs: [
|
|
553
553
|
* "STRING_VALUE",
|
|
@@ -568,7 +568,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
568
568
|
* },
|
|
569
569
|
* },
|
|
570
570
|
* },
|
|
571
|
-
* Encryption: {
|
|
571
|
+
* Encryption: { // MsSmoothEncryptionSettings
|
|
572
572
|
* SpekeKeyProvider: {
|
|
573
573
|
* CertificateArn: "STRING_VALUE",
|
|
574
574
|
* ResourceId: "STRING_VALUE",
|
|
@@ -584,14 +584,14 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
584
584
|
* },
|
|
585
585
|
* Type: "HLS_GROUP_SETTINGS" || "DASH_ISO_GROUP_SETTINGS" || "FILE_GROUP_SETTINGS" || "MS_SMOOTH_GROUP_SETTINGS" || "CMAF_GROUP_SETTINGS",
|
|
586
586
|
* },
|
|
587
|
-
* Outputs: [
|
|
588
|
-
* {
|
|
589
|
-
* AudioDescriptions: [
|
|
590
|
-
* {
|
|
591
|
-
* AudioChannelTaggingSettings: {
|
|
587
|
+
* Outputs: [ // __listOfOutput
|
|
588
|
+
* { // Output
|
|
589
|
+
* AudioDescriptions: [ // __listOfAudioDescription
|
|
590
|
+
* { // AudioDescription
|
|
591
|
+
* AudioChannelTaggingSettings: { // AudioChannelTaggingSettings
|
|
592
592
|
* ChannelTag: "L" || "R" || "C" || "LFE" || "LS" || "RS" || "LC" || "RC" || "CS" || "LSD" || "RSD" || "TCS" || "VHL" || "VHC" || "VHR",
|
|
593
593
|
* },
|
|
594
|
-
* AudioNormalizationSettings: {
|
|
594
|
+
* AudioNormalizationSettings: { // AudioNormalizationSettings
|
|
595
595
|
* Algorithm: "ITU_BS_1770_1" || "ITU_BS_1770_2" || "ITU_BS_1770_3" || "ITU_BS_1770_4",
|
|
596
596
|
* AlgorithmControl: "CORRECT_AUDIO" || "MEASURE_ONLY",
|
|
597
597
|
* CorrectionGateLevel: Number("int"),
|
|
@@ -603,8 +603,8 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
603
603
|
* AudioSourceName: "STRING_VALUE",
|
|
604
604
|
* AudioType: Number("int"),
|
|
605
605
|
* AudioTypeControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
606
|
-
* CodecSettings: {
|
|
607
|
-
* AacSettings: {
|
|
606
|
+
* CodecSettings: { // AudioCodecSettings
|
|
607
|
+
* AacSettings: { // AacSettings
|
|
608
608
|
* AudioDescriptionBroadcasterMix: "BROADCASTER_MIXED_AD" || "NORMAL",
|
|
609
609
|
* Bitrate: Number("int"),
|
|
610
610
|
* CodecProfile: "LC" || "HEV1" || "HEV2",
|
|
@@ -615,7 +615,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
615
615
|
* Specification: "MPEG2" || "MPEG4",
|
|
616
616
|
* VbrQuality: "LOW" || "MEDIUM_LOW" || "MEDIUM_HIGH" || "HIGH",
|
|
617
617
|
* },
|
|
618
|
-
* Ac3Settings: {
|
|
618
|
+
* Ac3Settings: { // Ac3Settings
|
|
619
619
|
* Bitrate: Number("int"),
|
|
620
620
|
* BitstreamMode: "COMPLETE_MAIN" || "COMMENTARY" || "DIALOGUE" || "EMERGENCY" || "HEARING_IMPAIRED" || "MUSIC_AND_EFFECTS" || "VISUALLY_IMPAIRED" || "VOICE_OVER",
|
|
621
621
|
* CodingMode: "CODING_MODE_1_0" || "CODING_MODE_1_1" || "CODING_MODE_2_0" || "CODING_MODE_3_2_LFE",
|
|
@@ -627,13 +627,13 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
627
627
|
* MetadataControl: "FOLLOW_INPUT" || "USE_CONFIGURED",
|
|
628
628
|
* SampleRate: Number("int"),
|
|
629
629
|
* },
|
|
630
|
-
* AiffSettings: {
|
|
630
|
+
* AiffSettings: { // AiffSettings
|
|
631
631
|
* BitDepth: Number("int"),
|
|
632
632
|
* Channels: Number("int"),
|
|
633
633
|
* SampleRate: Number("int"),
|
|
634
634
|
* },
|
|
635
635
|
* Codec: "AAC" || "MP2" || "MP3" || "WAV" || "AIFF" || "AC3" || "EAC3" || "EAC3_ATMOS" || "VORBIS" || "OPUS" || "PASSTHROUGH",
|
|
636
|
-
* Eac3AtmosSettings: {
|
|
636
|
+
* Eac3AtmosSettings: { // Eac3AtmosSettings
|
|
637
637
|
* Bitrate: Number("int"),
|
|
638
638
|
* BitstreamMode: "COMPLETE_MAIN",
|
|
639
639
|
* CodingMode: "CODING_MODE_AUTO" || "CODING_MODE_5_1_4" || "CODING_MODE_7_1_4" || "CODING_MODE_9_1_6",
|
|
@@ -652,7 +652,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
652
652
|
* StereoDownmix: "NOT_INDICATED" || "STEREO" || "SURROUND" || "DPL2",
|
|
653
653
|
* SurroundExMode: "NOT_INDICATED" || "ENABLED" || "DISABLED",
|
|
654
654
|
* },
|
|
655
|
-
* Eac3Settings: {
|
|
655
|
+
* Eac3Settings: { // Eac3Settings
|
|
656
656
|
* AttenuationControl: "ATTENUATE_3_DB" || "NONE",
|
|
657
657
|
* Bitrate: Number("int"),
|
|
658
658
|
* BitstreamMode: "COMPLETE_MAIN" || "COMMENTARY" || "EMERGENCY" || "HEARING_IMPAIRED" || "VISUALLY_IMPAIRED",
|
|
@@ -675,29 +675,29 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
675
675
|
* SurroundExMode: "NOT_INDICATED" || "ENABLED" || "DISABLED",
|
|
676
676
|
* SurroundMode: "NOT_INDICATED" || "ENABLED" || "DISABLED",
|
|
677
677
|
* },
|
|
678
|
-
* Mp2Settings: {
|
|
678
|
+
* Mp2Settings: { // Mp2Settings
|
|
679
679
|
* Bitrate: Number("int"),
|
|
680
680
|
* Channels: Number("int"),
|
|
681
681
|
* SampleRate: Number("int"),
|
|
682
682
|
* },
|
|
683
|
-
* Mp3Settings: {
|
|
683
|
+
* Mp3Settings: { // Mp3Settings
|
|
684
684
|
* Bitrate: Number("int"),
|
|
685
685
|
* Channels: Number("int"),
|
|
686
686
|
* RateControlMode: "CBR" || "VBR",
|
|
687
687
|
* SampleRate: Number("int"),
|
|
688
688
|
* VbrQuality: Number("int"),
|
|
689
689
|
* },
|
|
690
|
-
* OpusSettings: {
|
|
690
|
+
* OpusSettings: { // OpusSettings
|
|
691
691
|
* Bitrate: Number("int"),
|
|
692
692
|
* Channels: Number("int"),
|
|
693
693
|
* SampleRate: Number("int"),
|
|
694
694
|
* },
|
|
695
|
-
* VorbisSettings: {
|
|
695
|
+
* VorbisSettings: { // VorbisSettings
|
|
696
696
|
* Channels: Number("int"),
|
|
697
697
|
* SampleRate: Number("int"),
|
|
698
698
|
* VbrQuality: Number("int"),
|
|
699
699
|
* },
|
|
700
|
-
* WavSettings: {
|
|
700
|
+
* WavSettings: { // WavSettings
|
|
701
701
|
* BitDepth: Number("int"),
|
|
702
702
|
* Channels: Number("int"),
|
|
703
703
|
* Format: "RIFF" || "RF64",
|
|
@@ -726,12 +726,12 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
726
726
|
* StreamName: "STRING_VALUE",
|
|
727
727
|
* },
|
|
728
728
|
* ],
|
|
729
|
-
* CaptionDescriptions: [
|
|
730
|
-
* {
|
|
729
|
+
* CaptionDescriptions: [ // __listOfCaptionDescription
|
|
730
|
+
* { // CaptionDescription
|
|
731
731
|
* CaptionSelectorName: "STRING_VALUE",
|
|
732
732
|
* CustomLanguageCode: "STRING_VALUE",
|
|
733
|
-
* DestinationSettings: {
|
|
734
|
-
* BurninDestinationSettings: {
|
|
733
|
+
* DestinationSettings: { // CaptionDestinationSettings
|
|
734
|
+
* BurninDestinationSettings: { // BurninDestinationSettings
|
|
735
735
|
* Alignment: "CENTERED" || "LEFT" || "AUTO",
|
|
736
736
|
* ApplyFontColor: "WHITE_TEXT_ONLY" || "ALL_TEXT",
|
|
737
737
|
* BackgroundColor: "NONE" || "BLACK" || "WHITE" || "AUTO",
|
|
@@ -755,7 +755,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
755
755
|
* YPosition: Number("int"),
|
|
756
756
|
* },
|
|
757
757
|
* DestinationType: "BURN_IN" || "DVB_SUB" || "EMBEDDED" || "EMBEDDED_PLUS_SCTE20" || "IMSC" || "SCTE20_PLUS_EMBEDDED" || "SCC" || "SRT" || "SMI" || "TELETEXT" || "TTML" || "WEBVTT",
|
|
758
|
-
* DvbSubDestinationSettings: {
|
|
758
|
+
* DvbSubDestinationSettings: { // DvbSubDestinationSettings
|
|
759
759
|
* Alignment: "CENTERED" || "LEFT" || "AUTO",
|
|
760
760
|
* ApplyFontColor: "WHITE_TEXT_ONLY" || "ALL_TEXT",
|
|
761
761
|
* BackgroundColor: "NONE" || "BLACK" || "WHITE" || "AUTO",
|
|
@@ -784,30 +784,30 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
784
784
|
* XPosition: Number("int"),
|
|
785
785
|
* YPosition: Number("int"),
|
|
786
786
|
* },
|
|
787
|
-
* EmbeddedDestinationSettings: {
|
|
787
|
+
* EmbeddedDestinationSettings: { // EmbeddedDestinationSettings
|
|
788
788
|
* Destination608ChannelNumber: Number("int"),
|
|
789
789
|
* Destination708ServiceNumber: Number("int"),
|
|
790
790
|
* },
|
|
791
|
-
* ImscDestinationSettings: {
|
|
791
|
+
* ImscDestinationSettings: { // ImscDestinationSettings
|
|
792
792
|
* Accessibility: "DISABLED" || "ENABLED",
|
|
793
793
|
* StylePassthrough: "ENABLED" || "DISABLED",
|
|
794
794
|
* },
|
|
795
|
-
* SccDestinationSettings: {
|
|
795
|
+
* SccDestinationSettings: { // SccDestinationSettings
|
|
796
796
|
* Framerate: "FRAMERATE_23_97" || "FRAMERATE_24" || "FRAMERATE_25" || "FRAMERATE_29_97_DROPFRAME" || "FRAMERATE_29_97_NON_DROPFRAME",
|
|
797
797
|
* },
|
|
798
|
-
* SrtDestinationSettings: {
|
|
798
|
+
* SrtDestinationSettings: { // SrtDestinationSettings
|
|
799
799
|
* StylePassthrough: "ENABLED" || "DISABLED",
|
|
800
800
|
* },
|
|
801
|
-
* TeletextDestinationSettings: {
|
|
801
|
+
* TeletextDestinationSettings: { // TeletextDestinationSettings
|
|
802
802
|
* PageNumber: "STRING_VALUE",
|
|
803
|
-
* PageTypes: [
|
|
803
|
+
* PageTypes: [ // __listOfTeletextPageType
|
|
804
804
|
* "PAGE_TYPE_INITIAL" || "PAGE_TYPE_SUBTITLE" || "PAGE_TYPE_ADDL_INFO" || "PAGE_TYPE_PROGRAM_SCHEDULE" || "PAGE_TYPE_HEARING_IMPAIRED_SUBTITLE",
|
|
805
805
|
* ],
|
|
806
806
|
* },
|
|
807
|
-
* TtmlDestinationSettings: {
|
|
807
|
+
* TtmlDestinationSettings: { // TtmlDestinationSettings
|
|
808
808
|
* StylePassthrough: "ENABLED" || "DISABLED",
|
|
809
809
|
* },
|
|
810
|
-
* WebvttDestinationSettings: {
|
|
810
|
+
* WebvttDestinationSettings: { // WebvttDestinationSettings
|
|
811
811
|
* Accessibility: "DISABLED" || "ENABLED",
|
|
812
812
|
* StylePassthrough: "ENABLED" || "DISABLED" || "STRICT",
|
|
813
813
|
* },
|
|
@@ -816,8 +816,8 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
816
816
|
* LanguageDescription: "STRING_VALUE",
|
|
817
817
|
* },
|
|
818
818
|
* ],
|
|
819
|
-
* ContainerSettings: {
|
|
820
|
-
* CmfcSettings: {
|
|
819
|
+
* ContainerSettings: { // ContainerSettings
|
|
820
|
+
* CmfcSettings: { // CmfcSettings
|
|
821
821
|
* AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
822
822
|
* AudioGroupId: "STRING_VALUE",
|
|
823
823
|
* AudioRenditionSets: "STRING_VALUE",
|
|
@@ -834,25 +834,25 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
834
834
|
* TimedMetadataValue: "STRING_VALUE",
|
|
835
835
|
* },
|
|
836
836
|
* Container: "F4V" || "ISMV" || "M2TS" || "M3U8" || "CMFC" || "MOV" || "MP4" || "MPD" || "MXF" || "WEBM" || "RAW",
|
|
837
|
-
* F4vSettings: {
|
|
837
|
+
* F4vSettings: { // F4vSettings
|
|
838
838
|
* MoovPlacement: "PROGRESSIVE_DOWNLOAD" || "NORMAL",
|
|
839
839
|
* },
|
|
840
|
-
* M2tsSettings: {
|
|
840
|
+
* M2tsSettings: { // M2tsSettings
|
|
841
841
|
* AudioBufferModel: "DVB" || "ATSC",
|
|
842
842
|
* AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
843
843
|
* AudioFramesPerPes: Number("int"),
|
|
844
|
-
* AudioPids: [
|
|
844
|
+
* AudioPids: [ // __listOf__integerMin32Max8182
|
|
845
845
|
* Number("int"),
|
|
846
846
|
* ],
|
|
847
847
|
* Bitrate: Number("int"),
|
|
848
848
|
* BufferModel: "MULTIPLEX" || "NONE",
|
|
849
849
|
* DataPTSControl: "AUTO" || "ALIGN_TO_VIDEO",
|
|
850
|
-
* DvbNitSettings: {
|
|
850
|
+
* DvbNitSettings: { // DvbNitSettings
|
|
851
851
|
* NetworkId: Number("int"),
|
|
852
852
|
* NetworkName: "STRING_VALUE",
|
|
853
853
|
* NitInterval: Number("int"),
|
|
854
854
|
* },
|
|
855
|
-
* DvbSdtSettings: {
|
|
855
|
+
* DvbSdtSettings: { // DvbSdtSettings
|
|
856
856
|
* OutputSdt: "SDT_FOLLOW" || "SDT_FOLLOW_IF_PRESENT" || "SDT_MANUAL" || "SDT_NONE",
|
|
857
857
|
* SdtInterval: Number("int"),
|
|
858
858
|
* ServiceName: "STRING_VALUE",
|
|
@@ -861,7 +861,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
861
861
|
* DvbSubPids: [
|
|
862
862
|
* Number("int"),
|
|
863
863
|
* ],
|
|
864
|
-
* DvbTdtSettings: {
|
|
864
|
+
* DvbTdtSettings: { // DvbTdtSettings
|
|
865
865
|
* TdtInterval: Number("int"),
|
|
866
866
|
* },
|
|
867
867
|
* DvbTeletextPid: Number("int"),
|
|
@@ -883,7 +883,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
883
883
|
* PrivateMetadataPid: Number("int"),
|
|
884
884
|
* ProgramNumber: Number("int"),
|
|
885
885
|
* RateMode: "VBR" || "CBR",
|
|
886
|
-
* Scte35Esam: {
|
|
886
|
+
* Scte35Esam: { // M2tsScte35Esam
|
|
887
887
|
* Scte35EsamPid: Number("int"),
|
|
888
888
|
* },
|
|
889
889
|
* Scte35Pid: Number("int"),
|
|
@@ -895,7 +895,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
895
895
|
* TransportStreamId: Number("int"),
|
|
896
896
|
* VideoPid: Number("int"),
|
|
897
897
|
* },
|
|
898
|
-
* M3u8Settings: {
|
|
898
|
+
* M3u8Settings: { // M3u8Settings
|
|
899
899
|
* AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
900
900
|
* AudioFramesPerPes: Number("int"),
|
|
901
901
|
* AudioPids: [
|
|
@@ -918,14 +918,14 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
918
918
|
* TransportStreamId: Number("int"),
|
|
919
919
|
* VideoPid: Number("int"),
|
|
920
920
|
* },
|
|
921
|
-
* MovSettings: {
|
|
921
|
+
* MovSettings: { // MovSettings
|
|
922
922
|
* ClapAtom: "INCLUDE" || "EXCLUDE",
|
|
923
923
|
* CslgAtom: "INCLUDE" || "EXCLUDE",
|
|
924
924
|
* Mpeg2FourCCControl: "XDCAM" || "MPEG",
|
|
925
925
|
* PaddingControl: "OMNEON" || "NONE",
|
|
926
926
|
* Reference: "SELF_CONTAINED" || "EXTERNAL",
|
|
927
927
|
* },
|
|
928
|
-
* Mp4Settings: {
|
|
928
|
+
* Mp4Settings: { // Mp4Settings
|
|
929
929
|
* AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
930
930
|
* CslgAtom: "INCLUDE" || "EXCLUDE",
|
|
931
931
|
* CttsVersion: Number("int"),
|
|
@@ -933,7 +933,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
933
933
|
* MoovPlacement: "PROGRESSIVE_DOWNLOAD" || "NORMAL",
|
|
934
934
|
* Mp4MajorBrand: "STRING_VALUE",
|
|
935
935
|
* },
|
|
936
|
-
* MpdSettings: {
|
|
936
|
+
* MpdSettings: { // MpdSettings
|
|
937
937
|
* AccessibilityCaptionHints: "INCLUDE" || "EXCLUDE",
|
|
938
938
|
* AudioDuration: "DEFAULT_CODEC_DURATION" || "MATCH_VIDEO_DURATION",
|
|
939
939
|
* CaptionContainerType: "RAW" || "FRAGMENTED_MP4",
|
|
@@ -946,10 +946,10 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
946
946
|
* TimedMetadataSchemeIdUri: "STRING_VALUE",
|
|
947
947
|
* TimedMetadataValue: "STRING_VALUE",
|
|
948
948
|
* },
|
|
949
|
-
* MxfSettings: {
|
|
949
|
+
* MxfSettings: { // MxfSettings
|
|
950
950
|
* AfdSignaling: "NO_COPY" || "COPY_FROM_VIDEO",
|
|
951
951
|
* Profile: "D_10" || "XDCAM" || "OP1A" || "XAVC",
|
|
952
|
-
* XavcProfileSettings: {
|
|
952
|
+
* XavcProfileSettings: { // MxfXavcProfileSettings
|
|
953
953
|
* DurationMode: "ALLOW_ANY_DURATION" || "DROP_FRAMES_FOR_COMPLIANCE",
|
|
954
954
|
* MaxAncDataSize: Number("int"),
|
|
955
955
|
* },
|
|
@@ -957,8 +957,8 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
957
957
|
* },
|
|
958
958
|
* Extension: "STRING_VALUE",
|
|
959
959
|
* NameModifier: "STRING_VALUE",
|
|
960
|
-
* OutputSettings: {
|
|
961
|
-
* HlsSettings: {
|
|
960
|
+
* OutputSettings: { // OutputSettings
|
|
961
|
+
* HlsSettings: { // HlsSettings
|
|
962
962
|
* AudioGroupId: "STRING_VALUE",
|
|
963
963
|
* AudioOnlyContainer: "AUTOMATIC" || "M2TS",
|
|
964
964
|
* AudioRenditionSets: "STRING_VALUE",
|
|
@@ -969,11 +969,11 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
969
969
|
* },
|
|
970
970
|
* },
|
|
971
971
|
* Preset: "STRING_VALUE",
|
|
972
|
-
* VideoDescription: {
|
|
972
|
+
* VideoDescription: { // VideoDescription
|
|
973
973
|
* AfdSignaling: "NONE" || "AUTO" || "FIXED",
|
|
974
974
|
* AntiAlias: "DISABLED" || "ENABLED",
|
|
975
|
-
* CodecSettings: {
|
|
976
|
-
* Av1Settings: {
|
|
975
|
+
* CodecSettings: { // VideoCodecSettings
|
|
976
|
+
* Av1Settings: { // Av1Settings
|
|
977
977
|
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX",
|
|
978
978
|
* BitDepth: "BIT_8" || "BIT_10",
|
|
979
979
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
@@ -983,7 +983,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
983
983
|
* GopSize: Number("double"),
|
|
984
984
|
* MaxBitrate: Number("int"),
|
|
985
985
|
* NumberBFramesBetweenReferenceFrames: Number("int"),
|
|
986
|
-
* QvbrSettings: {
|
|
986
|
+
* QvbrSettings: { // Av1QvbrSettings
|
|
987
987
|
* QvbrQualityLevel: Number("int"),
|
|
988
988
|
* QvbrQualityLevelFineTune: Number("double"),
|
|
989
989
|
* },
|
|
@@ -991,9 +991,9 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
991
991
|
* Slices: Number("int"),
|
|
992
992
|
* SpatialAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
993
993
|
* },
|
|
994
|
-
* AvcIntraSettings: {
|
|
994
|
+
* AvcIntraSettings: { // AvcIntraSettings
|
|
995
995
|
* AvcIntraClass: "CLASS_50" || "CLASS_100" || "CLASS_200" || "CLASS_4K_2K",
|
|
996
|
-
* AvcIntraUhdSettings: {
|
|
996
|
+
* AvcIntraUhdSettings: { // AvcIntraUhdSettings
|
|
997
997
|
* QualityTuningLevel: "SINGLE_PASS" || "MULTI_PASS",
|
|
998
998
|
* },
|
|
999
999
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
@@ -1006,15 +1006,15 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1006
1006
|
* Telecine: "NONE" || "HARD",
|
|
1007
1007
|
* },
|
|
1008
1008
|
* Codec: "AV1" || "AVC_INTRA" || "FRAME_CAPTURE" || "H_264" || "H_265" || "MPEG2" || "PRORES" || "VC3" || "VP8" || "VP9" || "XAVC",
|
|
1009
|
-
* FrameCaptureSettings: {
|
|
1009
|
+
* FrameCaptureSettings: { // FrameCaptureSettings
|
|
1010
1010
|
* FramerateDenominator: Number("int"),
|
|
1011
1011
|
* FramerateNumerator: Number("int"),
|
|
1012
1012
|
* MaxCaptures: Number("int"),
|
|
1013
1013
|
* Quality: Number("int"),
|
|
1014
1014
|
* },
|
|
1015
|
-
* H264Settings: {
|
|
1015
|
+
* H264Settings: { // H264Settings
|
|
1016
1016
|
* AdaptiveQuantization: "OFF" || "AUTO" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX",
|
|
1017
|
-
* BandwidthReductionFilter: {
|
|
1017
|
+
* BandwidthReductionFilter: { // BandwidthReductionFilter
|
|
1018
1018
|
* Sharpening: "LOW" || "MEDIUM" || "HIGH" || "OFF",
|
|
1019
1019
|
* Strength: "LOW" || "MEDIUM" || "HIGH" || "AUTO" || "OFF",
|
|
1020
1020
|
* },
|
|
@@ -1045,7 +1045,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1045
1045
|
* ParDenominator: Number("int"),
|
|
1046
1046
|
* ParNumerator: Number("int"),
|
|
1047
1047
|
* QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
1048
|
-
* QvbrSettings: {
|
|
1048
|
+
* QvbrSettings: { // H264QvbrSettings
|
|
1049
1049
|
* MaxAverageBitrate: Number("int"),
|
|
1050
1050
|
* QvbrQualityLevel: Number("int"),
|
|
1051
1051
|
* QvbrQualityLevelFineTune: Number("double"),
|
|
@@ -1063,7 +1063,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1063
1063
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1064
1064
|
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1065
1065
|
* },
|
|
1066
|
-
* H265Settings: {
|
|
1066
|
+
* H265Settings: { // H265Settings
|
|
1067
1067
|
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX" || "AUTO",
|
|
1068
1068
|
* AlternateTransferFunctionSei: "DISABLED" || "ENABLED",
|
|
1069
1069
|
* Bitrate: Number("int"),
|
|
@@ -1091,7 +1091,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1091
1091
|
* ParDenominator: Number("int"),
|
|
1092
1092
|
* ParNumerator: Number("int"),
|
|
1093
1093
|
* QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
1094
|
-
* QvbrSettings: {
|
|
1094
|
+
* QvbrSettings: { // H265QvbrSettings
|
|
1095
1095
|
* MaxAverageBitrate: Number("int"),
|
|
1096
1096
|
* QvbrQualityLevel: Number("int"),
|
|
1097
1097
|
* QvbrQualityLevelFineTune: Number("double"),
|
|
@@ -1110,7 +1110,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1110
1110
|
* UnregisteredSeiTimecode: "DISABLED" || "ENABLED",
|
|
1111
1111
|
* WriteMp4PackagingType: "HVC1" || "HEV1",
|
|
1112
1112
|
* },
|
|
1113
|
-
* Mpeg2Settings: {
|
|
1113
|
+
* Mpeg2Settings: { // Mpeg2Settings
|
|
1114
1114
|
* AdaptiveQuantization: "OFF" || "LOW" || "MEDIUM" || "HIGH",
|
|
1115
1115
|
* Bitrate: Number("int"),
|
|
1116
1116
|
* CodecLevel: "AUTO" || "LOW" || "MAIN" || "HIGH1440" || "HIGH",
|
|
@@ -1145,7 +1145,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1145
1145
|
* Telecine: "NONE" || "SOFT" || "HARD",
|
|
1146
1146
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1147
1147
|
* },
|
|
1148
|
-
* ProresSettings: {
|
|
1148
|
+
* ProresSettings: { // ProresSettings
|
|
1149
1149
|
* ChromaSampling: "PRESERVE_444_SAMPLING" || "SUBSAMPLE_TO_422",
|
|
1150
1150
|
* CodecProfile: "APPLE_PRORES_422" || "APPLE_PRORES_422_HQ" || "APPLE_PRORES_422_LT" || "APPLE_PRORES_422_PROXY" || "APPLE_PRORES_4444" || "APPLE_PRORES_4444_XQ",
|
|
1151
1151
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
@@ -1160,7 +1160,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1160
1160
|
* SlowPal: "DISABLED" || "ENABLED",
|
|
1161
1161
|
* Telecine: "NONE" || "HARD",
|
|
1162
1162
|
* },
|
|
1163
|
-
* Vc3Settings: {
|
|
1163
|
+
* Vc3Settings: { // Vc3Settings
|
|
1164
1164
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
1165
1165
|
* FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
1166
1166
|
* FramerateDenominator: Number("int"),
|
|
@@ -1171,7 +1171,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1171
1171
|
* Telecine: "NONE" || "HARD",
|
|
1172
1172
|
* Vc3Class: "CLASS_145_8BIT" || "CLASS_220_8BIT" || "CLASS_220_10BIT",
|
|
1173
1173
|
* },
|
|
1174
|
-
* Vp8Settings: {
|
|
1174
|
+
* Vp8Settings: { // Vp8Settings
|
|
1175
1175
|
* Bitrate: Number("int"),
|
|
1176
1176
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
1177
1177
|
* FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
@@ -1186,7 +1186,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1186
1186
|
* QualityTuningLevel: "MULTI_PASS" || "MULTI_PASS_HQ",
|
|
1187
1187
|
* RateControlMode: "VBR",
|
|
1188
1188
|
* },
|
|
1189
|
-
* Vp9Settings: {
|
|
1189
|
+
* Vp9Settings: { // Vp9Settings
|
|
1190
1190
|
* Bitrate: Number("int"),
|
|
1191
1191
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
1192
1192
|
* FramerateConversionAlgorithm: "DUPLICATE_DROP" || "INTERPOLATE" || "FRAMEFORMER",
|
|
@@ -1201,7 +1201,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1201
1201
|
* QualityTuningLevel: "MULTI_PASS" || "MULTI_PASS_HQ",
|
|
1202
1202
|
* RateControlMode: "VBR",
|
|
1203
1203
|
* },
|
|
1204
|
-
* XavcSettings: {
|
|
1204
|
+
* XavcSettings: { // XavcSettings
|
|
1205
1205
|
* AdaptiveQuantization: "OFF" || "AUTO" || "LOW" || "MEDIUM" || "HIGH" || "HIGHER" || "MAX",
|
|
1206
1206
|
* EntropyEncoding: "AUTO" || "CABAC" || "CAVLC",
|
|
1207
1207
|
* FramerateControl: "INITIALIZE_FROM_SOURCE" || "SPECIFIED",
|
|
@@ -1213,13 +1213,13 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1213
1213
|
* Softness: Number("int"),
|
|
1214
1214
|
* SpatialAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1215
1215
|
* TemporalAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1216
|
-
* Xavc4kIntraCbgProfileSettings: {
|
|
1216
|
+
* Xavc4kIntraCbgProfileSettings: { // Xavc4kIntraCbgProfileSettings
|
|
1217
1217
|
* XavcClass: "CLASS_100" || "CLASS_300" || "CLASS_480",
|
|
1218
1218
|
* },
|
|
1219
|
-
* Xavc4kIntraVbrProfileSettings: {
|
|
1219
|
+
* Xavc4kIntraVbrProfileSettings: { // Xavc4kIntraVbrProfileSettings
|
|
1220
1220
|
* XavcClass: "CLASS_100" || "CLASS_300" || "CLASS_480",
|
|
1221
1221
|
* },
|
|
1222
|
-
* Xavc4kProfileSettings: {
|
|
1222
|
+
* Xavc4kProfileSettings: { // Xavc4kProfileSettings
|
|
1223
1223
|
* BitrateClass: "BITRATE_CLASS_100" || "BITRATE_CLASS_140" || "BITRATE_CLASS_200",
|
|
1224
1224
|
* CodecProfile: "HIGH" || "HIGH_422",
|
|
1225
1225
|
* FlickerAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
@@ -1229,10 +1229,10 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1229
1229
|
* QualityTuningLevel: "SINGLE_PASS" || "SINGLE_PASS_HQ" || "MULTI_PASS_HQ",
|
|
1230
1230
|
* Slices: Number("int"),
|
|
1231
1231
|
* },
|
|
1232
|
-
* XavcHdIntraCbgProfileSettings: {
|
|
1232
|
+
* XavcHdIntraCbgProfileSettings: { // XavcHdIntraCbgProfileSettings
|
|
1233
1233
|
* XavcClass: "CLASS_50" || "CLASS_100" || "CLASS_200",
|
|
1234
1234
|
* },
|
|
1235
|
-
* XavcHdProfileSettings: {
|
|
1235
|
+
* XavcHdProfileSettings: { // XavcHdProfileSettings
|
|
1236
1236
|
* BitrateClass: "BITRATE_CLASS_25" || "BITRATE_CLASS_35" || "BITRATE_CLASS_50",
|
|
1237
1237
|
* FlickerAdaptiveQuantization: "DISABLED" || "ENABLED",
|
|
1238
1238
|
* GopBReference: "DISABLED" || "ENABLED",
|
|
@@ -1265,10 +1265,10 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1265
1265
|
* ScalingBehavior: "DEFAULT" || "STRETCH_TO_OUTPUT",
|
|
1266
1266
|
* Sharpness: Number("int"),
|
|
1267
1267
|
* TimecodeInsertion: "DISABLED" || "PIC_TIMING_SEI",
|
|
1268
|
-
* VideoPreprocessors: {
|
|
1269
|
-
* ColorCorrector: {
|
|
1268
|
+
* VideoPreprocessors: { // VideoPreprocessor
|
|
1269
|
+
* ColorCorrector: { // ColorCorrector
|
|
1270
1270
|
* Brightness: Number("int"),
|
|
1271
|
-
* ClipLimits: {
|
|
1271
|
+
* ClipLimits: { // ClipLimits
|
|
1272
1272
|
* MaximumRGBTolerance: Number("int"),
|
|
1273
1273
|
* MaximumYUV: Number("int"),
|
|
1274
1274
|
* MinimumRGBTolerance: Number("int"),
|
|
@@ -1296,13 +1296,13 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1296
1296
|
* Saturation: Number("int"),
|
|
1297
1297
|
* SdrReferenceWhiteLevel: Number("int"),
|
|
1298
1298
|
* },
|
|
1299
|
-
* Deinterlacer: {
|
|
1299
|
+
* Deinterlacer: { // Deinterlacer
|
|
1300
1300
|
* Algorithm: "INTERPOLATE" || "INTERPOLATE_TICKER" || "BLEND" || "BLEND_TICKER",
|
|
1301
1301
|
* Control: "FORCE_ALL_FRAMES" || "NORMAL",
|
|
1302
1302
|
* Mode: "DEINTERLACE" || "INVERSE_TELECINE" || "ADAPTIVE",
|
|
1303
1303
|
* },
|
|
1304
|
-
* DolbyVision: {
|
|
1305
|
-
* L6Metadata: {
|
|
1304
|
+
* DolbyVision: { // DolbyVision
|
|
1305
|
+
* L6Metadata: { // DolbyVisionLevel6Metadata
|
|
1306
1306
|
* MaxCll: Number("int"),
|
|
1307
1307
|
* MaxFall: Number("int"),
|
|
1308
1308
|
* },
|
|
@@ -1310,7 +1310,7 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1310
1310
|
* Mapping: "HDR10_NOMAP" || "HDR10_1000",
|
|
1311
1311
|
* Profile: "PROFILE_5" || "PROFILE_8_1",
|
|
1312
1312
|
* },
|
|
1313
|
-
* Hdr10Plus: {
|
|
1313
|
+
* Hdr10Plus: { // Hdr10Plus
|
|
1314
1314
|
* MasteringMonitorNits: Number("int"),
|
|
1315
1315
|
* TargetMonitorNits: Number("int"),
|
|
1316
1316
|
* },
|
|
@@ -1332,17 +1332,17 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1332
1332
|
* ],
|
|
1333
1333
|
* SdrReferenceWhiteLevel: Number("int"),
|
|
1334
1334
|
* },
|
|
1335
|
-
* NoiseReducer: {
|
|
1335
|
+
* NoiseReducer: { // NoiseReducer
|
|
1336
1336
|
* Filter: "BILATERAL" || "MEAN" || "GAUSSIAN" || "LANCZOS" || "SHARPEN" || "CONSERVE" || "SPATIAL" || "TEMPORAL",
|
|
1337
|
-
* FilterSettings: {
|
|
1337
|
+
* FilterSettings: { // NoiseReducerFilterSettings
|
|
1338
1338
|
* Strength: Number("int"),
|
|
1339
1339
|
* },
|
|
1340
|
-
* SpatialFilterSettings: {
|
|
1340
|
+
* SpatialFilterSettings: { // NoiseReducerSpatialFilterSettings
|
|
1341
1341
|
* PostFilterSharpenStrength: Number("int"),
|
|
1342
1342
|
* Speed: Number("int"),
|
|
1343
1343
|
* Strength: Number("int"),
|
|
1344
1344
|
* },
|
|
1345
|
-
* TemporalFilterSettings: {
|
|
1345
|
+
* TemporalFilterSettings: { // NoiseReducerTemporalFilterSettings
|
|
1346
1346
|
* AggressiveMode: Number("int"),
|
|
1347
1347
|
* PostTemporalSharpening: "DISABLED" || "ENABLED" || "AUTO",
|
|
1348
1348
|
* PostTemporalSharpeningStrength: "LOW" || "MEDIUM" || "HIGH",
|
|
@@ -1350,15 +1350,15 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1350
1350
|
* Strength: Number("int"),
|
|
1351
1351
|
* },
|
|
1352
1352
|
* },
|
|
1353
|
-
* PartnerWatermarking: {
|
|
1354
|
-
* NexguardFileMarkerSettings: {
|
|
1353
|
+
* PartnerWatermarking: { // PartnerWatermarking
|
|
1354
|
+
* NexguardFileMarkerSettings: { // NexGuardFileMarkerSettings
|
|
1355
1355
|
* License: "STRING_VALUE",
|
|
1356
1356
|
* Payload: Number("int"),
|
|
1357
1357
|
* Preset: "STRING_VALUE",
|
|
1358
1358
|
* Strength: "LIGHTEST" || "LIGHTER" || "DEFAULT" || "STRONGER" || "STRONGEST",
|
|
1359
1359
|
* },
|
|
1360
1360
|
* },
|
|
1361
|
-
* TimecodeBurnin: {
|
|
1361
|
+
* TimecodeBurnin: { // TimecodeBurnin
|
|
1362
1362
|
* FontSize: Number("int"),
|
|
1363
1363
|
* Position: "TOP_CENTER" || "TOP_LEFT" || "TOP_RIGHT" || "MIDDLE_LEFT" || "MIDDLE_CENTER" || "MIDDLE_RIGHT" || "BOTTOM_LEFT" || "BOTTOM_CENTER" || "BOTTOM_RIGHT",
|
|
1364
1364
|
* Prefix: "STRING_VALUE",
|
|
@@ -1370,15 +1370,15 @@ export interface UpdateJobTemplateCommandOutput extends UpdateJobTemplateRespons
|
|
|
1370
1370
|
* ],
|
|
1371
1371
|
* },
|
|
1372
1372
|
* ],
|
|
1373
|
-
* TimecodeConfig: {
|
|
1373
|
+
* TimecodeConfig: { // TimecodeConfig
|
|
1374
1374
|
* Anchor: "STRING_VALUE",
|
|
1375
1375
|
* Source: "EMBEDDED" || "ZEROBASED" || "SPECIFIEDSTART",
|
|
1376
1376
|
* Start: "STRING_VALUE",
|
|
1377
1377
|
* TimestampOffset: "STRING_VALUE",
|
|
1378
1378
|
* },
|
|
1379
|
-
* TimedMetadataInsertion: {
|
|
1380
|
-
* Id3Insertions: [
|
|
1381
|
-
* {
|
|
1379
|
+
* TimedMetadataInsertion: { // TimedMetadataInsertion
|
|
1380
|
+
* Id3Insertions: [ // __listOfId3Insertion
|
|
1381
|
+
* { // Id3Insertion
|
|
1382
1382
|
* Id3: "STRING_VALUE",
|
|
1383
1383
|
* Timecode: "STRING_VALUE",
|
|
1384
1384
|
* },
|