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

DescribeLimitsOutput

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

Represents the output of a DescribeLimits operation.

interface DescribeLimitsOutput {
AccountMaxReadCapacityUnits?: number | null;
AccountMaxWriteCapacityUnits?: number | null;
TableMaxReadCapacityUnits?: number | null;
TableMaxWriteCapacityUnits?: number | null;
}

§Properties

§
AccountMaxReadCapacityUnits?: number | null
[src]

The maximum total read capacity units that your account allows you to provision across all of your tables in this Region.

§
AccountMaxWriteCapacityUnits?: number | null
[src]

The maximum total write capacity units that your account allows you to provision across all of your tables in this Region.

§
TableMaxReadCapacityUnits?: number | null
[src]

The maximum read capacity units that your account allows you to provision for a new table that you are creating in this Region, including the read capacity units provisioned for its global secondary indexes (GSIs).

§
TableMaxWriteCapacityUnits?: number | null
[src]

The maximum write capacity units that your account allows you to provision for a new table that you are creating in this Region, including the write capacity units provisioned for its global secondary indexes (GSIs).