]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/aws/aws-sdk-go/aws/jsonvalue.go
Initial transfer of provider code
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / aws / aws-sdk-go / aws / jsonvalue.go
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{}