restxml

package
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 26, 2018 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Overview

Package restxml provides RESTful XML serialization of AWS requests and responses.

Index

Constants

This section is empty.

Variables

View Source
var BuildHandler = request.NamedHandler{Name: "awssdk.restxml.Build", Fn: Build}

BuildHandler is a named request handler for building restxml protocol requests

View Source
var UnmarshalErrorHandler = request.NamedHandler{Name: "awssdk.restxml.UnmarshalError", Fn: UnmarshalError}

UnmarshalErrorHandler is a named request handler for unmarshaling restxml protocol request errors

View Source
var UnmarshalHandler = request.NamedHandler{Name: "awssdk.restxml.Unmarshal", Fn: Unmarshal}

UnmarshalHandler is a named request handler for unmarshaling restxml protocol requests

View Source
var UnmarshalMetaHandler = request.NamedHandler{Name: "awssdk.restxml.UnmarshalMeta", Fn: UnmarshalMeta}

UnmarshalMetaHandler is a named request handler for unmarshaling restxml protocol request metadata

Functions

func Build

func Build(r *request.Request)

Build builds a request payload for the REST XML protocol.

func Unmarshal

func Unmarshal(r *request.Request)

Unmarshal unmarshals a payload response for the REST XML protocol.

func UnmarshalError

func UnmarshalError(r *request.Request)

UnmarshalError unmarshals a response error for the REST XML protocol.

func UnmarshalMeta

func UnmarshalMeta(r *request.Request)

UnmarshalMeta unmarshals response headers for the REST XML protocol.

Types

type Encoder added in v0.3.0

type Encoder struct {
	// contains filtered or unexported fields
}

An Encoder provides encoding of the AWS RESTXML protocol. This encoder combindes the XML and REST encoders deligating to them for their associated targets.

It is invalid to set a XML and stream payload on the same encoder.

func NewEncoder added in v0.3.0

func NewEncoder(req *http.Request) *Encoder

NewEncoder creates a new encoder for encoding the AWS RESTXML protocol. The request passed in will be the base the path, query, and headers encoded will be set on top of.

func (*Encoder) Encode added in v0.3.0

func (e *Encoder) Encode() (*http.Request, io.ReadSeeker, error)

Encode returns the encoded request, and body payload. If no payload body was set nil will be returned. If an error occurred while encoding the API an error will be returned.

func (*Encoder) List added in v0.3.0

List will return a new list encoder based on the Target.

func (*Encoder) Map added in v0.3.0

Map will return a new map encoder based on the Target.

func (*Encoder) SetFields added in v0.3.0

func (e *Encoder) SetFields(t protocol.Target, k string, m protocol.FieldMarshaler, meta protocol.Metadata)

SetFields will set the nested type's fields to the body.

func (*Encoder) SetStream added in v0.3.0

func (e *Encoder) SetStream(t protocol.Target, k string, v protocol.StreamMarshaler, meta protocol.Metadata)

SetStream will set the stream to the payload of the request.

func (*Encoder) SetValue added in v0.3.0

SetValue will set a value to the header, path, query, or body.

If the request's method is GET all BodyTarget values will be written to the query string.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL