import * as __aws_sdk_types from '@aws-sdk/types'; /** *

Represents the output of a DescribeLimits operation.

*/ export interface DescribeLimitsOutput { /** *

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

*/ AccountMaxReadCapacityUnits?: number; /** *

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

*/ AccountMaxWriteCapacityUnits?: number; /** *

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).

*/ TableMaxReadCapacityUnits?: number; /** *

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).

*/ TableMaxWriteCapacityUnits?: number; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }