Map provides access to an attribute of type Map. They Keys are strings and the values are DynamoDBAttributeValue instances. Method panics if the attribute is not of type Map.
()
| 55 | // and the values are DynamoDBAttributeValue instances. |
| 56 | // Method panics if the attribute is not of type Map. |
| 57 | func (av DynamoDBAttributeValue) Map() map[string]DynamoDBAttributeValue { |
| 58 | av.ensureType(DataTypeMap) |
| 59 | return av.value.(map[string]DynamoDBAttributeValue) |
| 60 | } |
| 61 | |
| 62 | // Number provides access to an attribute of type Number. |
| 63 | // DynamoDB sends the values as strings. For convenience please see also |