ConsumedCapacity
import type { ConsumedCapacity } from "https://aws-api-gyr5wj9zj0fg.deno.dev/v0.2/services/dynamodb.ts";interface ConsumedCapacity {
CapacityUnits?: number | null;
GlobalSecondaryIndexes?: {} | null;
[key: string]: Capacity | null | undefined;
LocalSecondaryIndexes?: {} | null;
[key: string]: Capacity | null | undefined;
ReadCapacityUnits?: number | null;
Table?: Capacity | null;
TableName?: string | null;
WriteCapacityUnits?: number | null;
}