RoboMaker / Client / list_simulation_jobs
list_simulation_jobs#
- RoboMaker.Client.list_simulation_jobs(**kwargs)#
Returns a list of simulation jobs. You can optionally provide filters to retrieve specific simulation jobs.
See also: AWS API Documentation
Request Syntax
response = client.list_simulation_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, callListSimulationJobs
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,
ListSimulationJobs
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherListSimulationJobs
request with the returnednextToken
value. This value can be between 1 and 1000. If this parameter is not used, thenListSimulationJobs
returns up to 1000 results and anextToken
value if applicable.filters (list) –
Optional filters to limit results.
The filter names
status
andsimulationApplicationName
androbotApplicationName
are supported. When filtering, you must use the complete value of the filtered item. You can use up to three filters, but they must be for the same named item. For example, if you are looking for items with the statusPreparing
or the statusRunning
.(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
{ 'simulationJobSummaries': [ { 'arn': 'string', 'lastUpdatedAt': datetime(2015, 1, 1), 'name': 'string', 'status': 'Pending'|'Preparing'|'Running'|'Restarting'|'Completed'|'Failed'|'RunningFailed'|'Terminating'|'Terminated'|'Canceled', 'simulationApplicationNames': [ 'string', ], 'robotApplicationNames': [ 'string', ], 'dataSourceNames': [ 'string', ], 'computeType': 'CPU'|'GPU_AND_CPU' }, ], 'nextToken': 'string' }
Response Structure
(dict) –
simulationJobSummaries (list) –
A list of simulation job summaries that meet the criteria of the request.
(dict) –
Summary information for a simulation job.
arn (string) –
The Amazon Resource Name (ARN) of the simulation job.
lastUpdatedAt (datetime) –
The time, in milliseconds since the epoch, when the simulation job was last updated.
name (string) –
The name of the simulation job.
status (string) –
The status of the simulation job.
simulationApplicationNames (list) –
A list of simulation job simulation application names.
(string) –
robotApplicationNames (list) –
A list of simulation job robot application names.
(string) –
dataSourceNames (list) –
The names of the data sources.
(string) –
computeType (string) –
The compute type for the simulation job summary.
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, callListSimulationJobs
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
RoboMaker.Client.exceptions.InvalidParameterException
RoboMaker.Client.exceptions.InternalServerException
RoboMaker.Client.exceptions.ThrottlingException