jsonvalue.go 290 B

123456789101112
  1. package aws
  2. // JSONValue is a representation of a grab bag type that will be marshaled
  3. // into a json string. This type can be used just like any other map.
  4. //
  5. // Example:
  6. //
  7. // values := aws.JSONValue{
  8. // "Foo": "Bar",
  9. // }
  10. // values["Baz"] = "Qux"
  11. type JSONValue map[string]interface{}