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

ReplicaGlobalSecondaryIndexAutoScalingDescription

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

Represents the auto scaling configuration for a replica global secondary index.

interface ReplicaGlobalSecondaryIndexAutoScalingDescription {
IndexName?: string | null;
IndexStatus?: IndexStatus | null;
ProvisionedReadCapacityAutoScalingSettings?: AutoScalingSettingsDescription | null;
ProvisionedWriteCapacityAutoScalingSettings?: AutoScalingSettingsDescription | null;
}

§Properties

§
IndexName?: string | null
[src]

The name of the global secondary index.

§
IndexStatus?: IndexStatus | null
[src]

The current state of the replica global secondary index:

  • CREATING - The index is being created.
  • UPDATING - The index is being updated.
  • DELETING - The index is being deleted.
  • ACTIVE - The index is ready for use.
§
ProvisionedReadCapacityAutoScalingSettings?: AutoScalingSettingsDescription | null
[src]
§
ProvisionedWriteCapacityAutoScalingSettings?: AutoScalingSettingsDescription | null
[src]