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

ProvisionedThroughputDescription

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

Represents the provisioned throughput settings for the table, consisting of read and write capacity units, along with data about increases and decreases.

interface ProvisionedThroughputDescription {
LastDecreaseDateTime?: Date | number | null;
LastIncreaseDateTime?: Date | number | null;
NumberOfDecreasesToday?: number | null;
ReadCapacityUnits?: number | null;
WriteCapacityUnits?: number | null;
}

§Properties

§
LastDecreaseDateTime?: Date | number | null
[src]

The date and time of the last provisioned throughput decrease for this table.

§
LastIncreaseDateTime?: Date | number | null
[src]

The date and time of the last provisioned throughput increase for this table.

§
NumberOfDecreasesToday?: number | null
[src]

The number of provisioned throughput decreases for this table during this UTC calendar day. For current maximums on provisioned throughput decreases, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.

§
ReadCapacityUnits?: number | null
[src]

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException. Eventually consistent reads require less effort than strongly consistent reads, so a setting of 50 ReadCapacityUnits per second provides 100 eventually consistent ReadCapacityUnits per second.

§
WriteCapacityUnits?: number | null
[src]

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.