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

ReplicaGlobalSecondaryIndexSettingsUpdate

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

Represents the settings of a global secondary index for a global table that will be modified.

interface ReplicaGlobalSecondaryIndexSettingsUpdate {
IndexName: string;
ProvisionedReadCapacityAutoScalingSettingsUpdate?: AutoScalingSettingsUpdate | null;
ProvisionedReadCapacityUnits?: number | null;
}

§Properties

§
IndexName: string
[src]

The name of the global secondary index. The name must be unique among all other indexes on this table.

§
ProvisionedReadCapacityAutoScalingSettingsUpdate?: AutoScalingSettingsUpdate | null
[src]

Auto scaling settings for managing a global secondary index replica's read capacity units.

§
ProvisionedReadCapacityUnits?: number | null
[src]

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.