github.com/aavshr/aws-sdk-go@v1.41.3/aws/jsonvalue.go (about) 1 package 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" 12 type JSONValue map[string]interface{}