Class UpdateEventStoreCommandProtected

Update Event Store.

Example

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

import { CoresClient, UpdateEventStoreCommand } from "@stedi/sdk-client-cores"; // ES Modules import
// const { CoresClient, UpdateEventStoreCommand } = require("@stedi/sdk-client-cores"); // CommonJS import
const client = new CoresClient(config);
const input = { // UpdateEventStoreInput
idempotencyKey: "STRING_VALUE",
};
const command = new UpdateEventStoreCommand(input);
const response = await client.send(command);
// { // UpdateEventStoreOutput
// resourceDetail: { // UpdateResourceDetail
// idempotencyKey: "STRING_VALUE", // required
// },
// };

Param

UpdateEventStoreCommandInput

Returns

UpdateEventStoreCommandOutput

See

Throws

ResourceNotFoundException (client fault)

Throws

ResourceUnderChangeException (client fault)

Throws

ServiceException (server fault)

Throws

CoresServiceException

Base exception class for all service exceptions from Cores service.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods

  • Returns EndpointParameterInstructions