Amazon DynamoDB Table Projection
Attributes that are copied (projected) from the source table into the index. These attributes are additions to the primary key attributes and index key attributes, which are automatically projected.
Projection is a property of the GlobalSecondaryIndex and LocalSecondaryIndex property types.
Syntax
JSON
{ "NonKeyAttributes" : [String, ...], "ProjectionType" :String}
YAML
NonKeyAttributes: -StringProjectionType:String
Properties
For more information about each property, including constraints, see Projection in the Amazon DynamoDB API Reference.
NonKeyAttributes-
The non-key attribute names that are projected into the index.
For local secondary indexes, the total count of
NonKeyAttributessummed across all of the local secondary indexes must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes in determining the total. This limit does not apply for secondary indexes with a ProjectionType ofKEYS_ONLYorALL.Required: No
Type: List of String values
ProjectionType-
The set of attributes that are projected into the index:
Required: Yes
Type: String
