Class: Aws::SecurityHub::Types::AwsDynamoDbTableKeySchema
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsDynamoDbTableKeySchema
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsDynamoDbTableKeySchema data as a hash:
{
attribute_name: "NonEmptyString",
key_type: "NonEmptyString",
}
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.
4913 4914 4915 4916 4917 4918 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 4913 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.
4913 4914 4915 4916 4917 4918 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 4913 class AwsDynamoDbTableKeySchema < Struct.new( :attribute_name, :key_type) SENSITIVE = [] include Aws::Structure end |