Class: Aws::SecurityHub::Types::AwsDynamoDbTableProjection
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsDynamoDbTableProjection
- Includes:
- Aws::Structure
- Defined in:
- 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
-
#non_key_attributes ⇒ Array<String>
The nonkey attributes that are projected into the index.
-
#projection_type ⇒ String
The types of attributes that are projected into the index.
Instance Attribute Details
#non_key_attributes ⇒ Array<String>
The nonkey attributes that are projected into the index. For each attribute, provide the attribute name.
6091 6092 6093 6094 6095 6096 |
# File 'lib/aws-sdk-securityhub/types.rb', line 6091 class AwsDynamoDbTableProjection < Struct.new( :non_key_attributes, :projection_type) SENSITIVE = [] include Aws::Structure end |
#projection_type ⇒ String
The types of attributes that are projected into the index. Valid values are as follows:
-
‘ALL`
-
‘INCLUDE`
-
‘KEYS_ONLY`
6091 6092 6093 6094 6095 6096 |
# File 'lib/aws-sdk-securityhub/types.rb', line 6091 class AwsDynamoDbTableProjection < Struct.new( :non_key_attributes, :projection_type) SENSITIVE = [] include Aws::Structure end |