Returned when the service is having trouble handling the load.

The client application should retry the request with exponential backoff up to a point where further delay is unacceptable.
interface OverCapacityError {
    code: "OverCapacity";
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

code: "OverCapacity"
message: string

Plain text description of the error.

Generated using TypeDoc