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

ReplicaDescription

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

Contains the details of the replica.

interface ReplicaDescription {
GlobalSecondaryIndexes?: ReplicaGlobalSecondaryIndexDescription[] | null;
KMSMasterKeyId?: string | null;
ProvisionedThroughputOverride?: ProvisionedThroughputOverride | null;
RegionName?: string | null;
ReplicaInaccessibleDateTime?: Date | number | null;
ReplicaStatus?: ReplicaStatus | null;
ReplicaStatusDescription?: string | null;
ReplicaStatusPercentProgress?: string | null;
ReplicaTableClassSummary?: TableClassSummary | null;
}

§Properties

§
GlobalSecondaryIndexes?: ReplicaGlobalSecondaryIndexDescription[] | null
[src]

Replica-specific global secondary index settings.

§
KMSMasterKeyId?: string | null
[src]

The KMS key of the replica that will be used for KMS encryption.

§
ProvisionedThroughputOverride?: ProvisionedThroughputOverride | null
[src]

Replica-specific provisioned throughput. If not described, uses the source table's provisioned throughput settings.

§
RegionName?: string | null
[src]

The name of the Region.

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

The time at which the replica was first detected as inaccessible. To determine cause of inaccessibility check the ReplicaStatus property.

§
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.
  • REGION_DISABLED - The replica is inaccessible because the Amazon Web Services Region has been disabled. Note: If the Amazon Web Services Region remains inaccessible for more than 20 hours, DynamoDB will remove this replica from the replication group. The replica will not be deleted and replication will stop from and to this region.
  • INACCESSIBLE_ENCRYPTION_CREDENTIALS - The KMS key used to encrypt the table is inaccessible. Note: If the KMS key remains inaccessible for more than 20 hours, DynamoDB will remove this replica from the replication group. The replica will not be deleted and replication will stop from and to this region.
§
ReplicaStatusDescription?: string | null
[src]

Detailed information about the replica status.

§
ReplicaStatusPercentProgress?: string | null
[src]

Specifies the progress of a Create, Update, or Delete action on the replica as a percentage.

§
ReplicaTableClassSummary?: TableClassSummary | null
[src]