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

ProvisionedThroughput

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

Represents the provisioned throughput settings for a specified table or index. The settings can be modified using the UpdateTable operation.

For current minimum and maximum provisioned throughput values, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.

interface ProvisionedThroughput {
ReadCapacityUnits: number;
WriteCapacityUnits: number;
}

§Properties

§
ReadCapacityUnits: number
[src]

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

If read/write capacity mode is PAY_PER_REQUEST the value is set to 0.

§
WriteCapacityUnits: number
[src]

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.

If read/write capacity mode is PAY_PER_REQUEST the value is set to 0.