Cancels a simulation job batch. When you cancel a simulation job batch, you are also cancelling all of the active simulation jobs created as part of the batch.
Use a bare-bones client and the command you need to make an API call.
import { RoboMakerClient, CancelSimulationJobBatchCommand } from "@aws-sdk/client-robomaker"; // ES Modules import // const { RoboMakerClient, CancelSimulationJobBatchCommand } = require("@aws-sdk/client-robomaker"); // CommonJS import const client = new RoboMakerClient(config); const command = new CancelSimulationJobBatchCommand(input); const response = await client.send(command);
CancelSimulationJobBatchCommandInput for command's input shape.
input
CancelSimulationJobBatchCommandOutput for command's response shape.
response
config for RoboMakerClient's config shape.
config
Cancels a simulation job batch. When you cancel a simulation job batch, you are also cancelling all of the active simulation jobs created as part of the batch.
Use a bare-bones client and the command you need to make an API call.
import { RoboMakerClient, CancelSimulationJobBatchCommand } from "@aws-sdk/client-robomaker"; // ES Modules import // const { RoboMakerClient, CancelSimulationJobBatchCommand } = require("@aws-sdk/client-robomaker"); // CommonJS import const client = new RoboMakerClient(config); const command = new CancelSimulationJobBatchCommand(input); const response = await client.send(command);
CancelSimulationJobBatchCommandInput for command's
input
shape.CancelSimulationJobBatchCommandOutput for command's
response
shape.config for RoboMakerClient's
config
shape.