forked from TrueCloudLab/distribution
9f664468ea
This upgrade, and vendors aws-sdk-go to version v1.12.36. This is because it has new API calls accessible to the S3 client, specifically S3.ListObjectsV2PagesWithContext Signed-off-by: Sargun Dhillon <sargun@sargun.me>
12 lines
290 B
Go
12 lines
290 B
Go
package aws
|
|
|
|
// JSONValue is a representation of a grab bag type that will be marshaled
|
|
// into a json string. This type can be used just like any other map.
|
|
//
|
|
// Example:
|
|
//
|
|
// values := aws.JSONValue{
|
|
// "Foo": "Bar",
|
|
// }
|
|
// values["Baz"] = "Qux"
|
|
type JSONValue map[string]interface{}
|