Class: Aws::SecurityHub::Types::AwsDynamoDbTableKeySchema
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsDynamoDbTableKeySchema
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
A component of the key schema for the DynamoDB table, a global secondary index, or a local secondary index.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_name ⇒ String
The name of the key schema attribute.
-
#key_type ⇒ String
The type of key used for the key schema attribute.
Instance Attribute Details
#attribute_name ⇒ String
The name of the key schema attribute.
6032 6033 6034 6035 6036 6037 |
# File 'lib/aws-sdk-securityhub/types.rb', line 6032 class AwsDynamoDbTableKeySchema < Struct.new( :attribute_name, :key_type) SENSITIVE = [] include Aws::Structure end |
#key_type ⇒ String
The type of key used for the key schema attribute. Valid values are ‘HASH` or `RANGE`.
6032 6033 6034 6035 6036 6037 |
# File 'lib/aws-sdk-securityhub/types.rb', line 6032 class AwsDynamoDbTableKeySchema < Struct.new( :attribute_name, :key_type) SENSITIVE = [] include Aws::Structure end |