Class: Aws::SecurityHub::Types::AwsDynamoDbTableKeySchema

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityhub/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

Instance Attribute Details

#attribute_nameString

The name of the key schema attribute.

Returns:

  • (String)


6029
6030
6031
6032
6033
6034
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 6029

class AwsDynamoDbTableKeySchema < Struct.new(
  :attribute_name,
  :key_type)
  SENSITIVE = []
  include Aws::Structure
end

#key_typeString

The type of key used for the key schema attribute. Valid values are HASH or RANGE.

Returns:

  • (String)


6029
6030
6031
6032
6033
6034
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 6029

class AwsDynamoDbTableKeySchema < Struct.new(
  :attribute_name,
  :key_type)
  SENSITIVE = []
  include Aws::Structure
end