Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Capacity

import type { Capacity } from "https://aws-api.deno.dev/v0.3/services/dynamodb.ts?docs=full";

Represents the amount of provisioned throughput capacity consumed on a table or an index.

interface Capacity {
CapacityUnits?: number | null;
ReadCapacityUnits?: number | null;
WriteCapacityUnits?: number | null;
}

§Properties

§
CapacityUnits?: number | null
[src]

The total number of capacity units consumed on a table or an index.

§
ReadCapacityUnits?: number | null
[src]

The total number of read capacity units consumed on a table or an index.

§
WriteCapacityUnits?: number | null
[src]

The total number of write capacity units consumed on a table or an index.