Module: AWSCDK::DynamoDB::ProjectionType
- Defined in:
- dynamo_db/projection_type.rb
Overview
The set of attributes that are projected into the index.
Constant Summary collapse
- KEYS_ONLY =
Deprecated.Note:
Default:
Only the index and primary keys are projected into the index.
Jsii::Enum.new("aws-cdk-lib.aws_dynamodb.ProjectionType", "KEYS_ONLY")
- INCLUDE =
Deprecated.Note:
Default:
Only the specified table attributes are projected into the index.
The list of projected attributes is in
non_key_attributes. Jsii::Enum.new("aws-cdk-lib.aws_dynamodb.ProjectionType", "INCLUDE")
- ALL =
Deprecated.Note:
Default:
All of the table attributes are projected into the index.
Jsii::Enum.new("aws-cdk-lib.aws_dynamodb.ProjectionType", "ALL")