aws-cdk-lib.aws_dynamodb.ProjectionType

enum ProjectionType

LanguageType name
.NETAmazon.CDK.AWS.DynamoDB.ProjectionType
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#ProjectionType
Javasoftware.amazon.awscdk.services.dynamodb.ProjectionType
Pythonaws_cdk.aws_dynamodb.ProjectionType
TypeScript (source)aws-cdk-lib » aws_dynamodb » ProjectionType

The set of attributes that are projected into the index.

See also: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Projection.html

Members

NameDescription
KEYS_ONLYOnly the index and primary keys are projected into the index.
INCLUDEOnly the specified table attributes are projected into the index.
ALLAll 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.