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

CreateReplicationGroupMemberAction

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

Represents a replica to be created.

interface CreateReplicationGroupMemberAction {
GlobalSecondaryIndexes?: ReplicaGlobalSecondaryIndex[] | null;
KMSMasterKeyId?: string | null;
ProvisionedThroughputOverride?: ProvisionedThroughputOverride | null;
RegionName: string;
TableClassOverride?: TableClass | null;
}

§Properties

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

Replica-specific global secondary index settings.

§
KMSMasterKeyId?: string | null
[src]

The KMS key that should be used for KMS encryption in the new replica. To specify a key, use its key ID, Amazon Resource Name (ARN), alias name, or alias ARN. Note that you should only provide this parameter if the key is different from the default DynamoDB KMS key alias/aws/dynamodb.

§
ProvisionedThroughputOverride?: ProvisionedThroughputOverride | null
[src]

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

§
RegionName: string
[src]

The Region where the new replica will be created.

§
TableClassOverride?: TableClass | null
[src]

Replica-specific table class. If not specified, uses the source table's table class.