type github.com/aws/aws-sdk-go/aws.JSONValue

10 uses

	github.com/aws/aws-sdk-go/aws (current package)
		jsonvalue.go#L12: type JSONValue map[string]interface{}

	github.com/aws/aws-sdk-go/private/protocol
		jsonvalue.go#L26: func EncodeJSONValue(v aws.JSONValue, escape EscapeMode) (string, error) {
		jsonvalue.go#L48: func DecodeJSONValue(v string, escape EscapeMode) (aws.JSONValue, error) {
		jsonvalue.go#L69: 	m := aws.JSONValue{}

	github.com/aws/aws-sdk-go/private/protocol/json/jsonutil
		build.go#L54: 			if _, ok := value.Interface().(aws.JSONValue); !ok {
		build.go#L247: 		case aws.JSONValue:
		unmarshal.go#L101: 			if _, ok := value.Interface().(aws.JSONValue); !ok {
		unmarshal.go#L254: 		case aws.JSONValue:

	github.com/aws/aws-sdk-go/private/protocol/rest
		build.go#L293: 	case aws.JSONValue:
		unmarshal.go#L242: 	case aws.JSONValue: