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

AttributeDefinition

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

Represents an attribute for describing the key schema for the table and indexes.

interface AttributeDefinition {
AttributeName: string;
AttributeType: ScalarAttributeType;
}

§Properties

§
AttributeName: string
[src]

A name for the attribute.

§

The data type for the attribute, where:

  • S - the attribute is of type String
  • N - the attribute is of type Number
  • B - the attribute is of type Binary