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

CreateGlobalSecondaryIndexAction

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

Represents a new global secondary index to be added to an existing table.

interface CreateGlobalSecondaryIndexAction {
IndexName: string;
KeySchema: KeySchemaElement[];
Projection: Projection;
ProvisionedThroughput?: ProvisionedThroughput | null;
}

§Properties

§
IndexName: string
[src]

The name of the global secondary index to be created.

§

The key schema for the global secondary index.

§
Projection: Projection
[src]

Represents attributes that are copied (projected) from the table into an index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.

§
ProvisionedThroughput?: ProvisionedThroughput | null
[src]

Represents the provisioned throughput settings for the specified global secondary index.

For current minimum and maximum provisioned throughput values, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.