Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

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)

Throws

IoTThingsGraphServiceException

Base exception class for all service exceptions from IoTThingsGraph service.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods