Complete the code to set the projection type to include all attributes in a DynamoDB index.
Projection: { ProjectionType: "[1]" }Setting ProjectionType to ALL includes all attributes from the table in the index.
Complete the code to set the projection type to include only the index keys in a DynamoDB index.
Projection: { ProjectionType: "[1]" }Setting ProjectionType to KEYS_ONLY includes only the index and primary keys in the index.
Fix the error in the projection type to include specific non-key attributes in a DynamoDB index.
Projection: { ProjectionType: "[1]", NonKeyAttributes: ["Attribute1", "Attribute2"] }ProjectionType must be set to INCLUDE to specify non-key attributes explicitly.
Fill both blanks to define a DynamoDB index projection that includes only keys and specific attributes.
Projection: { ProjectionType: "[1]", NonKeyAttributes: ["[2]"] }Use INCLUDE to specify non-key attributes like AttributeX in the projection.
Fill all three blanks to define a DynamoDB index projection with INCLUDE type and two specific non-key attributes.
Projection: { ProjectionType: "[1]", NonKeyAttributes: ["[2]", "[3]"] }Set ProjectionType to INCLUDE and list the non-key attributes AttributeA and AttributeB to include them in the index.