We are excited to announce the developer preview of our new API documentation for AWS SDK for JavaScript v3. Please follow instructions on the landing page to leave us your feedback.
Protected
Lists world generator jobs.
Use a bare-bones client and the command you need to make an API call.
import { RoboMakerClient, ListWorldGenerationJobsCommand } from "@aws-sdk/client-robomaker"; // ES Modules import// const { RoboMakerClient, ListWorldGenerationJobsCommand } = require("@aws-sdk/client-robomaker"); // CommonJS importconst client = new RoboMakerClient(config);const input = { // ListWorldGenerationJobsRequest nextToken: "STRING_VALUE", maxResults: Number("int"), filters: [ // Filters { // Filter name: "STRING_VALUE", values: [ // FilterValues "STRING_VALUE", ], }, ],};const command = new ListWorldGenerationJobsCommand(input);const response = await client.send(command);// { // ListWorldGenerationJobsResponse// worldGenerationJobSummaries: [ // WorldGenerationJobSummaries // required// { // WorldGenerationJobSummary// arn: "STRING_VALUE",// template: "STRING_VALUE",// createdAt: new Date("TIMESTAMP"),// status: "STRING_VALUE",// worldCount: { // WorldCount// floorplanCount: Number("int"),// interiorCountPerFloorplan: Number("int"),// },// succeededWorldCount: Number("int"),// failedWorldCount: Number("int"),// },// ],// nextToken: "STRING_VALUE",// };
ListWorldGenerationJobsCommandInput
ListWorldGenerationJobsCommandOutput
input
response
config
InternalServerException (server fault)
AWS RoboMaker experienced a service issue. Try your call again.
InvalidParameterException (client fault)
A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
ThrottlingException (client fault)
AWS RoboMaker is temporarily unable to process the request. Try your call again.
RoboMakerServiceException
Base exception class for all service exceptions from RoboMaker service.
Readonly
Static
Lists world generator jobs.
Example
Use a bare-bones client and the command you need to make an API call.
Param
ListWorldGenerationJobsCommandInput
Returns
ListWorldGenerationJobsCommandOutput
See
input
shape.response
shape.config
shape.Throws
InternalServerException (server fault)
AWS RoboMaker experienced a service issue. Try your call again.
Throws
InvalidParameterException (client fault)
A parameter specified in a request is not valid, is unsupported, or cannot be used. The returned message provides an explanation of the error value.
Throws
ThrottlingException (client fault)
AWS RoboMaker is temporarily unable to process the request. Try your call again.
Throws
RoboMakerServiceException
Base exception class for all service exceptions from RoboMaker service.