Class: Aws::DynamoDB::Types::Projection

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dynamodb/types.rb

Overview

Note:

When making an API call, you may pass Projection data as a hash:

{
  projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
  non_key_attributes: ["NonKeyAttributeName"],
}

Represents attributes that are copied (projected) from the table into an index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.

Instance Attribute Summary collapse

Instance Attribute Details

#non_key_attributesArray<String>

Represents the non-key attribute names which will be projected into the index.

For local secondary indexes, the total count of ‘NonKeyAttributes` summed across all of the local secondary indexes, must not exceed

  1. If you project the same attribute into two different indexes,

this counts as two distinct attributes when determining the total.

Returns:

  • (Array<String>)


4328
4329
4330
4331
4332
# File 'lib/aws-sdk-dynamodb/types.rb', line 4328

class Projection < Struct.new(
  :projection_type,
  :non_key_attributes)
  include Aws::Structure
end

#projection_typeString

The set of attributes that 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 are in `NonKeyAttributes`.

  • ‘ALL` - All of the table attributes are projected into the index.

Returns:

  • (String)


4328
4329
4330
4331
4332
# File 'lib/aws-sdk-dynamodb/types.rb', line 4328

class Projection < Struct.new(
  :projection_type,
  :non_key_attributes)
  include Aws::Structure
end