Skip to content

Commit 07eaf1c

Browse files
author
AWS
committed
AWS Elemental MediaConvert Update: 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.
1 parent 2177a76 commit 07eaf1c

File tree

3 files changed

+110
-1
lines changed

3 files changed

+110
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Elemental MediaConvert",
4+
"contributor": "",
5+
"description": "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."
6+
}

services/mediaconvert/src/main/resources/codegen-resources/paginators-1.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
"limit_key": "MaxResults",
1313
"result_key": "Jobs"
1414
},
15+
"SearchJobs": {
16+
"input_token": "NextToken",
17+
"output_token": "NextToken",
18+
"limit_key": "MaxResults",
19+
"result_key": "Jobs"
20+
},
1521
"ListPresets": {
1622
"input_token": "NextToken",
1723
"output_token": "NextToken",

services/mediaconvert/src/main/resources/codegen-resources/service-2.json

Lines changed: 98 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@
461461
"documentation": "The service couldn't complete your request because there is a conflict with the current state of the resource."
462462
}
463463
],
464-
"documentation": "Send an request with an empty body to the regional API endpoint to get your account API endpoint.",
464+
"documentation": "Send a request with an empty body to the regional API endpoint to get your account API endpoint. Note that DescribeEndpoints is no longer required. We recommend that you send your requests directly to the regional endpoint instead.",
465465
"deprecated": true,
466466
"deprecatedMessage": "DescribeEndpoints and account specific endpoints are no longer required. We recommend that you send your requests directly to the regional endpoint instead."
467467
},
@@ -957,6 +957,47 @@
957957
],
958958
"documentation": "Create or change your policy. For more information about policies, see the user guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html"
959959
},
960+
"SearchJobs": {
961+
"name": "SearchJobs",
962+
"http": {
963+
"method": "GET",
964+
"requestUri": "/2017-08-29/search",
965+
"responseCode": 200
966+
},
967+
"input": {
968+
"shape": "SearchJobsRequest"
969+
},
970+
"output": {
971+
"shape": "SearchJobsResponse"
972+
},
973+
"errors": [
974+
{
975+
"shape": "BadRequestException",
976+
"documentation": "The service can't process your request because of a problem in the request. Please check your request form and syntax."
977+
},
978+
{
979+
"shape": "InternalServerErrorException",
980+
"documentation": "The service encountered an unexpected condition and can't fulfill your request."
981+
},
982+
{
983+
"shape": "ForbiddenException",
984+
"documentation": "You don't have permissions for this action with the credentials you sent."
985+
},
986+
{
987+
"shape": "NotFoundException",
988+
"documentation": "The resource you requested doesn't exist."
989+
},
990+
{
991+
"shape": "TooManyRequestsException",
992+
"documentation": "Too many requests have been sent in too short of a time. The service limits the rate at which it will accept requests."
993+
},
994+
{
995+
"shape": "ConflictException",
996+
"documentation": "The service couldn't complete your request because there is a conflict with the current state of the resource."
997+
}
998+
],
999+
"documentation": "Retrieve a JSON array that includes job details for up to twenty of your most recent jobs. Optionally filter results further according to input file, queue, or status. To retrieve the twenty next most recent jobs, use the nextToken string returned with the array."
1000+
},
9601001
"TagResource": {
9611002
"name": "TagResource",
9621003
"http": {
@@ -11423,6 +11464,62 @@
1142311464
},
1142411465
"documentation": "Settings related to SCC captions. SCC is a sidecar format that holds captions in a file that is separate from the video container. Set up sidecar captions in the same output group, but different output from your video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/scc-srt-output-captions.html."
1142511466
},
11467+
"SearchJobsRequest": {
11468+
"type": "structure",
11469+
"members": {
11470+
"InputFile": {
11471+
"shape": "__string",
11472+
"locationName": "inputFile",
11473+
"documentation": "Optional. Provide your input file URL or your partial input file name. The maximum length for an input file is 300 characters.",
11474+
"location": "querystring"
11475+
},
11476+
"MaxResults": {
11477+
"shape": "__integerMin1Max20",
11478+
"locationName": "maxResults",
11479+
"documentation": "Optional. Number of jobs, up to twenty, that will be returned at one time.",
11480+
"location": "querystring"
11481+
},
11482+
"NextToken": {
11483+
"shape": "__string",
11484+
"locationName": "nextToken",
11485+
"documentation": "Optional. Use this string, provided with the response to a previous request, to request the next batch of jobs.",
11486+
"location": "querystring"
11487+
},
11488+
"Order": {
11489+
"shape": "Order",
11490+
"locationName": "order",
11491+
"documentation": "Optional. When you request lists of resources, you can specify whether they are sorted in ASCENDING or DESCENDING order. Default varies by resource.",
11492+
"location": "querystring"
11493+
},
11494+
"Queue": {
11495+
"shape": "__string",
11496+
"locationName": "queue",
11497+
"documentation": "Optional. Provide a queue name, or a queue ARN, to return only jobs from that queue.",
11498+
"location": "querystring"
11499+
},
11500+
"Status": {
11501+
"shape": "JobStatus",
11502+
"locationName": "status",
11503+
"documentation": "Optional. A job's status can be SUBMITTED, PROGRESSING, COMPLETE, CANCELED, or ERROR.",
11504+
"location": "querystring"
11505+
}
11506+
}
11507+
},
11508+
"SearchJobsResponse": {
11509+
"type": "structure",
11510+
"members": {
11511+
"Jobs": {
11512+
"shape": "__listOfJob",
11513+
"locationName": "jobs",
11514+
"documentation": "List of jobs."
11515+
},
11516+
"NextToken": {
11517+
"shape": "__string",
11518+
"locationName": "nextToken",
11519+
"documentation": "Use this string to request the next batch of jobs."
11520+
}
11521+
}
11522+
},
1142611523
"SimulateReservedQueue": {
1142711524
"type": "string",
1142811525
"documentation": "Enable this setting when you run a test job to estimate how many reserved transcoding slots (RTS) you need. When this is enabled, MediaConvert runs your job from an on-demand queue with similar performance to what you will see with one RTS in a reserved queue. This setting is disabled by default.",

0 commit comments

Comments
 (0)