ProjectionType
- class aws_cdk.aws_dynamodb.ProjectionType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)
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.