Method: Aws::DynamoDB::Types::AttributeValue#l

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

#lArray<Types::AttributeValue>

An attribute of type List. For example:

‘“L”: [ “Cookies” , “Coffee”, “3.14159”]`

Returns:



158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'lib/aws-sdk-dynamodb/types.rb', line 158

class AttributeValue < Struct.new(
  :s,
  :n,
  :b,
  :ss,
  :ns,
  :bs,
  :m,
  :l,
  :null,
  :bool)
  SENSITIVE = []
  include Aws::Structure
end