Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.

interface ThroughputInformation {
    blocks: number;
    query: number;
    read: number;
    write: number;
}

Properties

Properties

blocks: number

A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity.

query: number

Provisioned global queries capacity in operations per second.

read: number

Provisioned reads capacity in operations per second.

write: number

Provisioned writes capacity in operations per second.

Generated using TypeDoc