RoboMaker / Client / list_world_export_jobs
list_world_export_jobs¶
- RoboMaker.Client.list_world_export_jobs(**kwargs)¶
Lists world export jobs.
See also: AWS API Documentation
Request Syntax
response = client.list_world_export_jobs( nextToken='string', maxResults=123, filters=[ { 'name': 'string', 'values': [ 'string', ] }, ] )
- Parameters:
nextToken (string) – If the previous paginated request did not return all of the remaining results, the response object’s
nextTokenparameter value is set to a token. To retrieve the next set of results, callListWorldExportJobsagain and assign that token to the request object’snextTokenparameter. If there are no remaining results, the previous response object’s NextToken parameter is set to null.maxResults (integer) – When this parameter is used,
ListWorldExportJobsonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherListWorldExportJobsrequest with the returnednextTokenvalue. This value can be between 1 and 100. If this parameter is not used, thenListWorldExportJobsreturns up to 100 results and anextTokenvalue if applicable.filters (list) –
Optional filters to limit results. You can use
generationJobIdandtemplateId.(dict) –
Information about a filter.
name (string) –
The name of the filter.
values (list) –
A list of values.
(string) –
- Return type:
dict
- Returns:
Response Syntax
{ 'worldExportJobSummaries': [ { 'arn': 'string', 'status': 'Pending'|'Running'|'Completed'|'Failed'|'Canceling'|'Canceled', 'createdAt': datetime(2015, 1, 1), 'worlds': [ 'string', ], 'outputLocation': { 's3Bucket': 'string', 's3Prefix': 'string' } }, ], 'nextToken': 'string' }
Response Structure
(dict) –
worldExportJobSummaries (list) –
Summary information for world export jobs.
(dict) –
Information about a world export job.
arn (string) –
The Amazon Resource Name (ARN) of the world export job.
status (string) –
The status of the world export job.
Pending
The world export job request is pending.
Running
The world export job is running.
Completed
The world export job completed.
Failed
The world export job failed. See
failureCodefor more information.Canceled
The world export job was cancelled.
Canceling
The world export job is being cancelled.
createdAt (datetime) –
The time, in milliseconds since the epoch, when the world export job was created.
worlds (list) –
A list of worlds.
(string) –
outputLocation (dict) –
The output location.
s3Bucket (string) –
The S3 bucket for output.
s3Prefix (string) –
The S3 folder in the
s3Bucketwhere output files will be placed.
nextToken (string) –
If the previous paginated request did not return all of the remaining results, the response object’s
nextTokenparameter value is set to a token. To retrieve the next set of results, callListWorldExportJobsRequestagain and assign that token to the request object’snextTokenparameter. If there are no remaining results, the previous response object’s NextToken parameter is set to null.
Exceptions