Protected
Delete an existing core.
Use a bare-bones client and the command you need to make an API call.
import { CoresClient, DeleteCoreCommand } from "@stedi/sdk-client-cores"; // ES Modules import// const { CoresClient, DeleteCoreCommand } = require("@stedi/sdk-client-cores"); // CommonJS importconst client = new CoresClient(config);const input = { // DeleteCoreInput idempotencyKey: "STRING_VALUE", coreName: "STRING_VALUE", // required};const command = new DeleteCoreCommand(input);const response = await client.send(command);// { // DeleteCoreOutput// coreName: "STRING_VALUE", // required// resourceDetail: { // DeleteResourceDetail// idempotencyKey: "STRING_VALUE", // required// },// };
DeleteCoreCommandInput
DeleteCoreCommandOutput
input
response
config
ResourceNotFoundException (client fault)
ResourceUnderChangeException (client fault)
ServiceException (server fault)
CoresServiceException
Base exception class for all service exceptions from Cores service.
Readonly
Static
Delete an existing core.
Example
Use a bare-bones client and the command you need to make an API call.
Param
DeleteCoreCommandInput
Returns
DeleteCoreCommandOutput
See
input
shape.response
shape.config
shape.Throws
ResourceNotFoundException (client fault)
Throws
ResourceUnderChangeException (client fault)
Throws
ServiceException (server fault)
Throws
CoresServiceException
Base exception class for all service exceptions from Cores service.