Method: Aws::DynamoDB::Types::AttributeDefinition#attribute_type
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
#attribute_type ⇒ String
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
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 |