We are excited to announce our new API Documentation.
Protected
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.
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 importconst client = new IoTThingsGraphClient(config);const input = { // DeleteSystemInstanceRequest id: "STRING_VALUE",};const command = new DeleteSystemInstanceCommand(input);const response = await client.send(command);// {};
DeleteSystemInstanceCommandInput
DeleteSystemInstanceCommandOutput
input
response
config
InternalFailureException (server fault)
InvalidRequestException (client fault)
ResourceInUseException (client fault)
ThrottlingException (client fault)
IoTThingsGraphServiceException
Base exception class for all service exceptions from IoTThingsGraph service.
Readonly
Static
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.
Param
DeleteSystemInstanceCommandInput
Returns
DeleteSystemInstanceCommandOutput
See
input
shape.response
shape.config
shape.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.