Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

Class DeleteRobotCommandProtected

Deprecated

Deletes a robot.

This API will no longer be supported as of May 2, 2022. Use it to remove resources that were created for Deployment Service.

Example

Use a bare-bones client and the command you need to make an API call.

import { RoboMakerClient, DeleteRobotCommand } from "@aws-sdk/client-robomaker"; // ES Modules import
// const { RoboMakerClient, DeleteRobotCommand } = require("@aws-sdk/client-robomaker"); // CommonJS import
const client = new RoboMakerClient(config);
const input = { // DeleteRobotRequest
robot: "STRING_VALUE", // required
};
const command = new DeleteRobotCommand(input);
const response = await client.send(command);
// {};

Param

DeleteRobotCommandInput

Returns

DeleteRobotCommandOutput

See

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.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods