ProjectionType
- class aws_cdk.aws_dynamodb.ProjectionType(value)
Bases:
Enum
The set of attributes that are projected into the index.
Attributes
- ALL
All of the table attributes are projected into the index.
- INCLUDE
Only the specified table attributes are projected into the index.
The list of projected attributes is in
nonKeyAttributes
.
- KEYS_ONLY
Only the index and primary keys are projected into the index.