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

ReplicaAutoScalingDescription

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

Represents the auto scaling settings of the replica.

interface ReplicaAutoScalingDescription {
GlobalSecondaryIndexes?: ReplicaGlobalSecondaryIndexAutoScalingDescription[] | null;
RegionName?: string | null;
ReplicaProvisionedReadCapacityAutoScalingSettings?: AutoScalingSettingsDescription | null;
ReplicaProvisionedWriteCapacityAutoScalingSettings?: AutoScalingSettingsDescription | null;
ReplicaStatus?: ReplicaStatus | null;
}

§Properties

§

Replica-specific global secondary index auto scaling settings.

§
RegionName?: string | null
[src]

The Region where the replica exists.

§
ReplicaProvisionedReadCapacityAutoScalingSettings?: AutoScalingSettingsDescription | null
[src]
§
ReplicaProvisionedWriteCapacityAutoScalingSettings?: AutoScalingSettingsDescription | null
[src]
§
ReplicaStatus?: ReplicaStatus | null
[src]

The current state of the replica:

  • CREATING - The replica is being created.
  • UPDATING - The replica is being updated.
  • DELETING - The replica is being deleted.
  • ACTIVE - The replica is ready for use.