Documentation ¶
Overview ¶
Package rest provides RESTful serialization of AWS requests and responses.
Index ¶
- Variables
- func Build(r *request.Request)
- func BuildAsGET(r *request.Request)
- func EscapePath(path string, encodeSep bool) string
- func PayloadMember(i interface{}) interface{}
- func PayloadType(i interface{}) string
- func Unmarshal(r *request.Request)
- func UnmarshalMeta(r *request.Request)
- func UnmarshalResponse(resp *http.Response, data interface{}, lowerCaseHeaderMaps bool) error
Constants ¶
This section is empty.
Variables ¶
var BuildHandler = request.NamedHandler{Name: "awssdk.rest.Build", Fn: Build}
BuildHandler is a named request handler for building rest protocol requests
var UnmarshalHandler = request.NamedHandler{Name: "awssdk.rest.Unmarshal", Fn: Unmarshal}
UnmarshalHandler is a named request handler for unmarshaling rest protocol requests
var UnmarshalMetaHandler = request.NamedHandler{Name: "awssdk.rest.UnmarshalMeta", Fn: UnmarshalMeta}
UnmarshalMetaHandler is a named request handler for unmarshaling rest protocol request metadata
Functions ¶
func BuildAsGET ¶
BuildAsGET builds the REST component of a service request with the ability to hoist data from the body.
func EscapePath ¶
EscapePath escapes part of a URL path in Amazon style
func PayloadMember ¶
func PayloadMember(i interface{}) interface{}
PayloadMember returns the payload field member of i if there is one, or nil.
func PayloadType ¶
func PayloadType(i interface{}) string
PayloadType returns the type of a payload field member of i if there is one, or "".
func UnmarshalMeta ¶
UnmarshalMeta unmarshals the REST metadata of a response in a REST service
func UnmarshalResponse ¶
UnmarshalResponse attempts to unmarshal the REST response headers to the data type passed in. The type must be a pointer. An error is returned with any error unmarshaling the response into the target datatype.
Types ¶
This section is empty.