|
461 | 461 | "documentation": "The service couldn't complete your request because there is a conflict with the current state of the resource."
|
462 | 462 | }
|
463 | 463 | ],
|
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.", |
465 | 465 | "deprecated": true,
|
466 | 466 | "deprecatedMessage": "DescribeEndpoints and account specific endpoints are no longer required. We recommend that you send your requests directly to the regional endpoint instead."
|
467 | 467 | },
|
|
957 | 957 | ],
|
958 | 958 | "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"
|
959 | 959 | },
|
| 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 | + }, |
960 | 1001 | "TagResource": {
|
961 | 1002 | "name": "TagResource",
|
962 | 1003 | "http": {
|
|
11423 | 11464 | },
|
11424 | 11465 | "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."
|
11425 | 11466 | },
|
| 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 | + }, |
11426 | 11523 | "SimulateReservedQueue": {
|
11427 | 11524 | "type": "string",
|
11428 | 11525 | "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