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

AwsDynamoDbTableProjection

import type { AwsDynamoDbTableProjection } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

For global and local secondary indexes, identifies the attributes that are copied from the table into the index.

interface AwsDynamoDbTableProjection {
NonKeyAttributes?: string[] | null;
ProjectionType?: string | null;
}

§Properties

§
NonKeyAttributes?: string[] | null
[src]

The nonkey attributes that are projected into the index. For each attribute, provide the attribute name.

§
ProjectionType?: string | null
[src]

The types of attributes that are projected into the index. Valid values are as follows:

  • ALL
    
  • INCLUDE
    
  • KEYS_ONLY