aws-sdk-mediaconvert 1.129.0 → 1.131.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 011bd5c6def3f79afb1ee387da535cef1528a5eb2941a8cfa89ffd67a0514537
4
- data.tar.gz: 78b3e4af4867bff0cc7cebf14dbdafe18bdc61ef9c0900c69ad66d071b3aa43d
3
+ metadata.gz: 94442da2cf134a3eba34d8fca42e3ca455d13f554d7e615f53ca50b3f902b1f4
4
+ data.tar.gz: f9fa778fb95063a718520d490fcab67cf493433dd45fbb6f013ab04df11a57d4
5
5
  SHA512:
6
- metadata.gz: 2d60a230ad516496f3aea3e949a86e79a14c846d9afc13fb00b5e23859e4d76c87ac95f726d28edd7a361e6f94d6d5d97b8c92795ad544bd139cfa0d04c48067
7
- data.tar.gz: 478835fe90ba2f40da823832c562aed037feb3347e617d4c28eafe00a899a82f19a477b46552655e5915e7f716f83389b61034506b05c6fa10272300ba78b1a6
6
+ metadata.gz: 3c382a35c458da9197545e65267a5a498d2b8204927df07b167510d3368ce9a3e2a23bcc32e0dc49e698cb79572147f497bb639c545284d54f91e496fa166491
7
+ data.tar.gz: a976ca6204eded49e28c27345c756b9c1841e58a8ad137b480301dcb136457cab9655f83495377131d449e755f9a23d8e1eca6b6929aec7f0c91be9727ef7961
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.131.0 (2024-06-17)
5
+ ------------------
6
+
7
+ * Feature - This release includes support for creating I-frame only video segments for DASH trick play.
8
+
9
+ 1.130.0 (2024-06-14)
10
+ ------------------
11
+
12
+ * Feature - This release adds the ability to search for historical job records within the management console using a search box and/or via the SDK/CLI with partial string matching search on input file name.
13
+
4
14
  1.129.0 (2024-06-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.129.0
1
+ 1.131.0
@@ -2247,8 +2247,10 @@ module Aws::MediaConvert
2247
2247
  req.send_request(options)
2248
2248
  end
2249
2249
 
2250
- # Send an request with an empty body to the regional API endpoint to get
2251
- # your account API endpoint.
2250
+ # Send a request with an empty body to the regional API endpoint to get
2251
+ # your account API endpoint. Note that DescribeEndpoints is no longer
2252
+ # required. We recommend that you send your requests directly to the
2253
+ # regional endpoint instead.
2252
2254
  #
2253
2255
  # @option params [Integer] :max_results
2254
2256
  # Optional. Max number of endpoints, up to twenty, that will be returned
@@ -4018,6 +4020,63 @@ module Aws::MediaConvert
4018
4020
  req.send_request(options)
4019
4021
  end
4020
4022
 
4023
+ # Retrieve a JSON array that includes job details for up to twenty of
4024
+ # your most recent jobs. Optionally filter results further according to
4025
+ # input file, queue, or status. To retrieve the twenty next most recent
4026
+ # jobs, use the nextToken string returned with the array.
4027
+ #
4028
+ # @option params [String] :input_file
4029
+ # Optional. Provide your input file URL or your partial input file name.
4030
+ # The maximum length for an input file is 300 characters.
4031
+ #
4032
+ # @option params [Integer] :max_results
4033
+ # Optional. Number of jobs, up to twenty, that will be returned at one
4034
+ # time.
4035
+ #
4036
+ # @option params [String] :next_token
4037
+ # Optional. Use this string, provided with the response to a previous
4038
+ # request, to request the next batch of jobs.
4039
+ #
4040
+ # @option params [String] :order
4041
+ # Optional. When you request lists of resources, you can specify whether
4042
+ # they are sorted in ASCENDING or DESCENDING order. Default varies by
4043
+ # resource.
4044
+ #
4045
+ # @option params [String] :queue
4046
+ # Optional. Provide a queue name, or a queue ARN, to return only jobs
4047
+ # from that queue.
4048
+ #
4049
+ # @option params [String] :status
4050
+ # Optional. A job's status can be SUBMITTED, PROGRESSING, COMPLETE,
4051
+ # CANCELED, or ERROR.
4052
+ #
4053
+ # @return [Types::SearchJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4054
+ #
4055
+ # * {Types::SearchJobsResponse#jobs #jobs} => Array<Types::Job>
4056
+ # * {Types::SearchJobsResponse#next_token #next_token} => String
4057
+ #
4058
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4059
+ #
4060
+ # @example Request syntax with placeholder values
4061
+ #
4062
+ # resp = client.search_jobs({
4063
+ # input_file: "__string",
4064
+ # max_results: 1,
4065
+ # next_token: "__string",
4066
+ # order: "ASCENDING", # accepts ASCENDING, DESCENDING
4067
+ # queue: "__string",
4068
+ # status: "SUBMITTED", # accepts SUBMITTED, PROGRESSING, COMPLETE, CANCELED, ERROR
4069
+ # })
4070
+ #
4071
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/SearchJobs AWS API Documentation
4072
+ #
4073
+ # @overload search_jobs(params = {})
4074
+ # @param [Hash] params ({})
4075
+ def search_jobs(params = {}, options = {})
4076
+ req = build_request(:search_jobs, params)
4077
+ req.send_request(options)
4078
+ end
4079
+
4021
4080
  # Add tags to a MediaConvert queue, preset, or job template. For
4022
4081
  # information about tagging, see the User Guide at
4023
4082
  # https://docs.aws.amazon.com/mediaconvert/latest/ug/tagging-resources.html
@@ -5675,7 +5734,7 @@ module Aws::MediaConvert
5675
5734
  params: params,
5676
5735
  config: config)
5677
5736
  context[:gem_name] = 'aws-sdk-mediaconvert'
5678
- context[:gem_version] = '1.129.0'
5737
+ context[:gem_version] = '1.131.0'
5679
5738
  Seahorse::Client::Request.new(handlers, context)
5680
5739
  end
5681
5740
 
@@ -571,6 +571,8 @@ module Aws::MediaConvert
571
571
  ScalingBehavior = Shapes::StringShape.new(name: 'ScalingBehavior')
572
572
  SccDestinationFramerate = Shapes::StringShape.new(name: 'SccDestinationFramerate')
573
573
  SccDestinationSettings = Shapes::StructureShape.new(name: 'SccDestinationSettings')
574
+ SearchJobsRequest = Shapes::StructureShape.new(name: 'SearchJobsRequest')
575
+ SearchJobsResponse = Shapes::StructureShape.new(name: 'SearchJobsResponse')
574
576
  SimulateReservedQueue = Shapes::StringShape.new(name: 'SimulateReservedQueue')
575
577
  SpekeKeyProvider = Shapes::StructureShape.new(name: 'SpekeKeyProvider')
576
578
  SpekeKeyProviderCmaf = Shapes::StructureShape.new(name: 'SpekeKeyProviderCmaf')
@@ -865,6 +867,7 @@ module Aws::MediaConvert
865
867
  __stringMin9Max19PatternAZ26EastWestCentralNorthSouthEastWest1912 = Shapes::StringShape.new(name: '__stringMin9Max19PatternAZ26EastWestCentralNorthSouthEastWest1912')
866
868
  __stringPattern = Shapes::StringShape.new(name: '__stringPattern')
867
869
  __stringPattern010920405090509092 = Shapes::StringShape.new(name: '__stringPattern010920405090509092')
870
+ __stringPattern010920405090509092090909 = Shapes::StringShape.new(name: '__stringPattern010920405090509092090909')
868
871
  __stringPattern01D20305D205D = Shapes::StringShape.new(name: '__stringPattern01D20305D205D')
869
872
  __stringPattern0940191020191209301 = Shapes::StringShape.new(name: '__stringPattern0940191020191209301')
870
873
  __stringPattern09aFAF809aFAF409aFAF409aFAF409aFAF12 = Shapes::StringShape.new(name: '__stringPattern09aFAF809aFAF409aFAF409aFAF409aFAF12')
@@ -1160,6 +1163,7 @@ module Aws::MediaConvert
1160
1163
  CmafGroupSettings.add_member(:base_url, Shapes::ShapeRef.new(shape: __string, location_name: "baseUrl"))
1161
1164
  CmafGroupSettings.add_member(:client_cache, Shapes::ShapeRef.new(shape: CmafClientCache, location_name: "clientCache"))
1162
1165
  CmafGroupSettings.add_member(:codec_specification, Shapes::ShapeRef.new(shape: CmafCodecSpecification, location_name: "codecSpecification"))
1166
+ CmafGroupSettings.add_member(:dash_i_frame_trick_play_name_modifier, Shapes::ShapeRef.new(shape: __stringMin1Max256, location_name: "dashIFrameTrickPlayNameModifier"))
1163
1167
  CmafGroupSettings.add_member(:dash_manifest_style, Shapes::ShapeRef.new(shape: DashManifestStyle, location_name: "dashManifestStyle"))
1164
1168
  CmafGroupSettings.add_member(:destination, Shapes::ShapeRef.new(shape: __stringPatternS3, location_name: "destination"))
1165
1169
  CmafGroupSettings.add_member(:destination_settings, Shapes::ShapeRef.new(shape: DestinationSettings, location_name: "destinationSettings"))
@@ -1308,6 +1312,7 @@ module Aws::MediaConvert
1308
1312
  DashIsoGroupSettings.add_member(:additional_manifests, Shapes::ShapeRef.new(shape: __listOfDashAdditionalManifest, location_name: "additionalManifests"))
1309
1313
  DashIsoGroupSettings.add_member(:audio_channel_config_scheme_id_uri, Shapes::ShapeRef.new(shape: DashIsoGroupAudioChannelConfigSchemeIdUri, location_name: "audioChannelConfigSchemeIdUri"))
1310
1314
  DashIsoGroupSettings.add_member(:base_url, Shapes::ShapeRef.new(shape: __string, location_name: "baseUrl"))
1315
+ DashIsoGroupSettings.add_member(:dash_i_frame_trick_play_name_modifier, Shapes::ShapeRef.new(shape: __stringMin1Max256, location_name: "dashIFrameTrickPlayNameModifier"))
1311
1316
  DashIsoGroupSettings.add_member(:dash_manifest_style, Shapes::ShapeRef.new(shape: DashManifestStyle, location_name: "dashManifestStyle"))
1312
1317
  DashIsoGroupSettings.add_member(:destination, Shapes::ShapeRef.new(shape: __stringPatternS3, location_name: "destination"))
1313
1318
  DashIsoGroupSettings.add_member(:destination_settings, Shapes::ShapeRef.new(shape: DestinationSettings, location_name: "destinationSettings"))
@@ -1809,8 +1814,8 @@ module Aws::MediaConvert
1809
1814
  Input.add_member(:video_selector, Shapes::ShapeRef.new(shape: VideoSelector, location_name: "videoSelector"))
1810
1815
  Input.struct_class = Types::Input
1811
1816
 
1812
- InputClipping.add_member(:end_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092, location_name: "endTimecode"))
1813
- InputClipping.add_member(:start_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092, location_name: "startTimecode"))
1817
+ InputClipping.add_member(:end_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092090909, location_name: "endTimecode"))
1818
+ InputClipping.add_member(:start_timecode, Shapes::ShapeRef.new(shape: __stringPattern010920405090509092090909, location_name: "startTimecode"))
1814
1819
  InputClipping.struct_class = Types::InputClipping
1815
1820
 
1816
1821
  InputDecryptionSettings.add_member(:decryption_mode, Shapes::ShapeRef.new(shape: DecryptionMode, location_name: "decryptionMode"))
@@ -1842,7 +1847,11 @@ module Aws::MediaConvert
1842
1847
  InputTemplate.add_member(:video_selector, Shapes::ShapeRef.new(shape: VideoSelector, location_name: "videoSelector"))
1843
1848
  InputTemplate.struct_class = Types::InputTemplate
1844
1849
 
1850
+ InputVideoGenerator.add_member(:channels, Shapes::ShapeRef.new(shape: __integerMin1Max32, location_name: "channels"))
1845
1851
  InputVideoGenerator.add_member(:duration, Shapes::ShapeRef.new(shape: __integerMin50Max86400000, location_name: "duration"))
1852
+ InputVideoGenerator.add_member(:framerate_denominator, Shapes::ShapeRef.new(shape: __integerMin1Max1001, location_name: "framerateDenominator"))
1853
+ InputVideoGenerator.add_member(:framerate_numerator, Shapes::ShapeRef.new(shape: __integerMin1Max60000, location_name: "framerateNumerator"))
1854
+ InputVideoGenerator.add_member(:sample_rate, Shapes::ShapeRef.new(shape: __integerMin32000Max48000, location_name: "sampleRate"))
1846
1855
  InputVideoGenerator.struct_class = Types::InputVideoGenerator
1847
1856
 
1848
1857
  InsertableImage.add_member(:duration, Shapes::ShapeRef.new(shape: __integerMin0Max2147483647, location_name: "duration"))
@@ -2256,7 +2265,7 @@ module Aws::MediaConvert
2256
2265
  Output.add_member(:caption_descriptions, Shapes::ShapeRef.new(shape: __listOfCaptionDescription, location_name: "captionDescriptions"))
2257
2266
  Output.add_member(:container_settings, Shapes::ShapeRef.new(shape: ContainerSettings, location_name: "containerSettings"))
2258
2267
  Output.add_member(:extension, Shapes::ShapeRef.new(shape: __string, location_name: "extension"))
2259
- Output.add_member(:name_modifier, Shapes::ShapeRef.new(shape: __stringMin1, location_name: "nameModifier"))
2268
+ Output.add_member(:name_modifier, Shapes::ShapeRef.new(shape: __stringMin1Max256, location_name: "nameModifier"))
2260
2269
  Output.add_member(:output_settings, Shapes::ShapeRef.new(shape: OutputSettings, location_name: "outputSettings"))
2261
2270
  Output.add_member(:preset, Shapes::ShapeRef.new(shape: __stringMin0, location_name: "preset"))
2262
2271
  Output.add_member(:video_description, Shapes::ShapeRef.new(shape: VideoDescription, location_name: "videoDescription"))
@@ -2400,6 +2409,18 @@ module Aws::MediaConvert
2400
2409
  SccDestinationSettings.add_member(:framerate, Shapes::ShapeRef.new(shape: SccDestinationFramerate, location_name: "framerate"))
2401
2410
  SccDestinationSettings.struct_class = Types::SccDestinationSettings
2402
2411
 
2412
+ SearchJobsRequest.add_member(:input_file, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "inputFile"))
2413
+ SearchJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: __integerMin1Max20, location: "querystring", location_name: "maxResults"))
2414
+ SearchJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
2415
+ SearchJobsRequest.add_member(:order, Shapes::ShapeRef.new(shape: Order, location: "querystring", location_name: "order"))
2416
+ SearchJobsRequest.add_member(:queue, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "queue"))
2417
+ SearchJobsRequest.add_member(:status, Shapes::ShapeRef.new(shape: JobStatus, location: "querystring", location_name: "status"))
2418
+ SearchJobsRequest.struct_class = Types::SearchJobsRequest
2419
+
2420
+ SearchJobsResponse.add_member(:jobs, Shapes::ShapeRef.new(shape: __listOfJob, location_name: "jobs"))
2421
+ SearchJobsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
2422
+ SearchJobsResponse.struct_class = Types::SearchJobsResponse
2423
+
2403
2424
  SpekeKeyProvider.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: __stringPatternArnAwsUsGovAcm, location_name: "certificateArn"))
2404
2425
  SpekeKeyProvider.add_member(:resource_id, Shapes::ShapeRef.new(shape: __string, location_name: "resourceId"))
2405
2426
  SpekeKeyProvider.add_member(:system_ids, Shapes::ShapeRef.new(shape: __listOf__stringPattern09aFAF809aFAF409aFAF409aFAF409aFAF12, location_name: "systemIds"))
@@ -2807,6 +2828,7 @@ module Aws::MediaConvert
2807
2828
 
2808
2829
  api.metadata = {
2809
2830
  "apiVersion" => "2017-08-29",
2831
+ "auth" => ["aws.auth#sigv4"],
2810
2832
  "endpointPrefix" => "mediaconvert",
2811
2833
  "jsonVersion" => "1.1",
2812
2834
  "protocol" => "rest-json",
@@ -3171,6 +3193,26 @@ module Aws::MediaConvert
3171
3193
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3172
3194
  end)
3173
3195
 
3196
+ api.add_operation(:search_jobs, Seahorse::Model::Operation.new.tap do |o|
3197
+ o.name = "SearchJobs"
3198
+ o.http_method = "GET"
3199
+ o.http_request_uri = "/2017-08-29/search"
3200
+ o.input = Shapes::ShapeRef.new(shape: SearchJobsRequest)
3201
+ o.output = Shapes::ShapeRef.new(shape: SearchJobsResponse)
3202
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
3203
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
3204
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
3205
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
3206
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
3207
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
3208
+ o[:pager] = Aws::Pager.new(
3209
+ limit_key: "max_results",
3210
+ tokens: {
3211
+ "next_token" => "next_token"
3212
+ }
3213
+ )
3214
+ end)
3215
+
3174
3216
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
3175
3217
  o.name = "TagResource"
3176
3218
  o.http_method = "POST"
@@ -334,6 +334,20 @@ module Aws::MediaConvert
334
334
  end
335
335
  end
336
336
 
337
+ class SearchJobs
338
+ def self.build(context)
339
+ unless context.config.regional_endpoint
340
+ endpoint = context.config.endpoint.to_s
341
+ end
342
+ Aws::MediaConvert::EndpointParameters.new(
343
+ region: context.config.region,
344
+ use_dual_stack: context.config.use_dualstack_endpoint,
345
+ use_fips: context.config.use_fips_endpoint,
346
+ endpoint: endpoint,
347
+ )
348
+ end
349
+ end
350
+
337
351
  class TagResource
338
352
  def self.build(context)
339
353
  unless context.config.regional_endpoint
@@ -104,6 +104,8 @@ module Aws::MediaConvert
104
104
  Aws::MediaConvert::Endpoints::ListTagsForResource.build(context)
105
105
  when :put_policy
106
106
  Aws::MediaConvert::Endpoints::PutPolicy.build(context)
107
+ when :search_jobs
108
+ Aws::MediaConvert::Endpoints::SearchJobs.build(context)
107
109
  when :tag_resource
108
110
  Aws::MediaConvert::Endpoints::TagResource.build(context)
109
111
  when :untag_resource
@@ -2174,6 +2174,20 @@ module Aws::MediaConvert
2174
2174
  # playlist generation.
2175
2175
  # @return [String]
2176
2176
  #
2177
+ # @!attribute [rw] dash_i_frame_trick_play_name_modifier
2178
+ # Specify whether MediaConvert generates I-frame only video segments
2179
+ # for DASH trick play, also known as trick mode. When specified, the
2180
+ # I-frame only video segments are included within an additional
2181
+ # AdaptationSet in your DASH output manifest. To generate I-frame only
2182
+ # video segments: Enter a name as a text string, up to 256 character
2183
+ # long. This name is appended to the end of this output group's base
2184
+ # filename, that you specify as part of your destination URI, and used
2185
+ # for the I-frame only video segment files. You may also include
2186
+ # format identifiers. For more information, see:
2187
+ # https://docs.aws.amazon.com/mediaconvert/latest/ug/using-variables-in-your-job-settings.html#using-settings-variables-with-streaming-outputs
2188
+ # To not generate I-frame only video segments: Leave blank.
2189
+ # @return [String]
2190
+ #
2177
2191
  # @!attribute [rw] dash_manifest_style
2178
2192
  # Specify how MediaConvert writes SegmentTimeline in your output DASH
2179
2193
  # manifest. To write a SegmentTimeline in each video Representation:
@@ -2373,6 +2387,7 @@ module Aws::MediaConvert
2373
2387
  :base_url,
2374
2388
  :client_cache,
2375
2389
  :codec_specification,
2390
+ :dash_i_frame_trick_play_name_modifier,
2376
2391
  :dash_manifest_style,
2377
2392
  :destination,
2378
2393
  :destination_settings,
@@ -3333,6 +3348,20 @@ module Aws::MediaConvert
3333
3348
  # from a different URL than the manifest file.
3334
3349
  # @return [String]
3335
3350
  #
3351
+ # @!attribute [rw] dash_i_frame_trick_play_name_modifier
3352
+ # Specify whether MediaConvert generates I-frame only video segments
3353
+ # for DASH trick play, also known as trick mode. When specified, the
3354
+ # I-frame only video segments are included within an additional
3355
+ # AdaptationSet in your DASH output manifest. To generate I-frame only
3356
+ # video segments: Enter a name as a text string, up to 256 character
3357
+ # long. This name is appended to the end of this output group's base
3358
+ # filename, that you specify as part of your destination URI, and used
3359
+ # for the I-frame only video segment files. You may also include
3360
+ # format identifiers. For more information, see:
3361
+ # https://docs.aws.amazon.com/mediaconvert/latest/ug/using-variables-in-your-job-settings.html#using-settings-variables-with-streaming-outputs
3362
+ # To not generate I-frame only video segments: Leave blank.
3363
+ # @return [String]
3364
+ #
3336
3365
  # @!attribute [rw] dash_manifest_style
3337
3366
  # Specify how MediaConvert writes SegmentTimeline in your output DASH
3338
3367
  # manifest. To write a SegmentTimeline in each video Representation:
@@ -3498,6 +3527,7 @@ module Aws::MediaConvert
3498
3527
  :additional_manifests,
3499
3528
  :audio_channel_config_scheme_id_uri,
3500
3529
  :base_url,
3530
+ :dash_i_frame_trick_play_name_modifier,
3501
3531
  :dash_manifest_style,
3502
3532
  :destination,
3503
3533
  :destination_settings,
@@ -3697,8 +3727,10 @@ module Aws::MediaConvert
3697
3727
  #
3698
3728
  class DeleteQueueResponse < Aws::EmptyStructure; end
3699
3729
 
3700
- # Send an request with an empty body to the regional API endpoint to get
3701
- # your account API endpoint.
3730
+ # Send a request with an empty body to the regional API endpoint to get
3731
+ # your account API endpoint. Note that DescribeEndpoints is no longer
3732
+ # required. We recommend that you send your requests directly to the
3733
+ # regional endpoint instead.
3702
3734
  #
3703
3735
  # @!attribute [rw] max_results
3704
3736
  # Optional. Max number of endpoints, up to twenty, that will be
@@ -7638,16 +7670,46 @@ module Aws::MediaConvert
7638
7670
  # file, but you cannot specify both. For more information, see
7639
7671
  # https://docs.aws.amazon.com/mediaconvert/latest/ug/video-generator.html
7640
7672
  #
7673
+ # @!attribute [rw] channels
7674
+ # Specify the number of audio channels to include in your video
7675
+ # generator input. MediaConvert creates these audio channels as silent
7676
+ # audio within a single audio track. Enter an integer from 1 to 32.
7677
+ # @return [Integer]
7678
+ #
7641
7679
  # @!attribute [rw] duration
7642
- # Specify an integer value for Black video duration from 50 to
7643
- # 86400000 to generate a black video input for that many milliseconds.
7644
- # Required when you include Video generator.
7680
+ # Specify the duration, in milliseconds, for your video generator
7681
+ # input. Enter an integer from 50 to 86400000.
7682
+ # @return [Integer]
7683
+ #
7684
+ # @!attribute [rw] framerate_denominator
7685
+ # Specify the denominator of the fraction that represents the frame
7686
+ # rate for your video generator input. When you do, you must also
7687
+ # specify a value for Frame rate numerator. MediaConvert uses a
7688
+ # default frame rate of 29.97 when you leave Frame rate numerator and
7689
+ # Frame rate denominator blank.
7690
+ # @return [Integer]
7691
+ #
7692
+ # @!attribute [rw] framerate_numerator
7693
+ # Specify the numerator of the fraction that represents the frame rate
7694
+ # for your video generator input. When you do, you must also specify a
7695
+ # value for Frame rate denominator. MediaConvert uses a default frame
7696
+ # rate of 29.97 when you leave Frame rate numerator and Frame rate
7697
+ # denominator blank.
7698
+ # @return [Integer]
7699
+ #
7700
+ # @!attribute [rw] sample_rate
7701
+ # Specify the audio sample rate, in Hz, for the silent audio in your
7702
+ # video generator input. Enter an integer from 32000 to 48000.
7645
7703
  # @return [Integer]
7646
7704
  #
7647
7705
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/InputVideoGenerator AWS API Documentation
7648
7706
  #
7649
7707
  class InputVideoGenerator < Struct.new(
7650
- :duration)
7708
+ :channels,
7709
+ :duration,
7710
+ :framerate_denominator,
7711
+ :framerate_numerator,
7712
+ :sample_rate)
7651
7713
  SENSITIVE = []
7652
7714
  include Aws::Structure
7653
7715
  end
@@ -11648,6 +11710,76 @@ module Aws::MediaConvert
11648
11710
  include Aws::Structure
11649
11711
  end
11650
11712
 
11713
+ # Retrieve a JSON array that includes job details for up to twenty of
11714
+ # your most recent jobs. Optionally filter results further according to
11715
+ # input file, queue, or status. To retrieve the twenty next most recent
11716
+ # jobs, use the nextToken string returned with the array.
11717
+ #
11718
+ # @!attribute [rw] input_file
11719
+ # Optional. Provide your input file URL or your partial input file
11720
+ # name. The maximum length for an input file is 300 characters.
11721
+ # @return [String]
11722
+ #
11723
+ # @!attribute [rw] max_results
11724
+ # Optional. Number of jobs, up to twenty, that will be returned at one
11725
+ # time.
11726
+ # @return [Integer]
11727
+ #
11728
+ # @!attribute [rw] next_token
11729
+ # Optional. Use this string, provided with the response to a previous
11730
+ # request, to request the next batch of jobs.
11731
+ # @return [String]
11732
+ #
11733
+ # @!attribute [rw] order
11734
+ # Optional. When you request lists of resources, you can specify
11735
+ # whether they are sorted in ASCENDING or DESCENDING order. Default
11736
+ # varies by resource.
11737
+ # @return [String]
11738
+ #
11739
+ # @!attribute [rw] queue
11740
+ # Optional. Provide a queue name, or a queue ARN, to return only jobs
11741
+ # from that queue.
11742
+ # @return [String]
11743
+ #
11744
+ # @!attribute [rw] status
11745
+ # Optional. A job's status can be SUBMITTED, PROGRESSING, COMPLETE,
11746
+ # CANCELED, or ERROR.
11747
+ # @return [String]
11748
+ #
11749
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/SearchJobsRequest AWS API Documentation
11750
+ #
11751
+ class SearchJobsRequest < Struct.new(
11752
+ :input_file,
11753
+ :max_results,
11754
+ :next_token,
11755
+ :order,
11756
+ :queue,
11757
+ :status)
11758
+ SENSITIVE = []
11759
+ include Aws::Structure
11760
+ end
11761
+
11762
+ # Successful search jobs requests return a JSON array of jobs. If you
11763
+ # don't specify how they are ordered, you will receive the most
11764
+ # recently created first.
11765
+ #
11766
+ # @!attribute [rw] jobs
11767
+ # List of jobs.
11768
+ # @return [Array<Types::Job>]
11769
+ #
11770
+ # @!attribute [rw] next_token
11771
+ # Use this string to request the next batch of jobs.
11772
+ # @return [String]
11773
+ #
11774
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/SearchJobsResponse AWS API Documentation
11775
+ #
11776
+ class SearchJobsResponse < Struct.new(
11777
+ :jobs,
11778
+ :next_token)
11779
+ SENSITIVE = []
11780
+ include Aws::Structure
11781
+ end
11782
+
11651
11783
  # If your output group type is HLS, DASH, or Microsoft Smooth, use these
11652
11784
  # settings when doing DRM encryption with a SPEKE-compliant key
11653
11785
  # provider. If your output group type is CMAF, use the
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mediaconvert/customizations'
52
52
  # @!group service
53
53
  module Aws::MediaConvert
54
54
 
55
- GEM_VERSION = '1.129.0'
55
+ GEM_VERSION = '1.131.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -279,7 +279,11 @@ module Aws
279
279
  timecode_source: ("EMBEDDED" | "ZEROBASED" | "SPECIFIEDSTART")?,
280
280
  timecode_start: ::String?,
281
281
  video_generator: {
282
- duration: ::Integer?
282
+ channels: ::Integer?,
283
+ duration: ::Integer?,
284
+ framerate_denominator: ::Integer?,
285
+ framerate_numerator: ::Integer?,
286
+ sample_rate: ::Integer?
283
287
  }?,
284
288
  video_overlays: Array[
285
289
  {
@@ -420,6 +424,7 @@ module Aws
420
424
  base_url: ::String?,
421
425
  client_cache: ("DISABLED" | "ENABLED")?,
422
426
  codec_specification: ("RFC_6381" | "RFC_4281")?,
427
+ dash_i_frame_trick_play_name_modifier: ::String?,
423
428
  dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
424
429
  destination: ::String?,
425
430
  destination_settings: {
@@ -490,6 +495,7 @@ module Aws
490
495
  ]?,
491
496
  audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")?,
492
497
  base_url: ::String?,
498
+ dash_i_frame_trick_play_name_modifier: ::String?,
493
499
  dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
494
500
  destination: ::String?,
495
501
  destination_settings: {
@@ -1825,6 +1831,7 @@ module Aws
1825
1831
  base_url: ::String?,
1826
1832
  client_cache: ("DISABLED" | "ENABLED")?,
1827
1833
  codec_specification: ("RFC_6381" | "RFC_4281")?,
1834
+ dash_i_frame_trick_play_name_modifier: ::String?,
1828
1835
  dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
1829
1836
  destination: ::String?,
1830
1837
  destination_settings: {
@@ -1895,6 +1902,7 @@ module Aws
1895
1902
  ]?,
1896
1903
  audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")?,
1897
1904
  base_url: ::String?,
1905
+ dash_i_frame_trick_play_name_modifier: ::String?,
1898
1906
  dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
1899
1907
  destination: ::String?,
1900
1908
  destination_settings: {
@@ -3926,6 +3934,22 @@ module Aws
3926
3934
  ) -> _PutPolicyResponseSuccess
3927
3935
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutPolicyResponseSuccess
3928
3936
 
3937
+ interface _SearchJobsResponseSuccess
3938
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchJobsResponse]
3939
+ def jobs: () -> ::Array[Types::Job]
3940
+ def next_token: () -> ::String
3941
+ end
3942
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaConvert/Client.html#search_jobs-instance_method
3943
+ def search_jobs: (
3944
+ ?input_file: ::String,
3945
+ ?max_results: ::Integer,
3946
+ ?next_token: ::String,
3947
+ ?order: ("ASCENDING" | "DESCENDING"),
3948
+ ?queue: ::String,
3949
+ ?status: ("SUBMITTED" | "PROGRESSING" | "COMPLETE" | "CANCELED" | "ERROR")
3950
+ ) -> _SearchJobsResponseSuccess
3951
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchJobsResponseSuccess
3952
+
3929
3953
  interface _TagResourceResponseSuccess
3930
3954
  include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
3931
3955
  end
@@ -4264,6 +4288,7 @@ module Aws
4264
4288
  base_url: ::String?,
4265
4289
  client_cache: ("DISABLED" | "ENABLED")?,
4266
4290
  codec_specification: ("RFC_6381" | "RFC_4281")?,
4291
+ dash_i_frame_trick_play_name_modifier: ::String?,
4267
4292
  dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
4268
4293
  destination: ::String?,
4269
4294
  destination_settings: {
@@ -4334,6 +4359,7 @@ module Aws
4334
4359
  ]?,
4335
4360
  audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")?,
4336
4361
  base_url: ::String?,
4362
+ dash_i_frame_trick_play_name_modifier: ::String?,
4337
4363
  dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")?,
4338
4364
  destination: ::String?,
4339
4365
  destination_settings: {
data/sig/types.rbs CHANGED
@@ -352,6 +352,7 @@ module Aws::MediaConvert
352
352
  attr_accessor base_url: ::String
353
353
  attr_accessor client_cache: ("DISABLED" | "ENABLED")
354
354
  attr_accessor codec_specification: ("RFC_6381" | "RFC_4281")
355
+ attr_accessor dash_i_frame_trick_play_name_modifier: ::String
355
356
  attr_accessor dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")
356
357
  attr_accessor destination: ::String
357
358
  attr_accessor destination_settings: Types::DestinationSettings
@@ -534,6 +535,7 @@ module Aws::MediaConvert
534
535
  attr_accessor additional_manifests: ::Array[Types::DashAdditionalManifest]
535
536
  attr_accessor audio_channel_config_scheme_id_uri: ("MPEG_CHANNEL_CONFIGURATION" | "DOLBY_CHANNEL_CONFIGURATION")
536
537
  attr_accessor base_url: ::String
538
+ attr_accessor dash_i_frame_trick_play_name_modifier: ::String
537
539
  attr_accessor dash_manifest_style: ("BASIC" | "COMPACT" | "DISTINCT")
538
540
  attr_accessor destination: ::String
539
541
  attr_accessor destination_settings: Types::DestinationSettings
@@ -1203,7 +1205,11 @@ module Aws::MediaConvert
1203
1205
  end
1204
1206
 
1205
1207
  class InputVideoGenerator
1208
+ attr_accessor channels: ::Integer
1206
1209
  attr_accessor duration: ::Integer
1210
+ attr_accessor framerate_denominator: ::Integer
1211
+ attr_accessor framerate_numerator: ::Integer
1212
+ attr_accessor sample_rate: ::Integer
1207
1213
  SENSITIVE: []
1208
1214
  end
1209
1215
 
@@ -1904,6 +1910,22 @@ module Aws::MediaConvert
1904
1910
  SENSITIVE: []
1905
1911
  end
1906
1912
 
1913
+ class SearchJobsRequest
1914
+ attr_accessor input_file: ::String
1915
+ attr_accessor max_results: ::Integer
1916
+ attr_accessor next_token: ::String
1917
+ attr_accessor order: ("ASCENDING" | "DESCENDING")
1918
+ attr_accessor queue: ::String
1919
+ attr_accessor status: ("SUBMITTED" | "PROGRESSING" | "COMPLETE" | "CANCELED" | "ERROR")
1920
+ SENSITIVE: []
1921
+ end
1922
+
1923
+ class SearchJobsResponse
1924
+ attr_accessor jobs: ::Array[Types::Job]
1925
+ attr_accessor next_token: ::String
1926
+ SENSITIVE: []
1927
+ end
1928
+
1907
1929
  class SpekeKeyProvider
1908
1930
  attr_accessor certificate_arn: ::String
1909
1931
  attr_accessor resource_id: ::String
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.129.0
4
+ version: 1.131.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-05 00:00:00.000000000 Z
11
+ date: 2024-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core