RoboMaker / Client / list_world_export_jobs
list_world_export_jobs#
- RoboMaker.Client.list_world_export_jobs(**kwargs)#
Warning
End of support notice: On September 10, 2025, Amazon Web Services will discontinue support for Amazon Web Services RoboMaker. After September 10, 2025, you will no longer be able to access the Amazon Web Services RoboMaker console or Amazon Web Services RoboMaker resources. For more information on transitioning to Batch to help run containerized simulations, visit https://aws.amazon.com/blogs/hpc/run-simulations-using-multiple-containers-in-a-single-aws-batch-job/.
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
nextToken
parameter value is set to a token. To retrieve the next set of results, callListWorldExportJobs
again and assign that token to the request object’snextToken
parameter. If there are no remaining results, the previous response object’s NextToken parameter is set to null.maxResults (integer) – When this parameter is used,
ListWorldExportJobs
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListWorldExportJobs
request with the returnednextToken
value. This value can be between 1 and 100. If this parameter is not used, thenListWorldExportJobs
returns up to 100 results and anextToken
value if applicable.filters (list) –
Optional filters to limit results. You can use
generationJobId
andtemplateId
.(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
failureCode
for 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
s3Bucket
where output files will be placed.
nextToken (string) –
If the previous paginated request did not return all of the remaining results, the response object’s
nextToken
parameter value is set to a token. To retrieve the next set of results, callListWorldExportJobsRequest
again and assign that token to the request object’snextToken
parameter. If there are no remaining results, the previous response object’s NextToken parameter is set to null.
Exceptions