enum ProjectionType
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.DynamoDB.ProjectionType |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#ProjectionType |
![]() | software.amazon.awscdk.services.dynamodb.ProjectionType |
![]() | aws_cdk.aws_dynamodb.ProjectionType |
![]() | aws-cdk-lib » aws_dynamodb » ProjectionType |
The set of attributes that are projected into the index.
Members
Name | Description |
---|---|
KEYS_ONLY | Only the index and primary keys are projected into the index. |
INCLUDE | Only the specified table attributes are projected into the index. |
ALL | All of the table attributes are projected into the index. |
KEYS_ONLY
Only the index and primary keys are projected into the index.
INCLUDE
Only the specified table attributes are projected into the index.
The list
of projected attributes is in nonKeyAttributes
.
ALL
All of the table attributes are projected into the index.