Protected
Disable Event Store.
Use a bare-bones client and the command you need to make an API call.
import { CoresClient, DisableEventStoreCommand } from "@stedi/sdk-client-cores"; // ES Modules import// const { CoresClient, DisableEventStoreCommand } = require("@stedi/sdk-client-cores"); // CommonJS importconst client = new CoresClient(config);const input = { // DisableEventStoreInput idempotencyKey: "STRING_VALUE",};const command = new DisableEventStoreCommand(input);const response = await client.send(command);// { // DisableEventStoreOutput// resourceDetail: { // UpdateResourceDetail// idempotencyKey: "STRING_VALUE", // required// },// };
DisableEventStoreCommandInput
DisableEventStoreCommandOutput
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
Disable Event Store.
Example
Use a bare-bones client and the command you need to make an API call.
Param
DisableEventStoreCommandInput
Returns
DisableEventStoreCommandOutput
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.