Documentation ¶
Overview ¶
Package restjson provides RESTful JSON serialization of AWS requests and responses.
Index ¶
Constants ¶
This section is empty.
Variables ¶
var BuildHandler = request.NamedHandler{ Name: "awssdk.restjson.Build", Fn: Build, }
BuildHandler is a named request handler for building restjson protocol requests
var UnmarshalErrorHandler = request.NamedHandler{ Name: "awssdk.restjson.UnmarshalError", Fn: UnmarshalError, }
UnmarshalErrorHandler is a named request handler for unmarshaling restjson protocol request errors
var UnmarshalHandler = request.NamedHandler{ Name: "awssdk.restjson.Unmarshal", Fn: Unmarshal, }
UnmarshalHandler is a named request handler for unmarshaling restjson protocol requests
var UnmarshalMetaHandler = request.NamedHandler{ Name: "awssdk.restjson.UnmarshalMeta", Fn: UnmarshalMeta, }
UnmarshalMetaHandler is a named request handler for unmarshaling restjson protocol request metadata
Functions ¶
func UnmarshalError ¶
UnmarshalError unmarshals a response error for the REST JSON protocol.
func UnmarshalMeta ¶
UnmarshalMeta unmarshals response headers for the REST JSON protocol.
Types ¶
type UnmarshalTypedError ¶
type UnmarshalTypedError struct {
// contains filtered or unexported fields
}
UnmarshalTypedError provides unmarshaling errors API response errors for both typed and untyped errors.
func NewUnmarshalTypedError ¶
func NewUnmarshalTypedError(exceptions map[string]func(protocol.ResponseMetadata) error) *UnmarshalTypedError
NewUnmarshalTypedError returns an UnmarshalTypedError initialized for the set of exception names to the error unmarshalers
func (*UnmarshalTypedError) UnmarshalError ¶
func (u *UnmarshalTypedError) UnmarshalError( resp *http.Response, respMeta protocol.ResponseMetadata, ) (error, error)
UnmarshalError attempts to unmarshal the HTTP response error as a known error type. If unable to unmarshal the error type, the generic SDK error type will be used.