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