aws-sdk-mediaconvert 1.136.0 → 1.138.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +61 -7
- data/lib/aws-sdk-mediaconvert/client_api.rb +70 -2
- data/lib/aws-sdk-mediaconvert/endpoints.rb +40 -116
- data/lib/aws-sdk-mediaconvert/plugins/endpoints.rb +12 -1
- data/lib/aws-sdk-mediaconvert/types.rb +363 -86
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/sig/client.rbs +95 -11
- data/sig/types.rbs +44 -2
- metadata +4 -4
data/sig/client.rbs
CHANGED
@@ -110,6 +110,7 @@ module Aws
|
|
110
110
|
wait_minutes: ::Integer?
|
111
111
|
},
|
112
112
|
],
|
113
|
+
?job_engine_version: ::String,
|
113
114
|
?job_template: ::String,
|
114
115
|
?priority: ::Integer,
|
115
116
|
?queue: ::String,
|
@@ -153,7 +154,7 @@ module Aws
|
|
153
154
|
audio_selector_names: Array[::String]?
|
154
155
|
}]?,
|
155
156
|
audio_selectors: Hash[::String, {
|
156
|
-
audio_duration_correction: ("DISABLED" | "AUTO" | "TRACK" | "FRAME")?,
|
157
|
+
audio_duration_correction: ("DISABLED" | "AUTO" | "TRACK" | "FRAME" | "FORCE")?,
|
157
158
|
custom_language_code: ::String?,
|
158
159
|
default_selection: ("DEFAULT" | "NOT_DEFAULT")?,
|
159
160
|
external_audio_file_input: ::String?,
|
@@ -202,6 +203,7 @@ module Aws
|
|
202
203
|
terminate_captions: ("END_OF_INPUT" | "DISABLED")?
|
203
204
|
}?,
|
204
205
|
file_source_settings: {
|
206
|
+
byte_rate_limit: ("ENABLED" | "DISABLED")?,
|
205
207
|
convert_608_to_708: ("UPCONVERT" | "DISABLED")?,
|
206
208
|
convert_paint_to_pop: ("ENABLED" | "DISABLED")?,
|
207
209
|
framerate: {
|
@@ -290,6 +292,13 @@ module Aws
|
|
290
292
|
video_overlays: Array[
|
291
293
|
{
|
292
294
|
end_timecode: ::String?,
|
295
|
+
initial_position: {
|
296
|
+
height: ::Integer?,
|
297
|
+
unit: ("PIXELS" | "PERCENTAGE")?,
|
298
|
+
width: ::Integer?,
|
299
|
+
x_position: ::Integer?,
|
300
|
+
y_position: ::Integer?
|
301
|
+
}?,
|
293
302
|
input: {
|
294
303
|
file_input: ::String?,
|
295
304
|
input_clippings: Array[
|
@@ -301,7 +310,21 @@ module Aws
|
|
301
310
|
timecode_source: ("EMBEDDED" | "ZEROBASED" | "SPECIFIEDSTART")?,
|
302
311
|
timecode_start: ::String?
|
303
312
|
}?,
|
304
|
-
|
313
|
+
playback: ("ONCE" | "REPEAT")?,
|
314
|
+
start_timecode: ::String?,
|
315
|
+
transitions: Array[
|
316
|
+
{
|
317
|
+
end_position: {
|
318
|
+
height: ::Integer?,
|
319
|
+
unit: ("PIXELS" | "PERCENTAGE")?,
|
320
|
+
width: ::Integer?,
|
321
|
+
x_position: ::Integer?,
|
322
|
+
y_position: ::Integer?
|
323
|
+
}?,
|
324
|
+
end_timecode: ::String?,
|
325
|
+
start_timecode: ::String?
|
326
|
+
},
|
327
|
+
]?
|
305
328
|
},
|
306
329
|
]?,
|
307
330
|
video_selector: {
|
@@ -938,7 +961,7 @@ module Aws
|
|
938
961
|
timed_metadata_scheme_id_uri: ::String?,
|
939
962
|
timed_metadata_value: ::String?
|
940
963
|
}?,
|
941
|
-
container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "WEBM" | "RAW" | "Y4M")?,
|
964
|
+
container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "OGG" | "WEBM" | "RAW" | "Y4M")?,
|
942
965
|
f4v_settings: {
|
943
966
|
moov_placement: ("PROGRESSIVE_DOWNLOAD" | "NORMAL")?
|
944
967
|
}?,
|
@@ -1158,6 +1181,7 @@ module Aws
|
|
1158
1181
|
}?,
|
1159
1182
|
rate_control_mode: ("VBR" | "CBR" | "QVBR")?,
|
1160
1183
|
repeat_pps: ("DISABLED" | "ENABLED")?,
|
1184
|
+
saliency_aware_encoding: ("DISABLED" | "PREFERRED")?,
|
1161
1185
|
scan_type_conversion_mode: ("INTERLACED" | "INTERLACED_OPTIMIZE")?,
|
1162
1186
|
scene_change_detect: ("DISABLED" | "ENABLED" | "TRANSITION_DETECTION")?,
|
1163
1187
|
slices: ::Integer?,
|
@@ -1575,7 +1599,7 @@ module Aws
|
|
1575
1599
|
audio_selector_names: Array[::String]?
|
1576
1600
|
}]?,
|
1577
1601
|
audio_selectors: Hash[::String, {
|
1578
|
-
audio_duration_correction: ("DISABLED" | "AUTO" | "TRACK" | "FRAME")?,
|
1602
|
+
audio_duration_correction: ("DISABLED" | "AUTO" | "TRACK" | "FRAME" | "FORCE")?,
|
1579
1603
|
custom_language_code: ::String?,
|
1580
1604
|
default_selection: ("DEFAULT" | "NOT_DEFAULT")?,
|
1581
1605
|
external_audio_file_input: ::String?,
|
@@ -1624,6 +1648,7 @@ module Aws
|
|
1624
1648
|
terminate_captions: ("END_OF_INPUT" | "DISABLED")?
|
1625
1649
|
}?,
|
1626
1650
|
file_source_settings: {
|
1651
|
+
byte_rate_limit: ("ENABLED" | "DISABLED")?,
|
1627
1652
|
convert_608_to_708: ("UPCONVERT" | "DISABLED")?,
|
1628
1653
|
convert_paint_to_pop: ("ENABLED" | "DISABLED")?,
|
1629
1654
|
framerate: {
|
@@ -1697,6 +1722,13 @@ module Aws
|
|
1697
1722
|
video_overlays: Array[
|
1698
1723
|
{
|
1699
1724
|
end_timecode: ::String?,
|
1725
|
+
initial_position: {
|
1726
|
+
height: ::Integer?,
|
1727
|
+
unit: ("PIXELS" | "PERCENTAGE")?,
|
1728
|
+
width: ::Integer?,
|
1729
|
+
x_position: ::Integer?,
|
1730
|
+
y_position: ::Integer?
|
1731
|
+
}?,
|
1700
1732
|
input: {
|
1701
1733
|
file_input: ::String?,
|
1702
1734
|
input_clippings: Array[
|
@@ -1708,7 +1740,21 @@ module Aws
|
|
1708
1740
|
timecode_source: ("EMBEDDED" | "ZEROBASED" | "SPECIFIEDSTART")?,
|
1709
1741
|
timecode_start: ::String?
|
1710
1742
|
}?,
|
1711
|
-
|
1743
|
+
playback: ("ONCE" | "REPEAT")?,
|
1744
|
+
start_timecode: ::String?,
|
1745
|
+
transitions: Array[
|
1746
|
+
{
|
1747
|
+
end_position: {
|
1748
|
+
height: ::Integer?,
|
1749
|
+
unit: ("PIXELS" | "PERCENTAGE")?,
|
1750
|
+
width: ::Integer?,
|
1751
|
+
x_position: ::Integer?,
|
1752
|
+
y_position: ::Integer?
|
1753
|
+
}?,
|
1754
|
+
end_timecode: ::String?,
|
1755
|
+
start_timecode: ::String?
|
1756
|
+
},
|
1757
|
+
]?
|
1712
1758
|
},
|
1713
1759
|
]?,
|
1714
1760
|
video_selector: {
|
@@ -2345,7 +2391,7 @@ module Aws
|
|
2345
2391
|
timed_metadata_scheme_id_uri: ::String?,
|
2346
2392
|
timed_metadata_value: ::String?
|
2347
2393
|
}?,
|
2348
|
-
container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "WEBM" | "RAW" | "Y4M")?,
|
2394
|
+
container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "OGG" | "WEBM" | "RAW" | "Y4M")?,
|
2349
2395
|
f4v_settings: {
|
2350
2396
|
moov_placement: ("PROGRESSIVE_DOWNLOAD" | "NORMAL")?
|
2351
2397
|
}?,
|
@@ -2565,6 +2611,7 @@ module Aws
|
|
2565
2611
|
}?,
|
2566
2612
|
rate_control_mode: ("VBR" | "CBR" | "QVBR")?,
|
2567
2613
|
repeat_pps: ("DISABLED" | "ENABLED")?,
|
2614
|
+
saliency_aware_encoding: ("DISABLED" | "PREFERRED")?,
|
2568
2615
|
scan_type_conversion_mode: ("INTERLACED" | "INTERLACED_OPTIMIZE")?,
|
2569
2616
|
scene_change_detect: ("DISABLED" | "ENABLED" | "TRANSITION_DETECTION")?,
|
2570
2617
|
slices: ::Integer?,
|
@@ -3186,7 +3233,7 @@ module Aws
|
|
3186
3233
|
timed_metadata_scheme_id_uri: ::String?,
|
3187
3234
|
timed_metadata_value: ::String?
|
3188
3235
|
}?,
|
3189
|
-
container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "WEBM" | "RAW" | "Y4M")?,
|
3236
|
+
container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "OGG" | "WEBM" | "RAW" | "Y4M")?,
|
3190
3237
|
f4v_settings: {
|
3191
3238
|
moov_placement: ("PROGRESSIVE_DOWNLOAD" | "NORMAL")?
|
3192
3239
|
}?,
|
@@ -3392,6 +3439,7 @@ module Aws
|
|
3392
3439
|
}?,
|
3393
3440
|
rate_control_mode: ("VBR" | "CBR" | "QVBR")?,
|
3394
3441
|
repeat_pps: ("DISABLED" | "ENABLED")?,
|
3442
|
+
saliency_aware_encoding: ("DISABLED" | "PREFERRED")?,
|
3395
3443
|
scan_type_conversion_mode: ("INTERLACED" | "INTERLACED_OPTIMIZE")?,
|
3396
3444
|
scene_change_detect: ("DISABLED" | "ENABLED" | "TRANSITION_DETECTION")?,
|
3397
3445
|
slices: ::Integer?,
|
@@ -3922,6 +3970,18 @@ module Aws
|
|
3922
3970
|
) -> _ListTagsForResourceResponseSuccess
|
3923
3971
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
3924
3972
|
|
3973
|
+
interface _ListVersionsResponseSuccess
|
3974
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListVersionsResponse]
|
3975
|
+
def next_token: () -> ::String
|
3976
|
+
def versions: () -> ::Array[Types::JobEngineVersion]
|
3977
|
+
end
|
3978
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConvert/Client.html#list_versions-instance_method
|
3979
|
+
def list_versions: (
|
3980
|
+
?max_results: ::Integer,
|
3981
|
+
?next_token: ::String
|
3982
|
+
) -> _ListVersionsResponseSuccess
|
3983
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVersionsResponseSuccess
|
3984
|
+
|
3925
3985
|
interface _PutPolicyResponseSuccess
|
3926
3986
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutPolicyResponse]
|
3927
3987
|
def policy: () -> Types::Policy
|
@@ -4032,7 +4092,7 @@ module Aws
|
|
4032
4092
|
audio_selector_names: Array[::String]?
|
4033
4093
|
}]?,
|
4034
4094
|
audio_selectors: Hash[::String, {
|
4035
|
-
audio_duration_correction: ("DISABLED" | "AUTO" | "TRACK" | "FRAME")?,
|
4095
|
+
audio_duration_correction: ("DISABLED" | "AUTO" | "TRACK" | "FRAME" | "FORCE")?,
|
4036
4096
|
custom_language_code: ::String?,
|
4037
4097
|
default_selection: ("DEFAULT" | "NOT_DEFAULT")?,
|
4038
4098
|
external_audio_file_input: ::String?,
|
@@ -4081,6 +4141,7 @@ module Aws
|
|
4081
4141
|
terminate_captions: ("END_OF_INPUT" | "DISABLED")?
|
4082
4142
|
}?,
|
4083
4143
|
file_source_settings: {
|
4144
|
+
byte_rate_limit: ("ENABLED" | "DISABLED")?,
|
4084
4145
|
convert_608_to_708: ("UPCONVERT" | "DISABLED")?,
|
4085
4146
|
convert_paint_to_pop: ("ENABLED" | "DISABLED")?,
|
4086
4147
|
framerate: {
|
@@ -4154,6 +4215,13 @@ module Aws
|
|
4154
4215
|
video_overlays: Array[
|
4155
4216
|
{
|
4156
4217
|
end_timecode: ::String?,
|
4218
|
+
initial_position: {
|
4219
|
+
height: ::Integer?,
|
4220
|
+
unit: ("PIXELS" | "PERCENTAGE")?,
|
4221
|
+
width: ::Integer?,
|
4222
|
+
x_position: ::Integer?,
|
4223
|
+
y_position: ::Integer?
|
4224
|
+
}?,
|
4157
4225
|
input: {
|
4158
4226
|
file_input: ::String?,
|
4159
4227
|
input_clippings: Array[
|
@@ -4165,7 +4233,21 @@ module Aws
|
|
4165
4233
|
timecode_source: ("EMBEDDED" | "ZEROBASED" | "SPECIFIEDSTART")?,
|
4166
4234
|
timecode_start: ::String?
|
4167
4235
|
}?,
|
4168
|
-
|
4236
|
+
playback: ("ONCE" | "REPEAT")?,
|
4237
|
+
start_timecode: ::String?,
|
4238
|
+
transitions: Array[
|
4239
|
+
{
|
4240
|
+
end_position: {
|
4241
|
+
height: ::Integer?,
|
4242
|
+
unit: ("PIXELS" | "PERCENTAGE")?,
|
4243
|
+
width: ::Integer?,
|
4244
|
+
x_position: ::Integer?,
|
4245
|
+
y_position: ::Integer?
|
4246
|
+
}?,
|
4247
|
+
end_timecode: ::String?,
|
4248
|
+
start_timecode: ::String?
|
4249
|
+
},
|
4250
|
+
]?
|
4169
4251
|
},
|
4170
4252
|
]?,
|
4171
4253
|
video_selector: {
|
@@ -4802,7 +4884,7 @@ module Aws
|
|
4802
4884
|
timed_metadata_scheme_id_uri: ::String?,
|
4803
4885
|
timed_metadata_value: ::String?
|
4804
4886
|
}?,
|
4805
|
-
container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "WEBM" | "RAW" | "Y4M")?,
|
4887
|
+
container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "OGG" | "WEBM" | "RAW" | "Y4M")?,
|
4806
4888
|
f4v_settings: {
|
4807
4889
|
moov_placement: ("PROGRESSIVE_DOWNLOAD" | "NORMAL")?
|
4808
4890
|
}?,
|
@@ -5022,6 +5104,7 @@ module Aws
|
|
5022
5104
|
}?,
|
5023
5105
|
rate_control_mode: ("VBR" | "CBR" | "QVBR")?,
|
5024
5106
|
repeat_pps: ("DISABLED" | "ENABLED")?,
|
5107
|
+
saliency_aware_encoding: ("DISABLED" | "PREFERRED")?,
|
5025
5108
|
scan_type_conversion_mode: ("INTERLACED" | "INTERLACED_OPTIMIZE")?,
|
5026
5109
|
scene_change_detect: ("DISABLED" | "ENABLED" | "TRANSITION_DETECTION")?,
|
5027
5110
|
slices: ::Integer?,
|
@@ -5642,7 +5725,7 @@ module Aws
|
|
5642
5725
|
timed_metadata_scheme_id_uri: ::String?,
|
5643
5726
|
timed_metadata_value: ::String?
|
5644
5727
|
}?,
|
5645
|
-
container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "WEBM" | "RAW" | "Y4M")?,
|
5728
|
+
container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "OGG" | "WEBM" | "RAW" | "Y4M")?,
|
5646
5729
|
f4v_settings: {
|
5647
5730
|
moov_placement: ("PROGRESSIVE_DOWNLOAD" | "NORMAL")?
|
5648
5731
|
}?,
|
@@ -5848,6 +5931,7 @@ module Aws
|
|
5848
5931
|
}?,
|
5849
5932
|
rate_control_mode: ("VBR" | "CBR" | "QVBR")?,
|
5850
5933
|
repeat_pps: ("DISABLED" | "ENABLED")?,
|
5934
|
+
saliency_aware_encoding: ("DISABLED" | "PREFERRED")?,
|
5851
5935
|
scan_type_conversion_mode: ("INTERLACED" | "INTERLACED_OPTIMIZE")?,
|
5852
5936
|
scene_change_detect: ("DISABLED" | "ENABLED" | "TRANSITION_DETECTION")?,
|
5853
5937
|
slices: ::Integer?,
|
data/sig/types.rbs
CHANGED
@@ -124,7 +124,7 @@ module Aws::MediaConvert
|
|
124
124
|
end
|
125
125
|
|
126
126
|
class AudioSelector
|
127
|
-
attr_accessor audio_duration_correction: ("DISABLED" | "AUTO" | "TRACK" | "FRAME")
|
127
|
+
attr_accessor audio_duration_correction: ("DISABLED" | "AUTO" | "TRACK" | "FRAME" | "FORCE")
|
128
128
|
attr_accessor custom_language_code: ::String
|
129
129
|
attr_accessor default_selection: ("DEFAULT" | "NOT_DEFAULT")
|
130
130
|
attr_accessor external_audio_file_input: ::String
|
@@ -438,7 +438,7 @@ module Aws::MediaConvert
|
|
438
438
|
|
439
439
|
class ContainerSettings
|
440
440
|
attr_accessor cmfc_settings: Types::CmfcSettings
|
441
|
-
attr_accessor container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "WEBM" | "RAW" | "Y4M")
|
441
|
+
attr_accessor container: ("F4V" | "ISMV" | "M2TS" | "M3U8" | "CMFC" | "MOV" | "MP4" | "MPD" | "MXF" | "OGG" | "WEBM" | "RAW" | "Y4M")
|
442
442
|
attr_accessor f4v_settings: Types::F4vSettings
|
443
443
|
attr_accessor m2ts_settings: Types::M2tsSettings
|
444
444
|
attr_accessor m3u_8_settings: Types::M3u8Settings
|
@@ -454,6 +454,7 @@ module Aws::MediaConvert
|
|
454
454
|
attr_accessor billing_tags_source: ("QUEUE" | "PRESET" | "JOB_TEMPLATE" | "JOB")
|
455
455
|
attr_accessor client_request_token: ::String
|
456
456
|
attr_accessor hop_destinations: ::Array[Types::HopDestination]
|
457
|
+
attr_accessor job_engine_version: ::String
|
457
458
|
attr_accessor job_template: ::String
|
458
459
|
attr_accessor priority: ::Integer
|
459
460
|
attr_accessor queue: ::String
|
@@ -809,6 +810,7 @@ module Aws::MediaConvert
|
|
809
810
|
end
|
810
811
|
|
811
812
|
class FileSourceSettings
|
813
|
+
attr_accessor byte_rate_limit: ("ENABLED" | "DISABLED")
|
812
814
|
attr_accessor convert_608_to_708: ("UPCONVERT" | "DISABLED")
|
813
815
|
attr_accessor convert_paint_to_pop: ("ENABLED" | "DISABLED")
|
814
816
|
attr_accessor framerate: Types::CaptionSourceFramerate
|
@@ -933,6 +935,7 @@ module Aws::MediaConvert
|
|
933
935
|
attr_accessor qvbr_settings: Types::H264QvbrSettings
|
934
936
|
attr_accessor rate_control_mode: ("VBR" | "CBR" | "QVBR")
|
935
937
|
attr_accessor repeat_pps: ("DISABLED" | "ENABLED")
|
938
|
+
attr_accessor saliency_aware_encoding: ("DISABLED" | "PREFERRED")
|
936
939
|
attr_accessor scan_type_conversion_mode: ("INTERLACED" | "INTERLACED_OPTIMIZE")
|
937
940
|
attr_accessor scene_change_detect: ("DISABLED" | "ENABLED" | "TRANSITION_DETECTION")
|
938
941
|
attr_accessor slices: ::Integer
|
@@ -1245,6 +1248,8 @@ module Aws::MediaConvert
|
|
1245
1248
|
attr_accessor error_message: ::String
|
1246
1249
|
attr_accessor hop_destinations: ::Array[Types::HopDestination]
|
1247
1250
|
attr_accessor id: ::String
|
1251
|
+
attr_accessor job_engine_version_requested: ::String
|
1252
|
+
attr_accessor job_engine_version_used: ::String
|
1248
1253
|
attr_accessor job_percent_complete: ::Integer
|
1249
1254
|
attr_accessor job_template: ::String
|
1250
1255
|
attr_accessor messages: Types::JobMessages
|
@@ -1264,6 +1269,12 @@ module Aws::MediaConvert
|
|
1264
1269
|
SENSITIVE: []
|
1265
1270
|
end
|
1266
1271
|
|
1272
|
+
class JobEngineVersion
|
1273
|
+
attr_accessor expiration_date: ::Time
|
1274
|
+
attr_accessor version: ::String
|
1275
|
+
SENSITIVE: []
|
1276
|
+
end
|
1277
|
+
|
1267
1278
|
class JobMessages
|
1268
1279
|
attr_accessor info: ::Array[::String]
|
1269
1280
|
attr_accessor warning: ::Array[::String]
|
@@ -1409,6 +1420,18 @@ module Aws::MediaConvert
|
|
1409
1420
|
SENSITIVE: []
|
1410
1421
|
end
|
1411
1422
|
|
1423
|
+
class ListVersionsRequest
|
1424
|
+
attr_accessor max_results: ::Integer
|
1425
|
+
attr_accessor next_token: ::String
|
1426
|
+
SENSITIVE: []
|
1427
|
+
end
|
1428
|
+
|
1429
|
+
class ListVersionsResponse
|
1430
|
+
attr_accessor next_token: ::String
|
1431
|
+
attr_accessor versions: ::Array[Types::JobEngineVersion]
|
1432
|
+
SENSITIVE: []
|
1433
|
+
end
|
1434
|
+
|
1412
1435
|
class M2tsScte35Esam
|
1413
1436
|
attr_accessor scte_35_esam_pid: ::Integer
|
1414
1437
|
SENSITIVE: []
|
@@ -2141,8 +2164,11 @@ module Aws::MediaConvert
|
|
2141
2164
|
|
2142
2165
|
class VideoOverlay
|
2143
2166
|
attr_accessor end_timecode: ::String
|
2167
|
+
attr_accessor initial_position: Types::VideoOverlayPosition
|
2144
2168
|
attr_accessor input: Types::VideoOverlayInput
|
2169
|
+
attr_accessor playback: ("ONCE" | "REPEAT")
|
2145
2170
|
attr_accessor start_timecode: ::String
|
2171
|
+
attr_accessor transitions: ::Array[Types::VideoOverlayTransition]
|
2146
2172
|
SENSITIVE: []
|
2147
2173
|
end
|
2148
2174
|
|
@@ -2160,6 +2186,22 @@ module Aws::MediaConvert
|
|
2160
2186
|
SENSITIVE: []
|
2161
2187
|
end
|
2162
2188
|
|
2189
|
+
class VideoOverlayPosition
|
2190
|
+
attr_accessor height: ::Integer
|
2191
|
+
attr_accessor unit: ("PIXELS" | "PERCENTAGE")
|
2192
|
+
attr_accessor width: ::Integer
|
2193
|
+
attr_accessor x_position: ::Integer
|
2194
|
+
attr_accessor y_position: ::Integer
|
2195
|
+
SENSITIVE: []
|
2196
|
+
end
|
2197
|
+
|
2198
|
+
class VideoOverlayTransition
|
2199
|
+
attr_accessor end_position: Types::VideoOverlayPosition
|
2200
|
+
attr_accessor end_timecode: ::String
|
2201
|
+
attr_accessor start_timecode: ::String
|
2202
|
+
SENSITIVE: []
|
2203
|
+
end
|
2204
|
+
|
2163
2205
|
class VideoPreprocessor
|
2164
2206
|
attr_accessor color_corrector: Types::ColorCorrector
|
2165
2207
|
attr_accessor deinterlacer: Types::Deinterlacer
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediaconvert
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.138.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.205.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.205.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|