aws-sdk-mediaconvert 1.44.0 → 1.49.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 +5 -5
- data/lib/aws-sdk-mediaconvert.rb +1 -1
- data/lib/aws-sdk-mediaconvert/client.rb +186 -47
- data/lib/aws-sdk-mediaconvert/client_api.rb +37 -0
- data/lib/aws-sdk-mediaconvert/resource.rb +1 -7
- data/lib/aws-sdk-mediaconvert/types.rb +331 -50
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f108d85067a1b9f0475abd6f4f3edf6405f79d56b1d19b6509cf5d976d889fd8
|
4
|
+
data.tar.gz: 61ef6f164f3649e9abfaff1715206dedfe01e0dfb3e6b2a3b89e9e4cd2f42178
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cb1939b22ab3401211cd1d4b2154cf7f1ca6989a7133dd86ab003bb187804f30247122bb0e30d2527a487b7437951d6362c8619f75d7669000135b3cedd3dfd
|
7
|
+
data.tar.gz: '094665f7f46b2c34c1cd15acae13e35c4cb74e53604325cd9257cf84ac8cdeee36d272534f249cf7749548ffe96007a4722e589efcba3e33241b394903278911'
|
data/lib/aws-sdk-mediaconvert.rb
CHANGED
@@ -105,7 +105,7 @@ module Aws::MediaConvert
|
|
105
105
|
# @option options [required, String] :region
|
106
106
|
# The AWS region to connect to. The configured `:region` is
|
107
107
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
108
|
+
# a default `:region` is searched for in the following locations:
|
109
109
|
#
|
110
110
|
# * `Aws.config[:region]`
|
111
111
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +161,7 @@ module Aws::MediaConvert
|
|
161
161
|
# @option options [String] :endpoint
|
162
162
|
# The client endpoint is normally constructed from the `:region`
|
163
163
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
164
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
165
165
|
#
|
166
166
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
167
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +176,7 @@ module Aws::MediaConvert
|
|
176
176
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
177
|
#
|
178
178
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
179
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
180
|
#
|
181
181
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
182
|
# The log formatter.
|
@@ -269,8 +269,7 @@ module Aws::MediaConvert
|
|
269
269
|
#
|
270
270
|
# @option options [Integer] :http_read_timeout (60) The default
|
271
271
|
# number of seconds to wait for response data. This value can
|
272
|
-
# safely be set
|
273
|
-
# per-request on the session yielded by {#session_for}.
|
272
|
+
# safely be set per-request on the session.
|
274
273
|
#
|
275
274
|
# @option options [Float] :http_idle_timeout (5) The number of
|
276
275
|
# seconds a connection is allowed to sit idle before it is
|
@@ -282,7 +281,7 @@ module Aws::MediaConvert
|
|
282
281
|
# request body. This option has no effect unless the request has
|
283
282
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
284
283
|
# disables this behaviour. This value can safely be set per
|
285
|
-
# request on the session
|
284
|
+
# request on the session.
|
286
285
|
#
|
287
286
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
288
287
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -361,10 +360,10 @@ module Aws::MediaConvert
|
|
361
360
|
# http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
362
361
|
#
|
363
362
|
# @option params [Types::AccelerationSettings] :acceleration_settings
|
364
|
-
# Accelerated transcoding can significantly speed up jobs with
|
365
|
-
# visually complex content. Outputs that use this feature incur
|
366
|
-
# pricing. For information about feature limitations, see the
|
367
|
-
# Elemental MediaConvert User Guide.
|
363
|
+
# Optional. Accelerated transcoding can significantly speed up jobs with
|
364
|
+
# long, visually complex content. Outputs that use this feature incur
|
365
|
+
# pro-tier pricing. For information about feature limitations, see the
|
366
|
+
# AWS Elemental MediaConvert User Guide.
|
368
367
|
#
|
369
368
|
# @option params [String] :billing_tags_source
|
370
369
|
# Optional. Choose a tag type that AWS Billing and Cost Management will
|
@@ -375,19 +374,26 @@ module Aws::MediaConvert
|
|
375
374
|
# appear on the billing report unsorted.
|
376
375
|
#
|
377
376
|
# @option params [String] :client_request_token
|
378
|
-
# Idempotency token for CreateJob operation.**A suitable default value is auto-generated.** You should normally
|
377
|
+
# Optional. Idempotency token for CreateJob operation.**A suitable default value is auto-generated.** You should normally
|
379
378
|
# not need to pass this option.**
|
380
379
|
#
|
380
|
+
# @option params [Array<Types::HopDestination>] :hop_destinations
|
381
|
+
# Optional. Use queue hopping to avoid overly long waits in the backlog
|
382
|
+
# of the queue that you submit your job to. Specify an alternate queue
|
383
|
+
# and the maximum time that your job will wait in the initial queue
|
384
|
+
# before hopping. For more information about this feature, see the AWS
|
385
|
+
# Elemental MediaConvert User Guide.
|
386
|
+
#
|
381
387
|
# @option params [String] :job_template
|
382
|
-
# When you create a job, you can either specify a job template
|
383
|
-
# specify the transcoding settings individually
|
388
|
+
# Optional. When you create a job, you can either specify a job template
|
389
|
+
# or specify the transcoding settings individually.
|
384
390
|
#
|
385
391
|
# @option params [Integer] :priority
|
386
|
-
# Specify the relative priority for this job. In any given
|
387
|
-
# service begins processing the job with the highest value
|
388
|
-
# more than one job has the same priority, the service
|
389
|
-
# the job that you submitted first. If you don't
|
390
|
-
# the service uses the default value 0.
|
392
|
+
# Optional. Specify the relative priority for this job. In any given
|
393
|
+
# queue, the service begins processing the job with the highest value
|
394
|
+
# first. When more than one job has the same priority, the service
|
395
|
+
# begins processing the job that you submitted first. If you don't
|
396
|
+
# specify a priority, the service uses the default value 0.
|
391
397
|
#
|
392
398
|
# @option params [String] :queue
|
393
399
|
# Optional. When you create a job, you can specify a queue to send it
|
@@ -404,26 +410,26 @@ module Aws::MediaConvert
|
|
404
410
|
# JobSettings contains all the transcode settings for a job.
|
405
411
|
#
|
406
412
|
# @option params [String] :simulate_reserved_queue
|
407
|
-
# Enable this setting when you run a test job to estimate how
|
408
|
-
# reserved transcoding slots (RTS) you need. When this is enabled,
|
413
|
+
# Optional. Enable this setting when you run a test job to estimate how
|
414
|
+
# many reserved transcoding slots (RTS) you need. When this is enabled,
|
409
415
|
# MediaConvert runs your job from an on-demand queue with similar
|
410
416
|
# performance to what you will see with one RTS in a reserved queue.
|
411
417
|
# This setting is disabled by default.
|
412
418
|
#
|
413
419
|
# @option params [String] :status_update_interval
|
414
|
-
# Specify how often MediaConvert sends STATUS\_UPDATE events
|
415
|
-
# CloudWatch Events. Set the interval, in seconds, between
|
416
|
-
# updates. MediaConvert sends an update at this interval from the
|
417
|
-
# the service begins processing your job to the time it completes
|
418
|
-
# transcode or encounters an error.
|
420
|
+
# Optional. Specify how often MediaConvert sends STATUS\_UPDATE events
|
421
|
+
# to Amazon CloudWatch Events. Set the interval, in seconds, between
|
422
|
+
# status updates. MediaConvert sends an update at this interval from the
|
423
|
+
# time the service begins processing your job to the time it completes
|
424
|
+
# the transcode or encounters an error.
|
419
425
|
#
|
420
426
|
# @option params [Hash<String,String>] :tags
|
421
|
-
# The tags that you want to add to the resource. You can tag
|
422
|
-
# with a key-value pair or with only a key.
|
427
|
+
# Optional. The tags that you want to add to the resource. You can tag
|
428
|
+
# resources with a key-value pair or with only a key.
|
423
429
|
#
|
424
430
|
# @option params [Hash<String,String>] :user_metadata
|
425
|
-
# User-defined metadata that you want to associate with an
|
426
|
-
# job. You specify metadata in key/value pairs.
|
431
|
+
# Optional. User-defined metadata that you want to associate with an
|
432
|
+
# MediaConvert job. You specify metadata in key/value pairs.
|
427
433
|
#
|
428
434
|
# @return [Types::CreateJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
429
435
|
#
|
@@ -437,6 +443,13 @@ module Aws::MediaConvert
|
|
437
443
|
# },
|
438
444
|
# billing_tags_source: "QUEUE", # accepts QUEUE, PRESET, JOB_TEMPLATE, JOB
|
439
445
|
# client_request_token: "__string",
|
446
|
+
# hop_destinations: [
|
447
|
+
# {
|
448
|
+
# priority: 1,
|
449
|
+
# queue: "__string",
|
450
|
+
# wait_minutes: 1,
|
451
|
+
# },
|
452
|
+
# ],
|
440
453
|
# job_template: "__string",
|
441
454
|
# priority: 1,
|
442
455
|
# queue: "__string",
|
@@ -507,6 +520,10 @@ module Aws::MediaConvert
|
|
507
520
|
# },
|
508
521
|
# file_source_settings: {
|
509
522
|
# convert_608_to_708: "UPCONVERT", # accepts UPCONVERT, DISABLED
|
523
|
+
# framerate: {
|
524
|
+
# framerate_denominator: 1,
|
525
|
+
# framerate_numerator: 1,
|
526
|
+
# },
|
510
527
|
# source_file: "__stringMin14PatternS3SccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTXmlXMLSmiSMIHttpsSccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTXmlXMLSmiSMI",
|
511
528
|
# time_delta: 1,
|
512
529
|
# },
|
@@ -1106,6 +1123,9 @@ module Aws::MediaConvert
|
|
1106
1123
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
1107
1124
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
1108
1125
|
# },
|
1126
|
+
# mxf_settings: {
|
1127
|
+
# afd_signaling: "NO_COPY", # accepts NO_COPY, COPY_FROM_VIDEO
|
1128
|
+
# },
|
1109
1129
|
# },
|
1110
1130
|
# extension: "__string",
|
1111
1131
|
# name_modifier: "__stringMin1",
|
@@ -1420,6 +1440,10 @@ module Aws::MediaConvert
|
|
1420
1440
|
# resp.job.current_phase #=> String, one of "PROBING", "TRANSCODING", "UPLOADING"
|
1421
1441
|
# resp.job.error_code #=> Integer
|
1422
1442
|
# resp.job.error_message #=> String
|
1443
|
+
# resp.job.hop_destinations #=> Array
|
1444
|
+
# resp.job.hop_destinations[0].priority #=> Integer
|
1445
|
+
# resp.job.hop_destinations[0].queue #=> String
|
1446
|
+
# resp.job.hop_destinations[0].wait_minutes #=> Integer
|
1423
1447
|
# resp.job.id #=> String
|
1424
1448
|
# resp.job.job_percent_complete #=> Integer
|
1425
1449
|
# resp.job.job_template #=> String
|
@@ -1434,6 +1458,10 @@ module Aws::MediaConvert
|
|
1434
1458
|
# resp.job.output_group_details[0].output_details[0].video_details.width_in_px #=> Integer
|
1435
1459
|
# resp.job.priority #=> Integer
|
1436
1460
|
# resp.job.queue #=> String
|
1461
|
+
# resp.job.queue_transitions #=> Array
|
1462
|
+
# resp.job.queue_transitions[0].destination_queue #=> String
|
1463
|
+
# resp.job.queue_transitions[0].source_queue #=> String
|
1464
|
+
# resp.job.queue_transitions[0].timestamp #=> Time
|
1437
1465
|
# resp.job.retry_count #=> Integer
|
1438
1466
|
# resp.job.role #=> String
|
1439
1467
|
# resp.job.settings.ad_avail_offset #=> Integer
|
@@ -1474,6 +1502,8 @@ module Aws::MediaConvert
|
|
1474
1502
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.source_608_track_number #=> Integer
|
1475
1503
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.terminate_captions #=> String, one of "END_OF_INPUT", "DISABLED"
|
1476
1504
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.convert_608_to_708 #=> String, one of "UPCONVERT", "DISABLED"
|
1505
|
+
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_denominator #=> Integer
|
1506
|
+
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_numerator #=> Integer
|
1477
1507
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.source_file #=> String
|
1478
1508
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.time_delta #=> Integer
|
1479
1509
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.source_type #=> String, one of "ANCILLARY", "DVB_SUB", "EMBEDDED", "SCTE20", "SCC", "TTML", "STL", "SRT", "SMI", "TELETEXT", "NULL_SOURCE", "IMSC"
|
@@ -1892,6 +1922,7 @@ module Aws::MediaConvert
|
|
1892
1922
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
|
1893
1923
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
1894
1924
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
1925
|
+
# resp.job.settings.output_groups[0].outputs[0].container_settings.mxf_settings.afd_signaling #=> String, one of "NO_COPY", "COPY_FROM_VIDEO"
|
1895
1926
|
# resp.job.settings.output_groups[0].outputs[0].extension #=> String
|
1896
1927
|
# resp.job.settings.output_groups[0].outputs[0].name_modifier #=> String
|
1897
1928
|
# resp.job.settings.output_groups[0].outputs[0].output_settings.hls_settings.audio_group_id #=> String
|
@@ -2150,6 +2181,13 @@ module Aws::MediaConvert
|
|
2150
2181
|
# @option params [String] :description
|
2151
2182
|
# Optional. A description of the job template you are creating.
|
2152
2183
|
#
|
2184
|
+
# @option params [Array<Types::HopDestination>] :hop_destinations
|
2185
|
+
# Optional. Use queue hopping to avoid overly long waits in the backlog
|
2186
|
+
# of the queue that you submit your job to. Specify an alternate queue
|
2187
|
+
# and the maximum time that your job will wait in the initial queue
|
2188
|
+
# before hopping. For more information about this feature, see the AWS
|
2189
|
+
# Elemental MediaConvert User Guide.
|
2190
|
+
#
|
2153
2191
|
# @option params [required, String] :name
|
2154
2192
|
# The name of the job template you are creating.
|
2155
2193
|
#
|
@@ -2191,6 +2229,13 @@ module Aws::MediaConvert
|
|
2191
2229
|
# },
|
2192
2230
|
# category: "__string",
|
2193
2231
|
# description: "__string",
|
2232
|
+
# hop_destinations: [
|
2233
|
+
# {
|
2234
|
+
# priority: 1,
|
2235
|
+
# queue: "__string",
|
2236
|
+
# wait_minutes: 1,
|
2237
|
+
# },
|
2238
|
+
# ],
|
2194
2239
|
# name: "__string", # required
|
2195
2240
|
# priority: 1,
|
2196
2241
|
# queue: "__string",
|
@@ -2260,6 +2305,10 @@ module Aws::MediaConvert
|
|
2260
2305
|
# },
|
2261
2306
|
# file_source_settings: {
|
2262
2307
|
# convert_608_to_708: "UPCONVERT", # accepts UPCONVERT, DISABLED
|
2308
|
+
# framerate: {
|
2309
|
+
# framerate_denominator: 1,
|
2310
|
+
# framerate_numerator: 1,
|
2311
|
+
# },
|
2263
2312
|
# source_file: "__stringMin14PatternS3SccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTXmlXMLSmiSMIHttpsSccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTXmlXMLSmiSMI",
|
2264
2313
|
# time_delta: 1,
|
2265
2314
|
# },
|
@@ -2851,6 +2900,9 @@ module Aws::MediaConvert
|
|
2851
2900
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
2852
2901
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
2853
2902
|
# },
|
2903
|
+
# mxf_settings: {
|
2904
|
+
# afd_signaling: "NO_COPY", # accepts NO_COPY, COPY_FROM_VIDEO
|
2905
|
+
# },
|
2854
2906
|
# },
|
2855
2907
|
# extension: "__string",
|
2856
2908
|
# name_modifier: "__stringMin1",
|
@@ -3158,6 +3210,10 @@ module Aws::MediaConvert
|
|
3158
3210
|
# resp.job_template.category #=> String
|
3159
3211
|
# resp.job_template.created_at #=> Time
|
3160
3212
|
# resp.job_template.description #=> String
|
3213
|
+
# resp.job_template.hop_destinations #=> Array
|
3214
|
+
# resp.job_template.hop_destinations[0].priority #=> Integer
|
3215
|
+
# resp.job_template.hop_destinations[0].queue #=> String
|
3216
|
+
# resp.job_template.hop_destinations[0].wait_minutes #=> Integer
|
3161
3217
|
# resp.job_template.last_updated #=> Time
|
3162
3218
|
# resp.job_template.name #=> String
|
3163
3219
|
# resp.job_template.priority #=> Integer
|
@@ -3200,6 +3256,8 @@ module Aws::MediaConvert
|
|
3200
3256
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.source_608_track_number #=> Integer
|
3201
3257
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.terminate_captions #=> String, one of "END_OF_INPUT", "DISABLED"
|
3202
3258
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.convert_608_to_708 #=> String, one of "UPCONVERT", "DISABLED"
|
3259
|
+
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_denominator #=> Integer
|
3260
|
+
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_numerator #=> Integer
|
3203
3261
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.source_file #=> String
|
3204
3262
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.time_delta #=> Integer
|
3205
3263
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.source_type #=> String, one of "ANCILLARY", "DVB_SUB", "EMBEDDED", "SCTE20", "SCC", "TTML", "STL", "SRT", "SMI", "TELETEXT", "NULL_SOURCE", "IMSC"
|
@@ -3611,6 +3669,7 @@ module Aws::MediaConvert
|
|
3611
3669
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
|
3612
3670
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
3613
3671
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
3672
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mxf_settings.afd_signaling #=> String, one of "NO_COPY", "COPY_FROM_VIDEO"
|
3614
3673
|
# resp.job_template.settings.output_groups[0].outputs[0].extension #=> String
|
3615
3674
|
# resp.job_template.settings.output_groups[0].outputs[0].name_modifier #=> String
|
3616
3675
|
# resp.job_template.settings.output_groups[0].outputs[0].output_settings.hls_settings.audio_group_id #=> String
|
@@ -4158,6 +4217,9 @@ module Aws::MediaConvert
|
|
4158
4217
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
4159
4218
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
4160
4219
|
# },
|
4220
|
+
# mxf_settings: {
|
4221
|
+
# afd_signaling: "NO_COPY", # accepts NO_COPY, COPY_FROM_VIDEO
|
4222
|
+
# },
|
4161
4223
|
# },
|
4162
4224
|
# video_description: {
|
4163
4225
|
# afd_signaling: "NONE", # accepts NONE, AUTO, FIXED
|
@@ -4647,6 +4709,7 @@ module Aws::MediaConvert
|
|
4647
4709
|
# resp.preset.settings.container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
|
4648
4710
|
# resp.preset.settings.container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
4649
4711
|
# resp.preset.settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
4712
|
+
# resp.preset.settings.container_settings.mxf_settings.afd_signaling #=> String, one of "NO_COPY", "COPY_FROM_VIDEO"
|
4650
4713
|
# resp.preset.settings.video_description.afd_signaling #=> String, one of "NONE", "AUTO", "FIXED"
|
4651
4714
|
# resp.preset.settings.video_description.anti_alias #=> String, one of "DISABLED", "ENABLED"
|
4652
4715
|
# resp.preset.settings.video_description.codec_settings.av_1_settings.adaptive_quantization #=> String, one of "OFF", "LOW", "MEDIUM", "HIGH", "HIGHER", "MAX"
|
@@ -5034,6 +5097,8 @@ module Aws::MediaConvert
|
|
5034
5097
|
# * {Types::DescribeEndpointsResponse#endpoints #endpoints} => Array<Types::Endpoint>
|
5035
5098
|
# * {Types::DescribeEndpointsResponse#next_token #next_token} => String
|
5036
5099
|
#
|
5100
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5101
|
+
#
|
5037
5102
|
# @example Request syntax with placeholder values
|
5038
5103
|
#
|
5039
5104
|
# resp = client.describe_endpoints({
|
@@ -5107,6 +5172,10 @@ module Aws::MediaConvert
|
|
5107
5172
|
# resp.job.current_phase #=> String, one of "PROBING", "TRANSCODING", "UPLOADING"
|
5108
5173
|
# resp.job.error_code #=> Integer
|
5109
5174
|
# resp.job.error_message #=> String
|
5175
|
+
# resp.job.hop_destinations #=> Array
|
5176
|
+
# resp.job.hop_destinations[0].priority #=> Integer
|
5177
|
+
# resp.job.hop_destinations[0].queue #=> String
|
5178
|
+
# resp.job.hop_destinations[0].wait_minutes #=> Integer
|
5110
5179
|
# resp.job.id #=> String
|
5111
5180
|
# resp.job.job_percent_complete #=> Integer
|
5112
5181
|
# resp.job.job_template #=> String
|
@@ -5121,6 +5190,10 @@ module Aws::MediaConvert
|
|
5121
5190
|
# resp.job.output_group_details[0].output_details[0].video_details.width_in_px #=> Integer
|
5122
5191
|
# resp.job.priority #=> Integer
|
5123
5192
|
# resp.job.queue #=> String
|
5193
|
+
# resp.job.queue_transitions #=> Array
|
5194
|
+
# resp.job.queue_transitions[0].destination_queue #=> String
|
5195
|
+
# resp.job.queue_transitions[0].source_queue #=> String
|
5196
|
+
# resp.job.queue_transitions[0].timestamp #=> Time
|
5124
5197
|
# resp.job.retry_count #=> Integer
|
5125
5198
|
# resp.job.role #=> String
|
5126
5199
|
# resp.job.settings.ad_avail_offset #=> Integer
|
@@ -5161,6 +5234,8 @@ module Aws::MediaConvert
|
|
5161
5234
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.source_608_track_number #=> Integer
|
5162
5235
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.terminate_captions #=> String, one of "END_OF_INPUT", "DISABLED"
|
5163
5236
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.convert_608_to_708 #=> String, one of "UPCONVERT", "DISABLED"
|
5237
|
+
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_denominator #=> Integer
|
5238
|
+
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_numerator #=> Integer
|
5164
5239
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.source_file #=> String
|
5165
5240
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.time_delta #=> Integer
|
5166
5241
|
# resp.job.settings.inputs[0].caption_selectors["__string"].source_settings.source_type #=> String, one of "ANCILLARY", "DVB_SUB", "EMBEDDED", "SCTE20", "SCC", "TTML", "STL", "SRT", "SMI", "TELETEXT", "NULL_SOURCE", "IMSC"
|
@@ -5579,6 +5654,7 @@ module Aws::MediaConvert
|
|
5579
5654
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
|
5580
5655
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
5581
5656
|
# resp.job.settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
5657
|
+
# resp.job.settings.output_groups[0].outputs[0].container_settings.mxf_settings.afd_signaling #=> String, one of "NO_COPY", "COPY_FROM_VIDEO"
|
5582
5658
|
# resp.job.settings.output_groups[0].outputs[0].extension #=> String
|
5583
5659
|
# resp.job.settings.output_groups[0].outputs[0].name_modifier #=> String
|
5584
5660
|
# resp.job.settings.output_groups[0].outputs[0].output_settings.hls_settings.audio_group_id #=> String
|
@@ -5843,6 +5919,10 @@ module Aws::MediaConvert
|
|
5843
5919
|
# resp.job_template.category #=> String
|
5844
5920
|
# resp.job_template.created_at #=> Time
|
5845
5921
|
# resp.job_template.description #=> String
|
5922
|
+
# resp.job_template.hop_destinations #=> Array
|
5923
|
+
# resp.job_template.hop_destinations[0].priority #=> Integer
|
5924
|
+
# resp.job_template.hop_destinations[0].queue #=> String
|
5925
|
+
# resp.job_template.hop_destinations[0].wait_minutes #=> Integer
|
5846
5926
|
# resp.job_template.last_updated #=> Time
|
5847
5927
|
# resp.job_template.name #=> String
|
5848
5928
|
# resp.job_template.priority #=> Integer
|
@@ -5885,6 +5965,8 @@ module Aws::MediaConvert
|
|
5885
5965
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.source_608_track_number #=> Integer
|
5886
5966
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.terminate_captions #=> String, one of "END_OF_INPUT", "DISABLED"
|
5887
5967
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.convert_608_to_708 #=> String, one of "UPCONVERT", "DISABLED"
|
5968
|
+
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_denominator #=> Integer
|
5969
|
+
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_numerator #=> Integer
|
5888
5970
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.source_file #=> String
|
5889
5971
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.time_delta #=> Integer
|
5890
5972
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.source_type #=> String, one of "ANCILLARY", "DVB_SUB", "EMBEDDED", "SCTE20", "SCC", "TTML", "STL", "SRT", "SMI", "TELETEXT", "NULL_SOURCE", "IMSC"
|
@@ -6296,6 +6378,7 @@ module Aws::MediaConvert
|
|
6296
6378
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
|
6297
6379
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
6298
6380
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
6381
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mxf_settings.afd_signaling #=> String, one of "NO_COPY", "COPY_FROM_VIDEO"
|
6299
6382
|
# resp.job_template.settings.output_groups[0].outputs[0].extension #=> String
|
6300
6383
|
# resp.job_template.settings.output_groups[0].outputs[0].name_modifier #=> String
|
6301
6384
|
# resp.job_template.settings.output_groups[0].outputs[0].output_settings.hls_settings.audio_group_id #=> String
|
@@ -6768,6 +6851,7 @@ module Aws::MediaConvert
|
|
6768
6851
|
# resp.preset.settings.container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
|
6769
6852
|
# resp.preset.settings.container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
6770
6853
|
# resp.preset.settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
6854
|
+
# resp.preset.settings.container_settings.mxf_settings.afd_signaling #=> String, one of "NO_COPY", "COPY_FROM_VIDEO"
|
6771
6855
|
# resp.preset.settings.video_description.afd_signaling #=> String, one of "NONE", "AUTO", "FIXED"
|
6772
6856
|
# resp.preset.settings.video_description.anti_alias #=> String, one of "DISABLED", "ENABLED"
|
6773
6857
|
# resp.preset.settings.video_description.codec_settings.av_1_settings.adaptive_quantization #=> String, one of "OFF", "LOW", "MEDIUM", "HIGH", "HIGHER", "MAX"
|
@@ -7053,15 +7137,17 @@ module Aws::MediaConvert
|
|
7053
7137
|
# request the next batch of job templates.
|
7054
7138
|
#
|
7055
7139
|
# @option params [String] :order
|
7056
|
-
# When you request lists of resources, you can
|
7057
|
-
#
|
7058
|
-
#
|
7140
|
+
# Optional. When you request lists of resources, you can specify whether
|
7141
|
+
# they are sorted in ASCENDING or DESCENDING order. Default varies by
|
7142
|
+
# resource.
|
7059
7143
|
#
|
7060
7144
|
# @return [Types::ListJobTemplatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7061
7145
|
#
|
7062
7146
|
# * {Types::ListJobTemplatesResponse#job_templates #job_templates} => Array<Types::JobTemplate>
|
7063
7147
|
# * {Types::ListJobTemplatesResponse#next_token #next_token} => String
|
7064
7148
|
#
|
7149
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7150
|
+
#
|
7065
7151
|
# @example Request syntax with placeholder values
|
7066
7152
|
#
|
7067
7153
|
# resp = client.list_job_templates({
|
@@ -7080,6 +7166,10 @@ module Aws::MediaConvert
|
|
7080
7166
|
# resp.job_templates[0].category #=> String
|
7081
7167
|
# resp.job_templates[0].created_at #=> Time
|
7082
7168
|
# resp.job_templates[0].description #=> String
|
7169
|
+
# resp.job_templates[0].hop_destinations #=> Array
|
7170
|
+
# resp.job_templates[0].hop_destinations[0].priority #=> Integer
|
7171
|
+
# resp.job_templates[0].hop_destinations[0].queue #=> String
|
7172
|
+
# resp.job_templates[0].hop_destinations[0].wait_minutes #=> Integer
|
7083
7173
|
# resp.job_templates[0].last_updated #=> Time
|
7084
7174
|
# resp.job_templates[0].name #=> String
|
7085
7175
|
# resp.job_templates[0].priority #=> Integer
|
@@ -7122,6 +7212,8 @@ module Aws::MediaConvert
|
|
7122
7212
|
# resp.job_templates[0].settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.source_608_track_number #=> Integer
|
7123
7213
|
# resp.job_templates[0].settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.terminate_captions #=> String, one of "END_OF_INPUT", "DISABLED"
|
7124
7214
|
# resp.job_templates[0].settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.convert_608_to_708 #=> String, one of "UPCONVERT", "DISABLED"
|
7215
|
+
# resp.job_templates[0].settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_denominator #=> Integer
|
7216
|
+
# resp.job_templates[0].settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_numerator #=> Integer
|
7125
7217
|
# resp.job_templates[0].settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.source_file #=> String
|
7126
7218
|
# resp.job_templates[0].settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.time_delta #=> Integer
|
7127
7219
|
# resp.job_templates[0].settings.inputs[0].caption_selectors["__string"].source_settings.source_type #=> String, one of "ANCILLARY", "DVB_SUB", "EMBEDDED", "SCTE20", "SCC", "TTML", "STL", "SRT", "SMI", "TELETEXT", "NULL_SOURCE", "IMSC"
|
@@ -7533,6 +7625,7 @@ module Aws::MediaConvert
|
|
7533
7625
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
|
7534
7626
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
7535
7627
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
7628
|
+
# resp.job_templates[0].settings.output_groups[0].outputs[0].container_settings.mxf_settings.afd_signaling #=> String, one of "NO_COPY", "COPY_FROM_VIDEO"
|
7536
7629
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].extension #=> String
|
7537
7630
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].name_modifier #=> String
|
7538
7631
|
# resp.job_templates[0].settings.output_groups[0].outputs[0].output_settings.hls_settings.audio_group_id #=> String
|
@@ -7781,26 +7874,28 @@ module Aws::MediaConvert
|
|
7781
7874
|
# time.
|
7782
7875
|
#
|
7783
7876
|
# @option params [String] :next_token
|
7784
|
-
# Use this string, provided with the response to a previous
|
7785
|
-
# request the next batch of jobs.
|
7877
|
+
# Optional. Use this string, provided with the response to a previous
|
7878
|
+
# request, to request the next batch of jobs.
|
7786
7879
|
#
|
7787
7880
|
# @option params [String] :order
|
7788
|
-
# When you request lists of resources, you can
|
7789
|
-
#
|
7790
|
-
#
|
7881
|
+
# Optional. When you request lists of resources, you can specify whether
|
7882
|
+
# they are sorted in ASCENDING or DESCENDING order. Default varies by
|
7883
|
+
# resource.
|
7791
7884
|
#
|
7792
7885
|
# @option params [String] :queue
|
7793
|
-
# Provide a queue name to get back only jobs from that queue.
|
7886
|
+
# Optional. Provide a queue name to get back only jobs from that queue.
|
7794
7887
|
#
|
7795
7888
|
# @option params [String] :status
|
7796
|
-
# A job's status can be SUBMITTED, PROGRESSING, COMPLETE,
|
7797
|
-
# ERROR.
|
7889
|
+
# Optional. A job's status can be SUBMITTED, PROGRESSING, COMPLETE,
|
7890
|
+
# CANCELED, or ERROR.
|
7798
7891
|
#
|
7799
7892
|
# @return [Types::ListJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7800
7893
|
#
|
7801
7894
|
# * {Types::ListJobsResponse#jobs #jobs} => Array<Types::Job>
|
7802
7895
|
# * {Types::ListJobsResponse#next_token #next_token} => String
|
7803
7896
|
#
|
7897
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7898
|
+
#
|
7804
7899
|
# @example Request syntax with placeholder values
|
7805
7900
|
#
|
7806
7901
|
# resp = client.list_jobs({
|
@@ -7822,6 +7917,10 @@ module Aws::MediaConvert
|
|
7822
7917
|
# resp.jobs[0].current_phase #=> String, one of "PROBING", "TRANSCODING", "UPLOADING"
|
7823
7918
|
# resp.jobs[0].error_code #=> Integer
|
7824
7919
|
# resp.jobs[0].error_message #=> String
|
7920
|
+
# resp.jobs[0].hop_destinations #=> Array
|
7921
|
+
# resp.jobs[0].hop_destinations[0].priority #=> Integer
|
7922
|
+
# resp.jobs[0].hop_destinations[0].queue #=> String
|
7923
|
+
# resp.jobs[0].hop_destinations[0].wait_minutes #=> Integer
|
7825
7924
|
# resp.jobs[0].id #=> String
|
7826
7925
|
# resp.jobs[0].job_percent_complete #=> Integer
|
7827
7926
|
# resp.jobs[0].job_template #=> String
|
@@ -7836,6 +7935,10 @@ module Aws::MediaConvert
|
|
7836
7935
|
# resp.jobs[0].output_group_details[0].output_details[0].video_details.width_in_px #=> Integer
|
7837
7936
|
# resp.jobs[0].priority #=> Integer
|
7838
7937
|
# resp.jobs[0].queue #=> String
|
7938
|
+
# resp.jobs[0].queue_transitions #=> Array
|
7939
|
+
# resp.jobs[0].queue_transitions[0].destination_queue #=> String
|
7940
|
+
# resp.jobs[0].queue_transitions[0].source_queue #=> String
|
7941
|
+
# resp.jobs[0].queue_transitions[0].timestamp #=> Time
|
7839
7942
|
# resp.jobs[0].retry_count #=> Integer
|
7840
7943
|
# resp.jobs[0].role #=> String
|
7841
7944
|
# resp.jobs[0].settings.ad_avail_offset #=> Integer
|
@@ -7876,6 +7979,8 @@ module Aws::MediaConvert
|
|
7876
7979
|
# resp.jobs[0].settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.source_608_track_number #=> Integer
|
7877
7980
|
# resp.jobs[0].settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.terminate_captions #=> String, one of "END_OF_INPUT", "DISABLED"
|
7878
7981
|
# resp.jobs[0].settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.convert_608_to_708 #=> String, one of "UPCONVERT", "DISABLED"
|
7982
|
+
# resp.jobs[0].settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_denominator #=> Integer
|
7983
|
+
# resp.jobs[0].settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_numerator #=> Integer
|
7879
7984
|
# resp.jobs[0].settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.source_file #=> String
|
7880
7985
|
# resp.jobs[0].settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.time_delta #=> Integer
|
7881
7986
|
# resp.jobs[0].settings.inputs[0].caption_selectors["__string"].source_settings.source_type #=> String, one of "ANCILLARY", "DVB_SUB", "EMBEDDED", "SCTE20", "SCC", "TTML", "STL", "SRT", "SMI", "TELETEXT", "NULL_SOURCE", "IMSC"
|
@@ -8294,6 +8399,7 @@ module Aws::MediaConvert
|
|
8294
8399
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
|
8295
8400
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
8296
8401
|
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
8402
|
+
# resp.jobs[0].settings.output_groups[0].outputs[0].container_settings.mxf_settings.afd_signaling #=> String, one of "NO_COPY", "COPY_FROM_VIDEO"
|
8297
8403
|
# resp.jobs[0].settings.output_groups[0].outputs[0].extension #=> String
|
8298
8404
|
# resp.jobs[0].settings.output_groups[0].outputs[0].name_modifier #=> String
|
8299
8405
|
# resp.jobs[0].settings.output_groups[0].outputs[0].output_settings.hls_settings.audio_group_id #=> String
|
@@ -8560,15 +8666,17 @@ module Aws::MediaConvert
|
|
8560
8666
|
# request the next batch of presets.
|
8561
8667
|
#
|
8562
8668
|
# @option params [String] :order
|
8563
|
-
# When you request lists of resources, you can
|
8564
|
-
#
|
8565
|
-
#
|
8669
|
+
# Optional. When you request lists of resources, you can specify whether
|
8670
|
+
# they are sorted in ASCENDING or DESCENDING order. Default varies by
|
8671
|
+
# resource.
|
8566
8672
|
#
|
8567
8673
|
# @return [Types::ListPresetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8568
8674
|
#
|
8569
8675
|
# * {Types::ListPresetsResponse#next_token #next_token} => String
|
8570
8676
|
# * {Types::ListPresetsResponse#presets #presets} => Array<Types::Preset>
|
8571
8677
|
#
|
8678
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8679
|
+
#
|
8572
8680
|
# @example Request syntax with placeholder values
|
8573
8681
|
#
|
8574
8682
|
# resp = client.list_presets({
|
@@ -8802,6 +8910,7 @@ module Aws::MediaConvert
|
|
8802
8910
|
# resp.presets[0].settings.container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
|
8803
8911
|
# resp.presets[0].settings.container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
8804
8912
|
# resp.presets[0].settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
8913
|
+
# resp.presets[0].settings.container_settings.mxf_settings.afd_signaling #=> String, one of "NO_COPY", "COPY_FROM_VIDEO"
|
8805
8914
|
# resp.presets[0].settings.video_description.afd_signaling #=> String, one of "NONE", "AUTO", "FIXED"
|
8806
8915
|
# resp.presets[0].settings.video_description.anti_alias #=> String, one of "DISABLED", "ENABLED"
|
8807
8916
|
# resp.presets[0].settings.video_description.codec_settings.av_1_settings.adaptive_quantization #=> String, one of "OFF", "LOW", "MEDIUM", "HIGH", "HIGHER", "MAX"
|
@@ -9039,15 +9148,17 @@ module Aws::MediaConvert
|
|
9039
9148
|
# request the next batch of queues.
|
9040
9149
|
#
|
9041
9150
|
# @option params [String] :order
|
9042
|
-
# When you request lists of resources, you can
|
9043
|
-
#
|
9044
|
-
#
|
9151
|
+
# Optional. When you request lists of resources, you can specify whether
|
9152
|
+
# they are sorted in ASCENDING or DESCENDING order. Default varies by
|
9153
|
+
# resource.
|
9045
9154
|
#
|
9046
9155
|
# @return [Types::ListQueuesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9047
9156
|
#
|
9048
9157
|
# * {Types::ListQueuesResponse#next_token #next_token} => String
|
9049
9158
|
# * {Types::ListQueuesResponse#queues #queues} => Array<Types::Queue>
|
9050
9159
|
#
|
9160
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9161
|
+
#
|
9051
9162
|
# @example Request syntax with placeholder values
|
9052
9163
|
#
|
9053
9164
|
# resp = client.list_queues({
|
@@ -9193,6 +9304,9 @@ module Aws::MediaConvert
|
|
9193
9304
|
# @option params [String] :description
|
9194
9305
|
# The new description for the job template, if you are changing it.
|
9195
9306
|
#
|
9307
|
+
# @option params [Array<Types::HopDestination>] :hop_destinations
|
9308
|
+
# Optional list of hop destinations.
|
9309
|
+
#
|
9196
9310
|
# @option params [required, String] :name
|
9197
9311
|
# The name of the job template you are modifying
|
9198
9312
|
#
|
@@ -9229,6 +9343,13 @@ module Aws::MediaConvert
|
|
9229
9343
|
# },
|
9230
9344
|
# category: "__string",
|
9231
9345
|
# description: "__string",
|
9346
|
+
# hop_destinations: [
|
9347
|
+
# {
|
9348
|
+
# priority: 1,
|
9349
|
+
# queue: "__string",
|
9350
|
+
# wait_minutes: 1,
|
9351
|
+
# },
|
9352
|
+
# ],
|
9232
9353
|
# name: "__string", # required
|
9233
9354
|
# priority: 1,
|
9234
9355
|
# queue: "__string",
|
@@ -9298,6 +9419,10 @@ module Aws::MediaConvert
|
|
9298
9419
|
# },
|
9299
9420
|
# file_source_settings: {
|
9300
9421
|
# convert_608_to_708: "UPCONVERT", # accepts UPCONVERT, DISABLED
|
9422
|
+
# framerate: {
|
9423
|
+
# framerate_denominator: 1,
|
9424
|
+
# framerate_numerator: 1,
|
9425
|
+
# },
|
9301
9426
|
# source_file: "__stringMin14PatternS3SccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTXmlXMLSmiSMIHttpsSccSCCTtmlTTMLDfxpDFXPStlSTLSrtSRTXmlXMLSmiSMI",
|
9302
9427
|
# time_delta: 1,
|
9303
9428
|
# },
|
@@ -9889,6 +10014,9 @@ module Aws::MediaConvert
|
|
9889
10014
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
9890
10015
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
9891
10016
|
# },
|
10017
|
+
# mxf_settings: {
|
10018
|
+
# afd_signaling: "NO_COPY", # accepts NO_COPY, COPY_FROM_VIDEO
|
10019
|
+
# },
|
9892
10020
|
# },
|
9893
10021
|
# extension: "__string",
|
9894
10022
|
# name_modifier: "__stringMin1",
|
@@ -10193,6 +10321,10 @@ module Aws::MediaConvert
|
|
10193
10321
|
# resp.job_template.category #=> String
|
10194
10322
|
# resp.job_template.created_at #=> Time
|
10195
10323
|
# resp.job_template.description #=> String
|
10324
|
+
# resp.job_template.hop_destinations #=> Array
|
10325
|
+
# resp.job_template.hop_destinations[0].priority #=> Integer
|
10326
|
+
# resp.job_template.hop_destinations[0].queue #=> String
|
10327
|
+
# resp.job_template.hop_destinations[0].wait_minutes #=> Integer
|
10196
10328
|
# resp.job_template.last_updated #=> Time
|
10197
10329
|
# resp.job_template.name #=> String
|
10198
10330
|
# resp.job_template.priority #=> Integer
|
@@ -10235,6 +10367,8 @@ module Aws::MediaConvert
|
|
10235
10367
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.source_608_track_number #=> Integer
|
10236
10368
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.embedded_source_settings.terminate_captions #=> String, one of "END_OF_INPUT", "DISABLED"
|
10237
10369
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.convert_608_to_708 #=> String, one of "UPCONVERT", "DISABLED"
|
10370
|
+
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_denominator #=> Integer
|
10371
|
+
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.framerate.framerate_numerator #=> Integer
|
10238
10372
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.source_file #=> String
|
10239
10373
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.file_source_settings.time_delta #=> Integer
|
10240
10374
|
# resp.job_template.settings.inputs[0].caption_selectors["__string"].source_settings.source_type #=> String, one of "ANCILLARY", "DVB_SUB", "EMBEDDED", "SCTE20", "SCC", "TTML", "STL", "SRT", "SMI", "TELETEXT", "NULL_SOURCE", "IMSC"
|
@@ -10646,6 +10780,7 @@ module Aws::MediaConvert
|
|
10646
10780
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
|
10647
10781
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
10648
10782
|
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
10783
|
+
# resp.job_template.settings.output_groups[0].outputs[0].container_settings.mxf_settings.afd_signaling #=> String, one of "NO_COPY", "COPY_FROM_VIDEO"
|
10649
10784
|
# resp.job_template.settings.output_groups[0].outputs[0].extension #=> String
|
10650
10785
|
# resp.job_template.settings.output_groups[0].outputs[0].name_modifier #=> String
|
10651
10786
|
# resp.job_template.settings.output_groups[0].outputs[0].output_settings.hls_settings.audio_group_id #=> String
|
@@ -11187,6 +11322,9 @@ module Aws::MediaConvert
|
|
11187
11322
|
# scte_35_esam: "INSERT", # accepts INSERT, NONE
|
11188
11323
|
# scte_35_source: "PASSTHROUGH", # accepts PASSTHROUGH, NONE
|
11189
11324
|
# },
|
11325
|
+
# mxf_settings: {
|
11326
|
+
# afd_signaling: "NO_COPY", # accepts NO_COPY, COPY_FROM_VIDEO
|
11327
|
+
# },
|
11190
11328
|
# },
|
11191
11329
|
# video_description: {
|
11192
11330
|
# afd_signaling: "NONE", # accepts NONE, AUTO, FIXED
|
@@ -11673,6 +11811,7 @@ module Aws::MediaConvert
|
|
11673
11811
|
# resp.preset.settings.container_settings.mpd_settings.caption_container_type #=> String, one of "RAW", "FRAGMENTED_MP4"
|
11674
11812
|
# resp.preset.settings.container_settings.mpd_settings.scte_35_esam #=> String, one of "INSERT", "NONE"
|
11675
11813
|
# resp.preset.settings.container_settings.mpd_settings.scte_35_source #=> String, one of "PASSTHROUGH", "NONE"
|
11814
|
+
# resp.preset.settings.container_settings.mxf_settings.afd_signaling #=> String, one of "NO_COPY", "COPY_FROM_VIDEO"
|
11676
11815
|
# resp.preset.settings.video_description.afd_signaling #=> String, one of "NONE", "AUTO", "FIXED"
|
11677
11816
|
# resp.preset.settings.video_description.anti_alias #=> String, one of "DISABLED", "ENABLED"
|
11678
11817
|
# resp.preset.settings.video_description.codec_settings.av_1_settings.adaptive_quantization #=> String, one of "OFF", "LOW", "MEDIUM", "HIGH", "HIGHER", "MAX"
|
@@ -11972,7 +12111,7 @@ module Aws::MediaConvert
|
|
11972
12111
|
params: params,
|
11973
12112
|
config: config)
|
11974
12113
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
11975
|
-
context[:gem_version] = '1.
|
12114
|
+
context[:gem_version] = '1.49.0'
|
11976
12115
|
Seahorse::Client::Request.new(handlers, context)
|
11977
12116
|
end
|
11978
12117
|
|