aws-sdk-mediaconvert 1.44.0 → 1.45.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 +131 -44
- data/lib/aws-sdk-mediaconvert/client_api.rb +24 -0
- data/lib/aws-sdk-mediaconvert/resource.rb +1 -7
- data/lib/aws-sdk-mediaconvert/types.rb +169 -46
- 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: bdf494c5ec9691d300c3ac6beebd631d3935038fbc9f89e3b75496fcb0d3cdf1
|
4
|
+
data.tar.gz: 3a8799153debf01ba8f71550a92a78248c30fe9dcffdbc793aa79b35758b07a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ab11f4dde1a62917a615763a7abbdb4e0523aa962638f557f2c836f01b827d4bf461e79dd829c1f738110bce27ab1b084f528fcaaaca463fe45c8c25dffed37
|
7
|
+
data.tar.gz: d7ffffe80f0e312fb064fbba84277be3ff87e316bab1fcca8232c3d74ef5987468abe3b6f1ace731146d4ee2d39bd99e70da927e1d5715eeb27bca8d39068f39
|
data/lib/aws-sdk-mediaconvert.rb
CHANGED
@@ -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",
|
@@ -1420,6 +1433,10 @@ module Aws::MediaConvert
|
|
1420
1433
|
# resp.job.current_phase #=> String, one of "PROBING", "TRANSCODING", "UPLOADING"
|
1421
1434
|
# resp.job.error_code #=> Integer
|
1422
1435
|
# resp.job.error_message #=> String
|
1436
|
+
# resp.job.hop_destinations #=> Array
|
1437
|
+
# resp.job.hop_destinations[0].priority #=> Integer
|
1438
|
+
# resp.job.hop_destinations[0].queue #=> String
|
1439
|
+
# resp.job.hop_destinations[0].wait_minutes #=> Integer
|
1423
1440
|
# resp.job.id #=> String
|
1424
1441
|
# resp.job.job_percent_complete #=> Integer
|
1425
1442
|
# resp.job.job_template #=> String
|
@@ -1434,6 +1451,10 @@ module Aws::MediaConvert
|
|
1434
1451
|
# resp.job.output_group_details[0].output_details[0].video_details.width_in_px #=> Integer
|
1435
1452
|
# resp.job.priority #=> Integer
|
1436
1453
|
# resp.job.queue #=> String
|
1454
|
+
# resp.job.queue_transitions #=> Array
|
1455
|
+
# resp.job.queue_transitions[0].destination_queue #=> String
|
1456
|
+
# resp.job.queue_transitions[0].source_queue #=> String
|
1457
|
+
# resp.job.queue_transitions[0].timestamp #=> Time
|
1437
1458
|
# resp.job.retry_count #=> Integer
|
1438
1459
|
# resp.job.role #=> String
|
1439
1460
|
# resp.job.settings.ad_avail_offset #=> Integer
|
@@ -2150,6 +2171,13 @@ module Aws::MediaConvert
|
|
2150
2171
|
# @option params [String] :description
|
2151
2172
|
# Optional. A description of the job template you are creating.
|
2152
2173
|
#
|
2174
|
+
# @option params [Array<Types::HopDestination>] :hop_destinations
|
2175
|
+
# Optional. Use queue hopping to avoid overly long waits in the backlog
|
2176
|
+
# of the queue that you submit your job to. Specify an alternate queue
|
2177
|
+
# and the maximum time that your job will wait in the initial queue
|
2178
|
+
# before hopping. For more information about this feature, see the AWS
|
2179
|
+
# Elemental MediaConvert User Guide.
|
2180
|
+
#
|
2153
2181
|
# @option params [required, String] :name
|
2154
2182
|
# The name of the job template you are creating.
|
2155
2183
|
#
|
@@ -2191,6 +2219,13 @@ module Aws::MediaConvert
|
|
2191
2219
|
# },
|
2192
2220
|
# category: "__string",
|
2193
2221
|
# description: "__string",
|
2222
|
+
# hop_destinations: [
|
2223
|
+
# {
|
2224
|
+
# priority: 1,
|
2225
|
+
# queue: "__string",
|
2226
|
+
# wait_minutes: 1,
|
2227
|
+
# },
|
2228
|
+
# ],
|
2194
2229
|
# name: "__string", # required
|
2195
2230
|
# priority: 1,
|
2196
2231
|
# queue: "__string",
|
@@ -3158,6 +3193,10 @@ module Aws::MediaConvert
|
|
3158
3193
|
# resp.job_template.category #=> String
|
3159
3194
|
# resp.job_template.created_at #=> Time
|
3160
3195
|
# resp.job_template.description #=> String
|
3196
|
+
# resp.job_template.hop_destinations #=> Array
|
3197
|
+
# resp.job_template.hop_destinations[0].priority #=> Integer
|
3198
|
+
# resp.job_template.hop_destinations[0].queue #=> String
|
3199
|
+
# resp.job_template.hop_destinations[0].wait_minutes #=> Integer
|
3161
3200
|
# resp.job_template.last_updated #=> Time
|
3162
3201
|
# resp.job_template.name #=> String
|
3163
3202
|
# resp.job_template.priority #=> Integer
|
@@ -5034,6 +5073,8 @@ module Aws::MediaConvert
|
|
5034
5073
|
# * {Types::DescribeEndpointsResponse#endpoints #endpoints} => Array<Types::Endpoint>
|
5035
5074
|
# * {Types::DescribeEndpointsResponse#next_token #next_token} => String
|
5036
5075
|
#
|
5076
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
5077
|
+
#
|
5037
5078
|
# @example Request syntax with placeholder values
|
5038
5079
|
#
|
5039
5080
|
# resp = client.describe_endpoints({
|
@@ -5107,6 +5148,10 @@ module Aws::MediaConvert
|
|
5107
5148
|
# resp.job.current_phase #=> String, one of "PROBING", "TRANSCODING", "UPLOADING"
|
5108
5149
|
# resp.job.error_code #=> Integer
|
5109
5150
|
# resp.job.error_message #=> String
|
5151
|
+
# resp.job.hop_destinations #=> Array
|
5152
|
+
# resp.job.hop_destinations[0].priority #=> Integer
|
5153
|
+
# resp.job.hop_destinations[0].queue #=> String
|
5154
|
+
# resp.job.hop_destinations[0].wait_minutes #=> Integer
|
5110
5155
|
# resp.job.id #=> String
|
5111
5156
|
# resp.job.job_percent_complete #=> Integer
|
5112
5157
|
# resp.job.job_template #=> String
|
@@ -5121,6 +5166,10 @@ module Aws::MediaConvert
|
|
5121
5166
|
# resp.job.output_group_details[0].output_details[0].video_details.width_in_px #=> Integer
|
5122
5167
|
# resp.job.priority #=> Integer
|
5123
5168
|
# resp.job.queue #=> String
|
5169
|
+
# resp.job.queue_transitions #=> Array
|
5170
|
+
# resp.job.queue_transitions[0].destination_queue #=> String
|
5171
|
+
# resp.job.queue_transitions[0].source_queue #=> String
|
5172
|
+
# resp.job.queue_transitions[0].timestamp #=> Time
|
5124
5173
|
# resp.job.retry_count #=> Integer
|
5125
5174
|
# resp.job.role #=> String
|
5126
5175
|
# resp.job.settings.ad_avail_offset #=> Integer
|
@@ -5843,6 +5892,10 @@ module Aws::MediaConvert
|
|
5843
5892
|
# resp.job_template.category #=> String
|
5844
5893
|
# resp.job_template.created_at #=> Time
|
5845
5894
|
# resp.job_template.description #=> String
|
5895
|
+
# resp.job_template.hop_destinations #=> Array
|
5896
|
+
# resp.job_template.hop_destinations[0].priority #=> Integer
|
5897
|
+
# resp.job_template.hop_destinations[0].queue #=> String
|
5898
|
+
# resp.job_template.hop_destinations[0].wait_minutes #=> Integer
|
5846
5899
|
# resp.job_template.last_updated #=> Time
|
5847
5900
|
# resp.job_template.name #=> String
|
5848
5901
|
# resp.job_template.priority #=> Integer
|
@@ -7053,15 +7106,17 @@ module Aws::MediaConvert
|
|
7053
7106
|
# request the next batch of job templates.
|
7054
7107
|
#
|
7055
7108
|
# @option params [String] :order
|
7056
|
-
# When you request lists of resources, you can
|
7057
|
-
#
|
7058
|
-
#
|
7109
|
+
# Optional. When you request lists of resources, you can specify whether
|
7110
|
+
# they are sorted in ASCENDING or DESCENDING order. Default varies by
|
7111
|
+
# resource.
|
7059
7112
|
#
|
7060
7113
|
# @return [Types::ListJobTemplatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7061
7114
|
#
|
7062
7115
|
# * {Types::ListJobTemplatesResponse#job_templates #job_templates} => Array<Types::JobTemplate>
|
7063
7116
|
# * {Types::ListJobTemplatesResponse#next_token #next_token} => String
|
7064
7117
|
#
|
7118
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7119
|
+
#
|
7065
7120
|
# @example Request syntax with placeholder values
|
7066
7121
|
#
|
7067
7122
|
# resp = client.list_job_templates({
|
@@ -7080,6 +7135,10 @@ module Aws::MediaConvert
|
|
7080
7135
|
# resp.job_templates[0].category #=> String
|
7081
7136
|
# resp.job_templates[0].created_at #=> Time
|
7082
7137
|
# resp.job_templates[0].description #=> String
|
7138
|
+
# resp.job_templates[0].hop_destinations #=> Array
|
7139
|
+
# resp.job_templates[0].hop_destinations[0].priority #=> Integer
|
7140
|
+
# resp.job_templates[0].hop_destinations[0].queue #=> String
|
7141
|
+
# resp.job_templates[0].hop_destinations[0].wait_minutes #=> Integer
|
7083
7142
|
# resp.job_templates[0].last_updated #=> Time
|
7084
7143
|
# resp.job_templates[0].name #=> String
|
7085
7144
|
# resp.job_templates[0].priority #=> Integer
|
@@ -7781,26 +7840,28 @@ module Aws::MediaConvert
|
|
7781
7840
|
# time.
|
7782
7841
|
#
|
7783
7842
|
# @option params [String] :next_token
|
7784
|
-
# Use this string, provided with the response to a previous
|
7785
|
-
# request the next batch of jobs.
|
7843
|
+
# Optional. Use this string, provided with the response to a previous
|
7844
|
+
# request, to request the next batch of jobs.
|
7786
7845
|
#
|
7787
7846
|
# @option params [String] :order
|
7788
|
-
# When you request lists of resources, you can
|
7789
|
-
#
|
7790
|
-
#
|
7847
|
+
# Optional. When you request lists of resources, you can specify whether
|
7848
|
+
# they are sorted in ASCENDING or DESCENDING order. Default varies by
|
7849
|
+
# resource.
|
7791
7850
|
#
|
7792
7851
|
# @option params [String] :queue
|
7793
|
-
# Provide a queue name to get back only jobs from that queue.
|
7852
|
+
# Optional. Provide a queue name to get back only jobs from that queue.
|
7794
7853
|
#
|
7795
7854
|
# @option params [String] :status
|
7796
|
-
# A job's status can be SUBMITTED, PROGRESSING, COMPLETE,
|
7797
|
-
# ERROR.
|
7855
|
+
# Optional. A job's status can be SUBMITTED, PROGRESSING, COMPLETE,
|
7856
|
+
# CANCELED, or ERROR.
|
7798
7857
|
#
|
7799
7858
|
# @return [Types::ListJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7800
7859
|
#
|
7801
7860
|
# * {Types::ListJobsResponse#jobs #jobs} => Array<Types::Job>
|
7802
7861
|
# * {Types::ListJobsResponse#next_token #next_token} => String
|
7803
7862
|
#
|
7863
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7864
|
+
#
|
7804
7865
|
# @example Request syntax with placeholder values
|
7805
7866
|
#
|
7806
7867
|
# resp = client.list_jobs({
|
@@ -7822,6 +7883,10 @@ module Aws::MediaConvert
|
|
7822
7883
|
# resp.jobs[0].current_phase #=> String, one of "PROBING", "TRANSCODING", "UPLOADING"
|
7823
7884
|
# resp.jobs[0].error_code #=> Integer
|
7824
7885
|
# resp.jobs[0].error_message #=> String
|
7886
|
+
# resp.jobs[0].hop_destinations #=> Array
|
7887
|
+
# resp.jobs[0].hop_destinations[0].priority #=> Integer
|
7888
|
+
# resp.jobs[0].hop_destinations[0].queue #=> String
|
7889
|
+
# resp.jobs[0].hop_destinations[0].wait_minutes #=> Integer
|
7825
7890
|
# resp.jobs[0].id #=> String
|
7826
7891
|
# resp.jobs[0].job_percent_complete #=> Integer
|
7827
7892
|
# resp.jobs[0].job_template #=> String
|
@@ -7836,6 +7901,10 @@ module Aws::MediaConvert
|
|
7836
7901
|
# resp.jobs[0].output_group_details[0].output_details[0].video_details.width_in_px #=> Integer
|
7837
7902
|
# resp.jobs[0].priority #=> Integer
|
7838
7903
|
# resp.jobs[0].queue #=> String
|
7904
|
+
# resp.jobs[0].queue_transitions #=> Array
|
7905
|
+
# resp.jobs[0].queue_transitions[0].destination_queue #=> String
|
7906
|
+
# resp.jobs[0].queue_transitions[0].source_queue #=> String
|
7907
|
+
# resp.jobs[0].queue_transitions[0].timestamp #=> Time
|
7839
7908
|
# resp.jobs[0].retry_count #=> Integer
|
7840
7909
|
# resp.jobs[0].role #=> String
|
7841
7910
|
# resp.jobs[0].settings.ad_avail_offset #=> Integer
|
@@ -8560,15 +8629,17 @@ module Aws::MediaConvert
|
|
8560
8629
|
# request the next batch of presets.
|
8561
8630
|
#
|
8562
8631
|
# @option params [String] :order
|
8563
|
-
# When you request lists of resources, you can
|
8564
|
-
#
|
8565
|
-
#
|
8632
|
+
# Optional. When you request lists of resources, you can specify whether
|
8633
|
+
# they are sorted in ASCENDING or DESCENDING order. Default varies by
|
8634
|
+
# resource.
|
8566
8635
|
#
|
8567
8636
|
# @return [Types::ListPresetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8568
8637
|
#
|
8569
8638
|
# * {Types::ListPresetsResponse#next_token #next_token} => String
|
8570
8639
|
# * {Types::ListPresetsResponse#presets #presets} => Array<Types::Preset>
|
8571
8640
|
#
|
8641
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8642
|
+
#
|
8572
8643
|
# @example Request syntax with placeholder values
|
8573
8644
|
#
|
8574
8645
|
# resp = client.list_presets({
|
@@ -9039,15 +9110,17 @@ module Aws::MediaConvert
|
|
9039
9110
|
# request the next batch of queues.
|
9040
9111
|
#
|
9041
9112
|
# @option params [String] :order
|
9042
|
-
# When you request lists of resources, you can
|
9043
|
-
#
|
9044
|
-
#
|
9113
|
+
# Optional. When you request lists of resources, you can specify whether
|
9114
|
+
# they are sorted in ASCENDING or DESCENDING order. Default varies by
|
9115
|
+
# resource.
|
9045
9116
|
#
|
9046
9117
|
# @return [Types::ListQueuesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9047
9118
|
#
|
9048
9119
|
# * {Types::ListQueuesResponse#next_token #next_token} => String
|
9049
9120
|
# * {Types::ListQueuesResponse#queues #queues} => Array<Types::Queue>
|
9050
9121
|
#
|
9122
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
9123
|
+
#
|
9051
9124
|
# @example Request syntax with placeholder values
|
9052
9125
|
#
|
9053
9126
|
# resp = client.list_queues({
|
@@ -9193,6 +9266,9 @@ module Aws::MediaConvert
|
|
9193
9266
|
# @option params [String] :description
|
9194
9267
|
# The new description for the job template, if you are changing it.
|
9195
9268
|
#
|
9269
|
+
# @option params [Array<Types::HopDestination>] :hop_destinations
|
9270
|
+
# Optional list of hop destinations.
|
9271
|
+
#
|
9196
9272
|
# @option params [required, String] :name
|
9197
9273
|
# The name of the job template you are modifying
|
9198
9274
|
#
|
@@ -9229,6 +9305,13 @@ module Aws::MediaConvert
|
|
9229
9305
|
# },
|
9230
9306
|
# category: "__string",
|
9231
9307
|
# description: "__string",
|
9308
|
+
# hop_destinations: [
|
9309
|
+
# {
|
9310
|
+
# priority: 1,
|
9311
|
+
# queue: "__string",
|
9312
|
+
# wait_minutes: 1,
|
9313
|
+
# },
|
9314
|
+
# ],
|
9232
9315
|
# name: "__string", # required
|
9233
9316
|
# priority: 1,
|
9234
9317
|
# queue: "__string",
|
@@ -10193,6 +10276,10 @@ module Aws::MediaConvert
|
|
10193
10276
|
# resp.job_template.category #=> String
|
10194
10277
|
# resp.job_template.created_at #=> Time
|
10195
10278
|
# resp.job_template.description #=> String
|
10279
|
+
# resp.job_template.hop_destinations #=> Array
|
10280
|
+
# resp.job_template.hop_destinations[0].priority #=> Integer
|
10281
|
+
# resp.job_template.hop_destinations[0].queue #=> String
|
10282
|
+
# resp.job_template.hop_destinations[0].wait_minutes #=> Integer
|
10196
10283
|
# resp.job_template.last_updated #=> Time
|
10197
10284
|
# resp.job_template.name #=> String
|
10198
10285
|
# resp.job_template.priority #=> Integer
|
@@ -11972,7 +12059,7 @@ module Aws::MediaConvert
|
|
11972
12059
|
params: params,
|
11973
12060
|
config: config)
|
11974
12061
|
context[:gem_name] = 'aws-sdk-mediaconvert'
|
11975
|
-
context[:gem_version] = '1.
|
12062
|
+
context[:gem_version] = '1.45.0'
|
11976
12063
|
Seahorse::Client::Request.new(handlers, context)
|
11977
12064
|
end
|
11978
12065
|
|
@@ -281,6 +281,7 @@ module Aws::MediaConvert
|
|
281
281
|
HlsSettings = Shapes::StructureShape.new(name: 'HlsSettings')
|
282
282
|
HlsStreamInfResolution = Shapes::StringShape.new(name: 'HlsStreamInfResolution')
|
283
283
|
HlsTimedMetadataId3Frame = Shapes::StringShape.new(name: 'HlsTimedMetadataId3Frame')
|
284
|
+
HopDestination = Shapes::StructureShape.new(name: 'HopDestination')
|
284
285
|
Id3Insertion = Shapes::StructureShape.new(name: 'Id3Insertion')
|
285
286
|
ImageInserter = Shapes::StructureShape.new(name: 'ImageInserter')
|
286
287
|
ImscDestinationSettings = Shapes::StructureShape.new(name: 'ImscDestinationSettings')
|
@@ -412,6 +413,7 @@ module Aws::MediaConvert
|
|
412
413
|
Queue = Shapes::StructureShape.new(name: 'Queue')
|
413
414
|
QueueListBy = Shapes::StringShape.new(name: 'QueueListBy')
|
414
415
|
QueueStatus = Shapes::StringShape.new(name: 'QueueStatus')
|
416
|
+
QueueTransition = Shapes::StructureShape.new(name: 'QueueTransition')
|
415
417
|
Rectangle = Shapes::StructureShape.new(name: 'Rectangle')
|
416
418
|
RemixSettings = Shapes::StructureShape.new(name: 'RemixSettings')
|
417
419
|
RenewalType = Shapes::StringShape.new(name: 'RenewalType')
|
@@ -562,6 +564,7 @@ module Aws::MediaConvert
|
|
562
564
|
__listOfHlsAdMarkers = Shapes::ListShape.new(name: '__listOfHlsAdMarkers')
|
563
565
|
__listOfHlsAdditionalManifest = Shapes::ListShape.new(name: '__listOfHlsAdditionalManifest')
|
564
566
|
__listOfHlsCaptionLanguageMapping = Shapes::ListShape.new(name: '__listOfHlsCaptionLanguageMapping')
|
567
|
+
__listOfHopDestination = Shapes::ListShape.new(name: '__listOfHopDestination')
|
565
568
|
__listOfId3Insertion = Shapes::ListShape.new(name: '__listOfId3Insertion')
|
566
569
|
__listOfInput = Shapes::ListShape.new(name: '__listOfInput')
|
567
570
|
__listOfInputClipping = Shapes::ListShape.new(name: '__listOfInputClipping')
|
@@ -577,6 +580,7 @@ module Aws::MediaConvert
|
|
577
580
|
__listOfOutputGroupDetail = Shapes::ListShape.new(name: '__listOfOutputGroupDetail')
|
578
581
|
__listOfPreset = Shapes::ListShape.new(name: '__listOfPreset')
|
579
582
|
__listOfQueue = Shapes::ListShape.new(name: '__listOfQueue')
|
583
|
+
__listOfQueueTransition = Shapes::ListShape.new(name: '__listOfQueueTransition')
|
580
584
|
__listOfTeletextPageType = Shapes::ListShape.new(name: '__listOfTeletextPageType')
|
581
585
|
__listOf__integerMin1Max2147483647 = Shapes::ListShape.new(name: '__listOf__integerMin1Max2147483647')
|
582
586
|
__listOf__integerMin32Max8182 = Shapes::ListShape.new(name: '__listOf__integerMin32Max8182')
|
@@ -864,6 +868,7 @@ module Aws::MediaConvert
|
|
864
868
|
CreateJobRequest.add_member(:acceleration_settings, Shapes::ShapeRef.new(shape: AccelerationSettings, location_name: "accelerationSettings"))
|
865
869
|
CreateJobRequest.add_member(:billing_tags_source, Shapes::ShapeRef.new(shape: BillingTagsSource, location_name: "billingTagsSource"))
|
866
870
|
CreateJobRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: __string, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
871
|
+
CreateJobRequest.add_member(:hop_destinations, Shapes::ShapeRef.new(shape: __listOfHopDestination, location_name: "hopDestinations"))
|
867
872
|
CreateJobRequest.add_member(:job_template, Shapes::ShapeRef.new(shape: __string, location_name: "jobTemplate"))
|
868
873
|
CreateJobRequest.add_member(:priority, Shapes::ShapeRef.new(shape: __integerMinNegative50Max50, location_name: "priority"))
|
869
874
|
CreateJobRequest.add_member(:queue, Shapes::ShapeRef.new(shape: __string, location_name: "queue"))
|
@@ -881,6 +886,7 @@ module Aws::MediaConvert
|
|
881
886
|
CreateJobTemplateRequest.add_member(:acceleration_settings, Shapes::ShapeRef.new(shape: AccelerationSettings, location_name: "accelerationSettings"))
|
882
887
|
CreateJobTemplateRequest.add_member(:category, Shapes::ShapeRef.new(shape: __string, location_name: "category"))
|
883
888
|
CreateJobTemplateRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
889
|
+
CreateJobTemplateRequest.add_member(:hop_destinations, Shapes::ShapeRef.new(shape: __listOfHopDestination, location_name: "hopDestinations"))
|
884
890
|
CreateJobTemplateRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
885
891
|
CreateJobTemplateRequest.add_member(:priority, Shapes::ShapeRef.new(shape: __integerMinNegative50Max50, location_name: "priority"))
|
886
892
|
CreateJobTemplateRequest.add_member(:queue, Shapes::ShapeRef.new(shape: __string, location_name: "queue"))
|
@@ -1290,6 +1296,11 @@ module Aws::MediaConvert
|
|
1290
1296
|
HlsSettings.add_member(:segment_modifier, Shapes::ShapeRef.new(shape: __string, location_name: "segmentModifier"))
|
1291
1297
|
HlsSettings.struct_class = Types::HlsSettings
|
1292
1298
|
|
1299
|
+
HopDestination.add_member(:priority, Shapes::ShapeRef.new(shape: __integerMinNegative50Max50, location_name: "priority"))
|
1300
|
+
HopDestination.add_member(:queue, Shapes::ShapeRef.new(shape: __string, location_name: "queue"))
|
1301
|
+
HopDestination.add_member(:wait_minutes, Shapes::ShapeRef.new(shape: __integer, location_name: "waitMinutes"))
|
1302
|
+
HopDestination.struct_class = Types::HopDestination
|
1303
|
+
|
1293
1304
|
Id3Insertion.add_member(:id_3, Shapes::ShapeRef.new(shape: __stringPatternAZaZ0902, location_name: "id3"))
|
1294
1305
|
Id3Insertion.add_member(:timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092, location_name: "timecode"))
|
1295
1306
|
Id3Insertion.struct_class = Types::Id3Insertion
|
@@ -1373,6 +1384,7 @@ module Aws::MediaConvert
|
|
1373
1384
|
Job.add_member(:current_phase, Shapes::ShapeRef.new(shape: JobPhase, location_name: "currentPhase"))
|
1374
1385
|
Job.add_member(:error_code, Shapes::ShapeRef.new(shape: __integer, location_name: "errorCode"))
|
1375
1386
|
Job.add_member(:error_message, Shapes::ShapeRef.new(shape: __string, location_name: "errorMessage"))
|
1387
|
+
Job.add_member(:hop_destinations, Shapes::ShapeRef.new(shape: __listOfHopDestination, location_name: "hopDestinations"))
|
1376
1388
|
Job.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
1377
1389
|
Job.add_member(:job_percent_complete, Shapes::ShapeRef.new(shape: __integer, location_name: "jobPercentComplete"))
|
1378
1390
|
Job.add_member(:job_template, Shapes::ShapeRef.new(shape: __string, location_name: "jobTemplate"))
|
@@ -1380,6 +1392,7 @@ module Aws::MediaConvert
|
|
1380
1392
|
Job.add_member(:output_group_details, Shapes::ShapeRef.new(shape: __listOfOutputGroupDetail, location_name: "outputGroupDetails"))
|
1381
1393
|
Job.add_member(:priority, Shapes::ShapeRef.new(shape: __integerMinNegative50Max50, location_name: "priority"))
|
1382
1394
|
Job.add_member(:queue, Shapes::ShapeRef.new(shape: __string, location_name: "queue"))
|
1395
|
+
Job.add_member(:queue_transitions, Shapes::ShapeRef.new(shape: __listOfQueueTransition, location_name: "queueTransitions"))
|
1383
1396
|
Job.add_member(:retry_count, Shapes::ShapeRef.new(shape: __integer, location_name: "retryCount"))
|
1384
1397
|
Job.add_member(:role, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "role"))
|
1385
1398
|
Job.add_member(:settings, Shapes::ShapeRef.new(shape: JobSettings, required: true, location_name: "settings"))
|
@@ -1410,6 +1423,7 @@ module Aws::MediaConvert
|
|
1410
1423
|
JobTemplate.add_member(:category, Shapes::ShapeRef.new(shape: __string, location_name: "category"))
|
1411
1424
|
JobTemplate.add_member(:created_at, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "createdAt"))
|
1412
1425
|
JobTemplate.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
1426
|
+
JobTemplate.add_member(:hop_destinations, Shapes::ShapeRef.new(shape: __listOfHopDestination, location_name: "hopDestinations"))
|
1413
1427
|
JobTemplate.add_member(:last_updated, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "lastUpdated"))
|
1414
1428
|
JobTemplate.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
1415
1429
|
JobTemplate.add_member(:priority, Shapes::ShapeRef.new(shape: __integerMinNegative50Max50, location_name: "priority"))
|
@@ -1739,6 +1753,11 @@ module Aws::MediaConvert
|
|
1739
1753
|
Queue.add_member(:type, Shapes::ShapeRef.new(shape: Type, location_name: "type"))
|
1740
1754
|
Queue.struct_class = Types::Queue
|
1741
1755
|
|
1756
|
+
QueueTransition.add_member(:destination_queue, Shapes::ShapeRef.new(shape: __string, location_name: "destinationQueue"))
|
1757
|
+
QueueTransition.add_member(:source_queue, Shapes::ShapeRef.new(shape: __string, location_name: "sourceQueue"))
|
1758
|
+
QueueTransition.add_member(:timestamp, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "timestamp"))
|
1759
|
+
QueueTransition.struct_class = Types::QueueTransition
|
1760
|
+
|
1742
1761
|
Rectangle.add_member(:height, Shapes::ShapeRef.new(shape: __integerMin2Max2147483647, location_name: "height"))
|
1743
1762
|
Rectangle.add_member(:width, Shapes::ShapeRef.new(shape: __integerMin2Max2147483647, location_name: "width"))
|
1744
1763
|
Rectangle.add_member(:x, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "x"))
|
@@ -1850,6 +1869,7 @@ module Aws::MediaConvert
|
|
1850
1869
|
UpdateJobTemplateRequest.add_member(:acceleration_settings, Shapes::ShapeRef.new(shape: AccelerationSettings, location_name: "accelerationSettings"))
|
1851
1870
|
UpdateJobTemplateRequest.add_member(:category, Shapes::ShapeRef.new(shape: __string, location_name: "category"))
|
1852
1871
|
UpdateJobTemplateRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
1872
|
+
UpdateJobTemplateRequest.add_member(:hop_destinations, Shapes::ShapeRef.new(shape: __listOfHopDestination, location_name: "hopDestinations"))
|
1853
1873
|
UpdateJobTemplateRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "name"))
|
1854
1874
|
UpdateJobTemplateRequest.add_member(:priority, Shapes::ShapeRef.new(shape: __integerMinNegative50Max50, location_name: "priority"))
|
1855
1875
|
UpdateJobTemplateRequest.add_member(:queue, Shapes::ShapeRef.new(shape: __string, location_name: "queue"))
|
@@ -1949,6 +1969,8 @@ module Aws::MediaConvert
|
|
1949
1969
|
|
1950
1970
|
__listOfHlsCaptionLanguageMapping.member = Shapes::ShapeRef.new(shape: HlsCaptionLanguageMapping)
|
1951
1971
|
|
1972
|
+
__listOfHopDestination.member = Shapes::ShapeRef.new(shape: HopDestination)
|
1973
|
+
|
1952
1974
|
__listOfId3Insertion.member = Shapes::ShapeRef.new(shape: Id3Insertion)
|
1953
1975
|
|
1954
1976
|
__listOfInput.member = Shapes::ShapeRef.new(shape: Input)
|
@@ -1979,6 +2001,8 @@ module Aws::MediaConvert
|
|
1979
2001
|
|
1980
2002
|
__listOfQueue.member = Shapes::ShapeRef.new(shape: Queue)
|
1981
2003
|
|
2004
|
+
__listOfQueueTransition.member = Shapes::ShapeRef.new(shape: QueueTransition)
|
2005
|
+
|
1982
2006
|
__listOfTeletextPageType.member = Shapes::ShapeRef.new(shape: TeletextPageType)
|
1983
2007
|
|
1984
2008
|
__listOf__integerMin1Max2147483647.member = Shapes::ShapeRef.new(shape: __integerMin1Max2147483647)
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::MediaConvert
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::MediaConvert::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::MediaConvert::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::MediaConvert::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
@@ -184,9 +184,7 @@ module Aws::MediaConvert
|
|
184
184
|
end
|
185
185
|
|
186
186
|
# Accelerated transcoding can significantly speed up jobs with long,
|
187
|
-
# visually complex content.
|
188
|
-
# pricing. For information about feature limitations, see the AWS
|
189
|
-
# Elemental MediaConvert User Guide.
|
187
|
+
# visually complex content.
|
190
188
|
#
|
191
189
|
# @note When making an API call, you may pass AccelerationSettings
|
192
190
|
# data as a hash:
|
@@ -2500,6 +2498,13 @@ module Aws::MediaConvert
|
|
2500
2498
|
# },
|
2501
2499
|
# billing_tags_source: "QUEUE", # accepts QUEUE, PRESET, JOB_TEMPLATE, JOB
|
2502
2500
|
# client_request_token: "__string",
|
2501
|
+
# hop_destinations: [
|
2502
|
+
# {
|
2503
|
+
# priority: 1,
|
2504
|
+
# queue: "__string",
|
2505
|
+
# wait_minutes: 1,
|
2506
|
+
# },
|
2507
|
+
# ],
|
2503
2508
|
# job_template: "__string",
|
2504
2509
|
# priority: 1,
|
2505
2510
|
# queue: "__string",
|
@@ -3474,10 +3479,10 @@ module Aws::MediaConvert
|
|
3474
3479
|
# }
|
3475
3480
|
#
|
3476
3481
|
# @!attribute [rw] acceleration_settings
|
3477
|
-
# Accelerated transcoding can significantly speed up jobs
|
3478
|
-
# visually complex content. Outputs that use this feature
|
3479
|
-
# pro-tier pricing. For information about feature limitations,
|
3480
|
-
# AWS Elemental MediaConvert User Guide.
|
3482
|
+
# Optional. Accelerated transcoding can significantly speed up jobs
|
3483
|
+
# with long, visually complex content. Outputs that use this feature
|
3484
|
+
# incur pro-tier pricing. For information about feature limitations,
|
3485
|
+
# see the AWS Elemental MediaConvert User Guide.
|
3481
3486
|
# @return [Types::AccelerationSettings]
|
3482
3487
|
#
|
3483
3488
|
# @!attribute [rw] billing_tags_source
|
@@ -3490,21 +3495,29 @@ module Aws::MediaConvert
|
|
3490
3495
|
# @return [String]
|
3491
3496
|
#
|
3492
3497
|
# @!attribute [rw] client_request_token
|
3493
|
-
# Idempotency token for CreateJob operation.**A suitable default value is auto-generated.** You should normally
|
3498
|
+
# Optional. Idempotency token for CreateJob operation.**A suitable default value is auto-generated.** You should normally
|
3494
3499
|
# not need to pass this option.
|
3495
3500
|
# @return [String]
|
3496
3501
|
#
|
3502
|
+
# @!attribute [rw] hop_destinations
|
3503
|
+
# Optional. Use queue hopping to avoid overly long waits in the
|
3504
|
+
# backlog of the queue that you submit your job to. Specify an
|
3505
|
+
# alternate queue and the maximum time that your job will wait in the
|
3506
|
+
# initial queue before hopping. For more information about this
|
3507
|
+
# feature, see the AWS Elemental MediaConvert User Guide.
|
3508
|
+
# @return [Array<Types::HopDestination>]
|
3509
|
+
#
|
3497
3510
|
# @!attribute [rw] job_template
|
3498
|
-
# When you create a job, you can either specify a job
|
3499
|
-
# specify the transcoding settings individually
|
3511
|
+
# Optional. When you create a job, you can either specify a job
|
3512
|
+
# template or specify the transcoding settings individually.
|
3500
3513
|
# @return [String]
|
3501
3514
|
#
|
3502
3515
|
# @!attribute [rw] priority
|
3503
|
-
# Specify the relative priority for this job. In any given
|
3504
|
-
# service begins processing the job with the highest value
|
3505
|
-
# more than one job has the same priority, the service
|
3506
|
-
# processing the job that you submitted first. If you don't
|
3507
|
-
# priority, the service uses the default value 0.
|
3516
|
+
# Optional. Specify the relative priority for this job. In any given
|
3517
|
+
# queue, the service begins processing the job with the highest value
|
3518
|
+
# first. When more than one job has the same priority, the service
|
3519
|
+
# begins processing the job that you submitted first. If you don't
|
3520
|
+
# specify a priority, the service uses the default value 0.
|
3508
3521
|
# @return [Integer]
|
3509
3522
|
#
|
3510
3523
|
# @!attribute [rw] queue
|
@@ -3525,28 +3538,28 @@ module Aws::MediaConvert
|
|
3525
3538
|
# @return [Types::JobSettings]
|
3526
3539
|
#
|
3527
3540
|
# @!attribute [rw] simulate_reserved_queue
|
3528
|
-
# Enable this setting when you run a test job to estimate
|
3529
|
-
# reserved transcoding slots (RTS) you need. When this is
|
3530
|
-
# MediaConvert runs your job from an on-demand queue with
|
3531
|
-
# performance to what you will see with one RTS in a reserved
|
3532
|
-
# This setting is disabled by default.
|
3541
|
+
# Optional. Enable this setting when you run a test job to estimate
|
3542
|
+
# how many reserved transcoding slots (RTS) you need. When this is
|
3543
|
+
# enabled, MediaConvert runs your job from an on-demand queue with
|
3544
|
+
# similar performance to what you will see with one RTS in a reserved
|
3545
|
+
# queue. This setting is disabled by default.
|
3533
3546
|
# @return [String]
|
3534
3547
|
#
|
3535
3548
|
# @!attribute [rw] status_update_interval
|
3536
|
-
# Specify how often MediaConvert sends STATUS\_UPDATE events
|
3537
|
-
# CloudWatch Events. Set the interval, in seconds, between
|
3538
|
-
# updates. MediaConvert sends an update at this interval from
|
3539
|
-
# the service begins processing your job to the time it
|
3540
|
-
# transcode or encounters an error.
|
3549
|
+
# Optional. Specify how often MediaConvert sends STATUS\_UPDATE events
|
3550
|
+
# to Amazon CloudWatch Events. Set the interval, in seconds, between
|
3551
|
+
# status updates. MediaConvert sends an update at this interval from
|
3552
|
+
# the time the service begins processing your job to the time it
|
3553
|
+
# completes the transcode or encounters an error.
|
3541
3554
|
# @return [String]
|
3542
3555
|
#
|
3543
3556
|
# @!attribute [rw] tags
|
3544
|
-
# The tags that you want to add to the resource. You can tag
|
3545
|
-
# with a key-value pair or with only a key.
|
3557
|
+
# Optional. The tags that you want to add to the resource. You can tag
|
3558
|
+
# resources with a key-value pair or with only a key.
|
3546
3559
|
# @return [Hash<String,String>]
|
3547
3560
|
#
|
3548
3561
|
# @!attribute [rw] user_metadata
|
3549
|
-
# User-defined metadata that you want to associate with an
|
3562
|
+
# Optional. User-defined metadata that you want to associate with an
|
3550
3563
|
# MediaConvert job. You specify metadata in key/value pairs.
|
3551
3564
|
# @return [Hash<String,String>]
|
3552
3565
|
#
|
@@ -3556,6 +3569,7 @@ module Aws::MediaConvert
|
|
3556
3569
|
:acceleration_settings,
|
3557
3570
|
:billing_tags_source,
|
3558
3571
|
:client_request_token,
|
3572
|
+
:hop_destinations,
|
3559
3573
|
:job_template,
|
3560
3574
|
:priority,
|
3561
3575
|
:queue,
|
@@ -3597,6 +3611,13 @@ module Aws::MediaConvert
|
|
3597
3611
|
# },
|
3598
3612
|
# category: "__string",
|
3599
3613
|
# description: "__string",
|
3614
|
+
# hop_destinations: [
|
3615
|
+
# {
|
3616
|
+
# priority: 1,
|
3617
|
+
# queue: "__string",
|
3618
|
+
# wait_minutes: 1,
|
3619
|
+
# },
|
3620
|
+
# ],
|
3600
3621
|
# name: "__string", # required
|
3601
3622
|
# priority: 1,
|
3602
3623
|
# queue: "__string",
|
@@ -4572,6 +4593,14 @@ module Aws::MediaConvert
|
|
4572
4593
|
# Optional. A description of the job template you are creating.
|
4573
4594
|
# @return [String]
|
4574
4595
|
#
|
4596
|
+
# @!attribute [rw] hop_destinations
|
4597
|
+
# Optional. Use queue hopping to avoid overly long waits in the
|
4598
|
+
# backlog of the queue that you submit your job to. Specify an
|
4599
|
+
# alternate queue and the maximum time that your job will wait in the
|
4600
|
+
# initial queue before hopping. For more information about this
|
4601
|
+
# feature, see the AWS Elemental MediaConvert User Guide.
|
4602
|
+
# @return [Array<Types::HopDestination>]
|
4603
|
+
#
|
4575
4604
|
# @!attribute [rw] name
|
4576
4605
|
# The name of the job template you are creating.
|
4577
4606
|
# @return [String]
|
@@ -4614,6 +4643,7 @@ module Aws::MediaConvert
|
|
4614
4643
|
:acceleration_settings,
|
4615
4644
|
:category,
|
4616
4645
|
:description,
|
4646
|
+
:hop_destinations,
|
4617
4647
|
:name,
|
4618
4648
|
:priority,
|
4619
4649
|
:queue,
|
@@ -8468,6 +8498,49 @@ module Aws::MediaConvert
|
|
8468
8498
|
include Aws::Structure
|
8469
8499
|
end
|
8470
8500
|
|
8501
|
+
# Optional. Configuration for a destination queue to which the job can
|
8502
|
+
# hop once a customer-defined minimum wait time has passed.
|
8503
|
+
#
|
8504
|
+
# @note When making an API call, you may pass HopDestination
|
8505
|
+
# data as a hash:
|
8506
|
+
#
|
8507
|
+
# {
|
8508
|
+
# priority: 1,
|
8509
|
+
# queue: "__string",
|
8510
|
+
# wait_minutes: 1,
|
8511
|
+
# }
|
8512
|
+
#
|
8513
|
+
# @!attribute [rw] priority
|
8514
|
+
# Optional. When you set up a job to use queue hopping, you can
|
8515
|
+
# specify a different relative priority for the job in the destination
|
8516
|
+
# queue. If you don't specify, the relative priority will remain the
|
8517
|
+
# same as in the previous queue.
|
8518
|
+
# @return [Integer]
|
8519
|
+
#
|
8520
|
+
# @!attribute [rw] queue
|
8521
|
+
# Optional unless the job is submitted on the default queue. When you
|
8522
|
+
# set up a job to use queue hopping, you can specify a destination
|
8523
|
+
# queue. This queue cannot be the original queue to which the job is
|
8524
|
+
# submitted. If the original queue isn't the default queue and you
|
8525
|
+
# don't specify the destination queue, the job will move to the
|
8526
|
+
# default queue.
|
8527
|
+
# @return [String]
|
8528
|
+
#
|
8529
|
+
# @!attribute [rw] wait_minutes
|
8530
|
+
# Required for setting up a job to use queue hopping. Minimum wait
|
8531
|
+
# time in minutes until the job can hop to the destination queue.
|
8532
|
+
# Valid range is 1 to 1440 minutes, inclusive.
|
8533
|
+
# @return [Integer]
|
8534
|
+
#
|
8535
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/HopDestination AWS API Documentation
|
8536
|
+
#
|
8537
|
+
class HopDestination < Struct.new(
|
8538
|
+
:priority,
|
8539
|
+
:queue,
|
8540
|
+
:wait_minutes)
|
8541
|
+
include Aws::Structure
|
8542
|
+
end
|
8543
|
+
|
8471
8544
|
# To insert ID3 tags in your output, specify two values. Use ID3 tag
|
8472
8545
|
# (Id3) to specify the base 64 encoded string and use Timecode
|
8473
8546
|
# (TimeCode) to specify the time when the tag should be inserted. To
|
@@ -9410,12 +9483,9 @@ module Aws::MediaConvert
|
|
9410
9483
|
# @return [String]
|
9411
9484
|
#
|
9412
9485
|
# @!attribute [rw] billing_tags_source
|
9413
|
-
#
|
9414
|
-
#
|
9415
|
-
#
|
9416
|
-
# have an associated tag will appear in your billing report unsorted.
|
9417
|
-
# If you don't choose a valid value for this field, your job outputs
|
9418
|
-
# will appear on the billing report unsorted.
|
9486
|
+
# The tag type that AWS Billing and Cost Management will use to sort
|
9487
|
+
# your AWS Elemental MediaConvert costs on any billing report that you
|
9488
|
+
# set up.
|
9419
9489
|
# @return [String]
|
9420
9490
|
#
|
9421
9491
|
# @!attribute [rw] created_at
|
@@ -9434,6 +9504,10 @@ module Aws::MediaConvert
|
|
9434
9504
|
# Error message of Job
|
9435
9505
|
# @return [String]
|
9436
9506
|
#
|
9507
|
+
# @!attribute [rw] hop_destinations
|
9508
|
+
# Optional list of hop destinations.
|
9509
|
+
# @return [Array<Types::HopDestination>]
|
9510
|
+
#
|
9437
9511
|
# @!attribute [rw] id
|
9438
9512
|
# A portion of the job's ARN, unique within your AWS Elemental
|
9439
9513
|
# MediaConvert resources
|
@@ -9471,12 +9545,16 @@ module Aws::MediaConvert
|
|
9471
9545
|
# @return [Integer]
|
9472
9546
|
#
|
9473
9547
|
# @!attribute [rw] queue
|
9474
|
-
#
|
9475
|
-
#
|
9476
|
-
#
|
9548
|
+
# When you create a job, you can specify a queue to send it to. If you
|
9549
|
+
# don't specify, the job will go to the default queue. For more about
|
9550
|
+
# queues, see the User Guide topic at
|
9477
9551
|
# http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
|
9478
9552
|
# @return [String]
|
9479
9553
|
#
|
9554
|
+
# @!attribute [rw] queue_transitions
|
9555
|
+
# The job's queue hopping history.
|
9556
|
+
# @return [Array<Types::QueueTransition>]
|
9557
|
+
#
|
9480
9558
|
# @!attribute [rw] retry_count
|
9481
9559
|
# The number of times that the service automatically attempted to
|
9482
9560
|
# process your job after encountering an error.
|
@@ -9534,6 +9612,7 @@ module Aws::MediaConvert
|
|
9534
9612
|
:current_phase,
|
9535
9613
|
:error_code,
|
9536
9614
|
:error_message,
|
9615
|
+
:hop_destinations,
|
9537
9616
|
:id,
|
9538
9617
|
:job_percent_complete,
|
9539
9618
|
:job_template,
|
@@ -9541,6 +9620,7 @@ module Aws::MediaConvert
|
|
9541
9620
|
:output_group_details,
|
9542
9621
|
:priority,
|
9543
9622
|
:queue,
|
9623
|
+
:queue_transitions,
|
9544
9624
|
:retry_count,
|
9545
9625
|
:role,
|
9546
9626
|
:settings,
|
@@ -10640,6 +10720,10 @@ module Aws::MediaConvert
|
|
10640
10720
|
# An optional description you create for each job template.
|
10641
10721
|
# @return [String]
|
10642
10722
|
#
|
10723
|
+
# @!attribute [rw] hop_destinations
|
10724
|
+
# Optional list of hop destinations.
|
10725
|
+
# @return [Array<Types::HopDestination>]
|
10726
|
+
#
|
10643
10727
|
# @!attribute [rw] last_updated
|
10644
10728
|
# The timestamp in epoch seconds when the Job template was last
|
10645
10729
|
# updated.
|
@@ -10686,6 +10770,7 @@ module Aws::MediaConvert
|
|
10686
10770
|
:category,
|
10687
10771
|
:created_at,
|
10688
10772
|
:description,
|
10773
|
+
:hop_destinations,
|
10689
10774
|
:last_updated,
|
10690
10775
|
:name,
|
10691
10776
|
:priority,
|
@@ -11771,7 +11856,7 @@ module Aws::MediaConvert
|
|
11771
11856
|
# @return [String]
|
11772
11857
|
#
|
11773
11858
|
# @!attribute [rw] order
|
11774
|
-
# When you request lists of resources, you can
|
11859
|
+
# Optional. When you request lists of resources, you can specify
|
11775
11860
|
# whether they are sorted in ASCENDING or DESCENDING order. Default
|
11776
11861
|
# varies by resource.
|
11777
11862
|
# @return [String]
|
@@ -11829,23 +11914,24 @@ module Aws::MediaConvert
|
|
11829
11914
|
# @return [Integer]
|
11830
11915
|
#
|
11831
11916
|
# @!attribute [rw] next_token
|
11832
|
-
# Use this string, provided with the response to a previous
|
11833
|
-
# to request the next batch of jobs.
|
11917
|
+
# Optional. Use this string, provided with the response to a previous
|
11918
|
+
# request, to request the next batch of jobs.
|
11834
11919
|
# @return [String]
|
11835
11920
|
#
|
11836
11921
|
# @!attribute [rw] order
|
11837
|
-
# When you request lists of resources, you can
|
11922
|
+
# Optional. When you request lists of resources, you can specify
|
11838
11923
|
# whether they are sorted in ASCENDING or DESCENDING order. Default
|
11839
11924
|
# varies by resource.
|
11840
11925
|
# @return [String]
|
11841
11926
|
#
|
11842
11927
|
# @!attribute [rw] queue
|
11843
|
-
# Provide a queue name to get back only jobs from that
|
11928
|
+
# Optional. Provide a queue name to get back only jobs from that
|
11929
|
+
# queue.
|
11844
11930
|
# @return [String]
|
11845
11931
|
#
|
11846
11932
|
# @!attribute [rw] status
|
11847
|
-
# A job's status can be SUBMITTED, PROGRESSING, COMPLETE,
|
11848
|
-
# or ERROR.
|
11933
|
+
# Optional. A job's status can be SUBMITTED, PROGRESSING, COMPLETE,
|
11934
|
+
# CANCELED, or ERROR.
|
11849
11935
|
# @return [String]
|
11850
11936
|
#
|
11851
11937
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ListJobsRequest AWS API Documentation
|
@@ -11917,7 +12003,7 @@ module Aws::MediaConvert
|
|
11917
12003
|
# @return [String]
|
11918
12004
|
#
|
11919
12005
|
# @!attribute [rw] order
|
11920
|
-
# When you request lists of resources, you can
|
12006
|
+
# Optional. When you request lists of resources, you can specify
|
11921
12007
|
# whether they are sorted in ASCENDING or DESCENDING order. Default
|
11922
12008
|
# varies by resource.
|
11923
12009
|
# @return [String]
|
@@ -11984,7 +12070,7 @@ module Aws::MediaConvert
|
|
11984
12070
|
# @return [String]
|
11985
12071
|
#
|
11986
12072
|
# @!attribute [rw] order
|
11987
|
-
# When you request lists of resources, you can
|
12073
|
+
# Optional. When you request lists of resources, you can specify
|
11988
12074
|
# whether they are sorted in ASCENDING or DESCENDING order. Default
|
11989
12075
|
# varies by resource.
|
11990
12076
|
# @return [String]
|
@@ -16197,6 +16283,31 @@ module Aws::MediaConvert
|
|
16197
16283
|
include Aws::Structure
|
16198
16284
|
end
|
16199
16285
|
|
16286
|
+
# Description of the source and destination queues between which the job
|
16287
|
+
# has moved, along with the timestamp of the move
|
16288
|
+
#
|
16289
|
+
# @!attribute [rw] destination_queue
|
16290
|
+
# The queue that the job was on after the transition.
|
16291
|
+
# @return [String]
|
16292
|
+
#
|
16293
|
+
# @!attribute [rw] source_queue
|
16294
|
+
# The queue that the job was on before the transition.
|
16295
|
+
# @return [String]
|
16296
|
+
#
|
16297
|
+
# @!attribute [rw] timestamp
|
16298
|
+
# The time, in Unix epoch format, that the job moved from the source
|
16299
|
+
# queue to the destination queue.
|
16300
|
+
# @return [Time]
|
16301
|
+
#
|
16302
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/QueueTransition AWS API Documentation
|
16303
|
+
#
|
16304
|
+
class QueueTransition < Struct.new(
|
16305
|
+
:destination_queue,
|
16306
|
+
:source_queue,
|
16307
|
+
:timestamp)
|
16308
|
+
include Aws::Structure
|
16309
|
+
end
|
16310
|
+
|
16200
16311
|
# Use Rectangle to identify a specific area of the video frame.
|
16201
16312
|
#
|
16202
16313
|
# @note When making an API call, you may pass Rectangle
|
@@ -17058,6 +17169,13 @@ module Aws::MediaConvert
|
|
17058
17169
|
# },
|
17059
17170
|
# category: "__string",
|
17060
17171
|
# description: "__string",
|
17172
|
+
# hop_destinations: [
|
17173
|
+
# {
|
17174
|
+
# priority: 1,
|
17175
|
+
# queue: "__string",
|
17176
|
+
# wait_minutes: 1,
|
17177
|
+
# },
|
17178
|
+
# ],
|
17061
17179
|
# name: "__string", # required
|
17062
17180
|
# priority: 1,
|
17063
17181
|
# queue: "__string",
|
@@ -18030,6 +18148,10 @@ module Aws::MediaConvert
|
|
18030
18148
|
# The new description for the job template, if you are changing it.
|
18031
18149
|
# @return [String]
|
18032
18150
|
#
|
18151
|
+
# @!attribute [rw] hop_destinations
|
18152
|
+
# Optional list of hop destinations.
|
18153
|
+
# @return [Array<Types::HopDestination>]
|
18154
|
+
#
|
18033
18155
|
# @!attribute [rw] name
|
18034
18156
|
# The name of the job template you are modifying
|
18035
18157
|
# @return [String]
|
@@ -18065,6 +18187,7 @@ module Aws::MediaConvert
|
|
18065
18187
|
:acceleration_settings,
|
18066
18188
|
:category,
|
18067
18189
|
:description,
|
18190
|
+
:hop_destinations,
|
18068
18191
|
:name,
|
18069
18192
|
:priority,
|
18070
18193
|
:queue,
|
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.45.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: 2020-
|
11
|
+
date: 2020-04-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - MediaConvert
|