Method: Aws::DynamoDB::Types::AttributeDefinition#attribute_type

Defined in:
lib/aws-sdk-dynamodb/types.rb

#attribute_typeString

The data type for the attribute, where:

  • ‘S` - the attribute is of type String

  • ‘N` - the attribute is of type Number

  • ‘B` - the attribute is of type Binary

Returns:

  • (String)


67
68
69
70
71
72
# File 'lib/aws-sdk-dynamodb/types.rb', line 67

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