Class: Aws::SecurityHub::Types::AwsDynamoDbTableProjection

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb

Overview

For global and local secondary indexes, identifies the attributes that are copied from the table into the index.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#non_key_attributesArray<String>

The nonkey attributes that are projected into the index. For each attribute, provide the attribute name.

Returns:

  • (Array<String>)


6088
6089
6090
6091
6092
6093
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 6088

class AwsDynamoDbTableProjection < Struct.new(
  :non_key_attributes,
  :projection_type)
  SENSITIVE = []
  include Aws::Structure
end

#projection_typeString

The types of attributes that are projected into the index. Valid values are as follows:

  • ALL

  • INCLUDE

  • KEYS_ONLY

Returns:

  • (String)


6088
6089
6090
6091
6092
6093
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 6088

class AwsDynamoDbTableProjection < Struct.new(
  :non_key_attributes,
  :projection_type)
  SENSITIVE = []
  include Aws::Structure
end