Method: AWS::DynamoDB::AttributeCollection#each_value

Defined in:
lib/aws/dynamo_db/attribute_collection.rb

#each_value(options = {}) {|value| ... } ⇒ Object

Yield Parameters:

  • value

    Each attribute value belonging to the item. Values will be of type String, BigDecimal, Set<String> or Set<BigDecimal>.



102
103
104
# File 'lib/aws/dynamo_db/attribute_collection.rb', line 102

def each_value(options = {})
  each(options) { |k, v| yield(v) if block_given? }
end