Jump to Content

Class DeleteSystemInstanceCommandProtected

Deprecated

Deletes a system instance. Only system instances that have never been deployed, or that have been undeployed can be deleted.

Users can create a new system instance that has the same ID as a deleted system instance.

Example

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

import { IoTThingsGraphClient, DeleteSystemInstanceCommand } from "@aws-sdk/client-iotthingsgraph"; // ES Modules import
// const { IoTThingsGraphClient, DeleteSystemInstanceCommand } = require("@aws-sdk/client-iotthingsgraph"); // CommonJS import
const client = new IoTThingsGraphClient(config);
const input = { // DeleteSystemInstanceRequest
id: "STRING_VALUE",
};
const command = new DeleteSystemInstanceCommand(input);
const response = await client.send(command);

Param

DeleteSystemInstanceCommandInput

Returns

DeleteSystemInstanceCommandOutput

See

Throws

InternalFailureException (server fault)

Throws

InvalidRequestException (client fault)

Throws

ResourceInUseException (client fault)

Throws

ThrottlingException (client fault)

Hierarchy

Constructors

Properties

Methods