restxml

package module
v0.2.8 Latest Latest
Warning

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

Go to latest
Published: May 7, 2021 License: Apache-2.0 Imports: 31 Imported by: 0

Documentation

Overview

Package restxml provides the API client, operations, and parameter types for the API.

A REST XML service that sends XML requests and responses.

Index

Constants

View Source
const ServiceAPIVersion = "2019-12-16"
View Source
const ServiceID = "Rest Xml Protocol"

Variables

This section is empty.

Functions

func NewDefaultEndpointResolver

func NewDefaultEndpointResolver() *internalendpoints.Resolver

NewDefaultEndpointResolver constructs a new service endpoint resolver

func WithAPIOptions added in v0.2.1

func WithAPIOptions(optFns ...func(*middleware.Stack) error) func(*Options)

WithAPIOptions returns a functional option for setting the Client's APIOptions option.

func WithEndpointResolver

func WithEndpointResolver(v EndpointResolver) func(*Options)

WithEndpointResolver returns a functional option for setting the Client's EndpointResolver option.

Types

type AllQueryStringTypesInput

type AllQueryStringTypesInput struct {
	QueryBoolean *bool

	QueryBooleanList []bool

	QueryByte *int8

	QueryDouble *float64

	QueryDoubleList []float64

	QueryEnum types.FooEnum

	QueryEnumList []types.FooEnum

	QueryFloat *float32

	QueryInteger *int32

	QueryIntegerList []int32

	QueryIntegerSet []int32

	QueryLong *int64

	QueryParamsMapOfStrings map[string]string

	QueryShort *int16

	QueryString *string

	QueryStringList []string

	QueryStringSet []string

	QueryTimestamp *time.Time

	QueryTimestampList []time.Time
}

type AllQueryStringTypesOutput

type AllQueryStringTypesOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type Client

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

Client provides the API client to make operations call for the API.

func New

func New(options Options, optFns ...func(*Options)) *Client

New returns an initialized Client based on the functional options. Provide additional functional options to further configure the behavior of the client, such as changing the client's endpoint or adding custom middleware behavior.

func NewFromConfig

func NewFromConfig(cfg aws.Config, optFns ...func(*Options)) *Client

NewFromConfig returns a new client from the provided config.

func (*Client) AllQueryStringTypes

func (c *Client) AllQueryStringTypes(ctx context.Context, params *AllQueryStringTypesInput, optFns ...func(*Options)) (*AllQueryStringTypesOutput, error)

This example uses all query string types.

func (*Client) ConstantAndVariableQueryString

func (c *Client) ConstantAndVariableQueryString(ctx context.Context, params *ConstantAndVariableQueryStringInput, optFns ...func(*Options)) (*ConstantAndVariableQueryStringOutput, error)

This example uses fixed query string params and variable query string params. The fixed query string parameters and variable parameters must both be serialized (implementations may need to merge them together).

func (*Client) ConstantQueryString

func (c *Client) ConstantQueryString(ctx context.Context, params *ConstantQueryStringInput, optFns ...func(*Options)) (*ConstantQueryStringOutput, error)

This example uses a constant query string parameters and a label. This simply tests that labels and query string parameters are compatible. The fixed query string parameter named "hello" should in no way conflict with the label, {hello}.

func (*Client) EmptyInputAndEmptyOutput

func (c *Client) EmptyInputAndEmptyOutput(ctx context.Context, params *EmptyInputAndEmptyOutputInput, optFns ...func(*Options)) (*EmptyInputAndEmptyOutputOutput, error)

The example tests how requests and responses are serialized when there's no request or response payload because the operation has an empty input and empty output structure that reuses the same shape. While this should be rare, code generators must support this.

func (*Client) EndpointOperation added in v0.2.4

func (c *Client) EndpointOperation(ctx context.Context, params *EndpointOperationInput, optFns ...func(*Options)) (*EndpointOperationOutput, error)

func (*Client) EndpointWithHostLabelHeaderOperation added in v0.2.4

func (c *Client) EndpointWithHostLabelHeaderOperation(ctx context.Context, params *EndpointWithHostLabelHeaderOperationInput, optFns ...func(*Options)) (*EndpointWithHostLabelHeaderOperationOutput, error)

func (*Client) EndpointWithHostLabelOperation added in v0.2.4

func (c *Client) EndpointWithHostLabelOperation(ctx context.Context, params *EndpointWithHostLabelOperationInput, optFns ...func(*Options)) (*EndpointWithHostLabelOperationOutput, error)

func (*Client) FlattenedXmlMap

func (c *Client) FlattenedXmlMap(ctx context.Context, params *FlattenedXmlMapInput, optFns ...func(*Options)) (*FlattenedXmlMapOutput, error)

Flattened maps

func (*Client) FlattenedXmlMapWithXmlName

func (c *Client) FlattenedXmlMapWithXmlName(ctx context.Context, params *FlattenedXmlMapWithXmlNameInput, optFns ...func(*Options)) (*FlattenedXmlMapWithXmlNameOutput, error)

Flattened maps with @xmlName

func (*Client) FlattenedXmlMapWithXmlNamespace added in v0.2.0

func (c *Client) FlattenedXmlMapWithXmlNamespace(ctx context.Context, params *FlattenedXmlMapWithXmlNamespaceInput, optFns ...func(*Options)) (*FlattenedXmlMapWithXmlNamespaceOutput, error)

Flattened maps with @xmlNamespace and @xmlName

func (*Client) GreetingWithErrors

func (c *Client) GreetingWithErrors(ctx context.Context, params *GreetingWithErrorsInput, optFns ...func(*Options)) (*GreetingWithErrorsOutput, error)

This operation has three possible return values:

* A successful response in the form of GreetingWithErrorsOutput

* An InvalidGreeting error.

* A BadRequest error.

Implementations must be able to successfully take a response and properly (de)serialize successful and error responses based on the the presence of the

func (*Client) HttpPayloadTraits

func (c *Client) HttpPayloadTraits(ctx context.Context, params *HttpPayloadTraitsInput, optFns ...func(*Options)) (*HttpPayloadTraitsOutput, error)

This examples serializes a blob shape in the payload. In this example, no XML document is synthesized because the payload is not a structure or a union type.

func (*Client) HttpPayloadTraitsWithMediaType

func (c *Client) HttpPayloadTraitsWithMediaType(ctx context.Context, params *HttpPayloadTraitsWithMediaTypeInput, optFns ...func(*Options)) (*HttpPayloadTraitsWithMediaTypeOutput, error)

This examples uses a @mediaType trait on the payload to force a custom content-type to be serialized.

func (*Client) HttpPayloadWithStructure

func (c *Client) HttpPayloadWithStructure(ctx context.Context, params *HttpPayloadWithStructureInput, optFns ...func(*Options)) (*HttpPayloadWithStructureOutput, error)

This examples serializes a structure in the payload. Note that serializing a structure changes the wrapper element name to match the targeted structure.

func (*Client) HttpPayloadWithXmlName

func (c *Client) HttpPayloadWithXmlName(ctx context.Context, params *HttpPayloadWithXmlNameInput, optFns ...func(*Options)) (*HttpPayloadWithXmlNameOutput, error)

The following example serializes a payload that uses an XML name, changing the wrapper name.

func (*Client) HttpPayloadWithXmlNamespace

func (c *Client) HttpPayloadWithXmlNamespace(ctx context.Context, params *HttpPayloadWithXmlNamespaceInput, optFns ...func(*Options)) (*HttpPayloadWithXmlNamespaceOutput, error)

The following example serializes a payload that uses an XML namespace.

func (*Client) HttpPayloadWithXmlNamespaceAndPrefix

func (c *Client) HttpPayloadWithXmlNamespaceAndPrefix(ctx context.Context, params *HttpPayloadWithXmlNamespaceAndPrefixInput, optFns ...func(*Options)) (*HttpPayloadWithXmlNamespaceAndPrefixOutput, error)

The following example serializes a payload that uses an XML namespace.

func (*Client) HttpPrefixHeaders

func (c *Client) HttpPrefixHeaders(ctx context.Context, params *HttpPrefixHeadersInput, optFns ...func(*Options)) (*HttpPrefixHeadersOutput, error)

This examples adds headers to the input of a request and response by prefix.

func (*Client) HttpRequestWithGreedyLabelInPath

func (c *Client) HttpRequestWithGreedyLabelInPath(ctx context.Context, params *HttpRequestWithGreedyLabelInPathInput, optFns ...func(*Options)) (*HttpRequestWithGreedyLabelInPathOutput, error)

func (*Client) HttpRequestWithLabels

func (c *Client) HttpRequestWithLabels(ctx context.Context, params *HttpRequestWithLabelsInput, optFns ...func(*Options)) (*HttpRequestWithLabelsOutput, error)

The example tests how requests are serialized when there's no input payload but there are HTTP labels.

func (*Client) HttpRequestWithLabelsAndTimestampFormat

func (c *Client) HttpRequestWithLabelsAndTimestampFormat(ctx context.Context, params *HttpRequestWithLabelsAndTimestampFormatInput, optFns ...func(*Options)) (*HttpRequestWithLabelsAndTimestampFormatOutput, error)

The example tests how requests serialize different timestamp formats in the URI path.

func (*Client) HttpResponseCode

func (c *Client) HttpResponseCode(ctx context.Context, params *HttpResponseCodeInput, optFns ...func(*Options)) (*HttpResponseCodeOutput, error)

func (*Client) IgnoreQueryParamsInResponse

func (c *Client) IgnoreQueryParamsInResponse(ctx context.Context, params *IgnoreQueryParamsInResponseInput, optFns ...func(*Options)) (*IgnoreQueryParamsInResponseOutput, error)

This example ensures that query string bound request parameters are serialized in the body of responses if the structure is used in both the request and response.

func (*Client) InputAndOutputWithHeaders

func (c *Client) InputAndOutputWithHeaders(ctx context.Context, params *InputAndOutputWithHeadersInput, optFns ...func(*Options)) (*InputAndOutputWithHeadersOutput, error)

The example tests how requests and responses are serialized when there is no input or output payload but there are HTTP header bindings.

func (*Client) NoInputAndNoOutput

func (c *Client) NoInputAndNoOutput(ctx context.Context, params *NoInputAndNoOutputInput, optFns ...func(*Options)) (*NoInputAndNoOutputOutput, error)

The example tests how requests and responses are serialized when there's no request or response payload because the operation has no input or output. While this should be rare, code generators must support this.

func (*Client) NoInputAndOutput

func (c *Client) NoInputAndOutput(ctx context.Context, params *NoInputAndOutputInput, optFns ...func(*Options)) (*NoInputAndOutputOutput, error)

The example tests how requests and responses are serialized when there's no request or response payload because the operation has no input and the output is empty. While this should be rare, code generators must support this.

func (*Client) NullAndEmptyHeadersClient

func (c *Client) NullAndEmptyHeadersClient(ctx context.Context, params *NullAndEmptyHeadersClientInput, optFns ...func(*Options)) (*NullAndEmptyHeadersClientOutput, error)

Null and empty headers are not sent over the wire.

func (*Client) NullAndEmptyHeadersServer

func (c *Client) NullAndEmptyHeadersServer(ctx context.Context, params *NullAndEmptyHeadersServerInput, optFns ...func(*Options)) (*NullAndEmptyHeadersServerOutput, error)

Null and empty headers are not sent over the wire.

func (*Client) OmitsNullSerializesEmptyString

func (c *Client) OmitsNullSerializesEmptyString(ctx context.Context, params *OmitsNullSerializesEmptyStringInput, optFns ...func(*Options)) (*OmitsNullSerializesEmptyStringOutput, error)

Omits null, but serializes empty string value.

func (*Client) QueryIdempotencyTokenAutoFill

func (c *Client) QueryIdempotencyTokenAutoFill(ctx context.Context, params *QueryIdempotencyTokenAutoFillInput, optFns ...func(*Options)) (*QueryIdempotencyTokenAutoFillOutput, error)

Automatically adds idempotency tokens.

func (*Client) QueryParamsAsStringListMap added in v0.2.8

func (c *Client) QueryParamsAsStringListMap(ctx context.Context, params *QueryParamsAsStringListMapInput, optFns ...func(*Options)) (*QueryParamsAsStringListMapOutput, error)

func (*Client) QueryPrecedence added in v0.2.8

func (c *Client) QueryPrecedence(ctx context.Context, params *QueryPrecedenceInput, optFns ...func(*Options)) (*QueryPrecedenceOutput, error)

func (*Client) RecursiveShapes

func (c *Client) RecursiveShapes(ctx context.Context, params *RecursiveShapesInput, optFns ...func(*Options)) (*RecursiveShapesOutput, error)

Recursive shapes

func (*Client) SimpleScalarProperties

func (c *Client) SimpleScalarProperties(ctx context.Context, params *SimpleScalarPropertiesInput, optFns ...func(*Options)) (*SimpleScalarPropertiesOutput, error)

func (*Client) TimestampFormatHeaders

func (c *Client) TimestampFormatHeaders(ctx context.Context, params *TimestampFormatHeadersInput, optFns ...func(*Options)) (*TimestampFormatHeadersOutput, error)

The example tests how timestamp request and response headers are serialized.

func (*Client) XmlAttributes

func (c *Client) XmlAttributes(ctx context.Context, params *XmlAttributesInput, optFns ...func(*Options)) (*XmlAttributesOutput, error)

This example serializes an XML attributes on synthesized document.

func (*Client) XmlAttributesOnPayload

func (c *Client) XmlAttributesOnPayload(ctx context.Context, params *XmlAttributesOnPayloadInput, optFns ...func(*Options)) (*XmlAttributesOnPayloadOutput, error)

This example serializes an XML attributes on a document targeted by httpPayload.

func (*Client) XmlBlobs

func (c *Client) XmlBlobs(ctx context.Context, params *XmlBlobsInput, optFns ...func(*Options)) (*XmlBlobsOutput, error)

Blobs are base64 encoded

func (*Client) XmlEmptyBlobs

func (c *Client) XmlEmptyBlobs(ctx context.Context, params *XmlEmptyBlobsInput, optFns ...func(*Options)) (*XmlEmptyBlobsOutput, error)

Blobs are base64 encoded

func (*Client) XmlEmptyLists

func (c *Client) XmlEmptyLists(ctx context.Context, params *XmlEmptyListsInput, optFns ...func(*Options)) (*XmlEmptyListsOutput, error)

func (*Client) XmlEmptyMaps

func (c *Client) XmlEmptyMaps(ctx context.Context, params *XmlEmptyMapsInput, optFns ...func(*Options)) (*XmlEmptyMapsOutput, error)

func (*Client) XmlEmptyStrings

func (c *Client) XmlEmptyStrings(ctx context.Context, params *XmlEmptyStringsInput, optFns ...func(*Options)) (*XmlEmptyStringsOutput, error)

func (*Client) XmlEnums

func (c *Client) XmlEnums(ctx context.Context, params *XmlEnumsInput, optFns ...func(*Options)) (*XmlEnumsOutput, error)

This example serializes enums as top level properties, in lists, sets, and maps.

func (*Client) XmlLists

func (c *Client) XmlLists(ctx context.Context, params *XmlListsInput, optFns ...func(*Options)) (*XmlListsOutput, error)

This test case serializes XML lists for the following cases for both input and output:

* Normal XML lists.

* Normal XML sets.

* XML lists of lists.

* XML lists with @xmlName on its members

* Flattened XML lists.

* Flattened XML lists with @xmlName.

* Flattened XML lists with @xmlNamespace.

* Lists of structures.

func (*Client) XmlMaps

func (c *Client) XmlMaps(ctx context.Context, params *XmlMapsInput, optFns ...func(*Options)) (*XmlMapsOutput, error)

The example tests basic map serialization.

func (*Client) XmlMapsXmlName

func (c *Client) XmlMapsXmlName(ctx context.Context, params *XmlMapsXmlNameInput, optFns ...func(*Options)) (*XmlMapsXmlNameOutput, error)

func (*Client) XmlNamespaces

func (c *Client) XmlNamespaces(ctx context.Context, params *XmlNamespacesInput, optFns ...func(*Options)) (*XmlNamespacesOutput, error)

func (*Client) XmlTimestamps

func (c *Client) XmlTimestamps(ctx context.Context, params *XmlTimestampsInput, optFns ...func(*Options)) (*XmlTimestampsOutput, error)

This tests how timestamps are serialized, including using the default format of date-time and various @timestampFormat trait values.

func (*Client) XmlUnions added in v0.2.4

func (c *Client) XmlUnions(ctx context.Context, params *XmlUnionsInput, optFns ...func(*Options)) (*XmlUnionsOutput, error)

type ConstantAndVariableQueryStringInput

type ConstantAndVariableQueryStringInput struct {
	Baz *string

	MaybeSet *string
}

type ConstantAndVariableQueryStringOutput

type ConstantAndVariableQueryStringOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ConstantQueryStringInput

type ConstantQueryStringInput struct {

	// This member is required.
	Hello *string
}

type ConstantQueryStringOutput

type ConstantQueryStringOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type EmptyInputAndEmptyOutputInput

type EmptyInputAndEmptyOutputInput struct {
}

type EmptyInputAndEmptyOutputOutput

type EmptyInputAndEmptyOutputOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type EndpointOperationInput added in v0.2.4

type EndpointOperationInput struct {
}

type EndpointOperationOutput added in v0.2.4

type EndpointOperationOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type EndpointResolver

type EndpointResolver interface {
	ResolveEndpoint(region string, options EndpointResolverOptions) (aws.Endpoint, error)
}

EndpointResolver interface for resolving service endpoints.

func EndpointResolverFromURL added in v0.2.2

func EndpointResolverFromURL(url string, optFns ...func(*aws.Endpoint)) EndpointResolver

EndpointResolverFromURL returns an EndpointResolver configured using the provided endpoint url. By default, the resolved endpoint resolver uses the client region as signing region, and the endpoint source is set to EndpointSourceCustom.You can provide functional options to configure endpoint values for the resolved endpoint.

type EndpointResolverFunc

type EndpointResolverFunc func(region string, options EndpointResolverOptions) (aws.Endpoint, error)

EndpointResolverFunc is a helper utility that wraps a function so it satisfies the EndpointResolver interface. This is useful when you want to add additional endpoint resolving logic, or stub out specific endpoints with custom values.

func (EndpointResolverFunc) ResolveEndpoint

func (fn EndpointResolverFunc) ResolveEndpoint(region string, options EndpointResolverOptions) (endpoint aws.Endpoint, err error)

type EndpointResolverOptions added in v0.1.3

type EndpointResolverOptions = internalendpoints.Options

EndpointResolverOptions is the service endpoint resolver options

type EndpointWithHostLabelHeaderOperationInput added in v0.2.4

type EndpointWithHostLabelHeaderOperationInput struct {

	// This member is required.
	AccountId *string
}

type EndpointWithHostLabelHeaderOperationOutput added in v0.2.4

type EndpointWithHostLabelHeaderOperationOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type EndpointWithHostLabelOperationInput added in v0.2.4

type EndpointWithHostLabelOperationInput struct {

	// This member is required.
	Label *string
}

type EndpointWithHostLabelOperationOutput added in v0.2.4

type EndpointWithHostLabelOperationOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type FlattenedXmlMapInput

type FlattenedXmlMapInput struct {
	MyMap map[string]types.FooEnum
}

type FlattenedXmlMapOutput

type FlattenedXmlMapOutput struct {
	MyMap map[string]types.FooEnum

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type FlattenedXmlMapWithXmlNameInput

type FlattenedXmlMapWithXmlNameInput struct {
	MyMap map[string]string
}

type FlattenedXmlMapWithXmlNameOutput

type FlattenedXmlMapWithXmlNameOutput struct {
	MyMap map[string]string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type FlattenedXmlMapWithXmlNamespaceInput added in v0.2.0

type FlattenedXmlMapWithXmlNamespaceInput struct {
}

type FlattenedXmlMapWithXmlNamespaceOutput added in v0.2.0

type FlattenedXmlMapWithXmlNamespaceOutput struct {
	MyMap map[string]string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type GreetingWithErrorsInput

type GreetingWithErrorsInput struct {
}

type GreetingWithErrorsOutput

type GreetingWithErrorsOutput struct {
	Greeting *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HTTPClient

type HTTPClient interface {
	Do(*http.Request) (*http.Response, error)
}

type HttpPayloadTraitsInput

type HttpPayloadTraitsInput struct {
	Blob []byte

	Foo *string
}

type HttpPayloadTraitsOutput

type HttpPayloadTraitsOutput struct {
	Blob []byte

	Foo *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HttpPayloadTraitsWithMediaTypeInput

type HttpPayloadTraitsWithMediaTypeInput struct {

	// This value conforms to the media type: text/plain
	Blob []byte

	Foo *string
}

type HttpPayloadTraitsWithMediaTypeOutput

type HttpPayloadTraitsWithMediaTypeOutput struct {

	// This value conforms to the media type: text/plain
	Blob []byte

	Foo *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HttpPayloadWithStructureInput

type HttpPayloadWithStructureInput struct {
	Nested *types.NestedPayload
}

type HttpPayloadWithStructureOutput

type HttpPayloadWithStructureOutput struct {
	Nested *types.NestedPayload

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HttpPayloadWithXmlNameInput

type HttpPayloadWithXmlNameInput struct {
	Nested *types.PayloadWithXmlName
}

type HttpPayloadWithXmlNameOutput

type HttpPayloadWithXmlNameOutput struct {
	Nested *types.PayloadWithXmlName

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HttpPayloadWithXmlNamespaceAndPrefixInput

type HttpPayloadWithXmlNamespaceAndPrefixInput struct {
	Nested *types.PayloadWithXmlNamespaceAndPrefix
}

type HttpPayloadWithXmlNamespaceAndPrefixOutput

type HttpPayloadWithXmlNamespaceAndPrefixOutput struct {
	Nested *types.PayloadWithXmlNamespaceAndPrefix

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HttpPayloadWithXmlNamespaceInput

type HttpPayloadWithXmlNamespaceInput struct {
	Nested *types.PayloadWithXmlNamespace
}

type HttpPayloadWithXmlNamespaceOutput

type HttpPayloadWithXmlNamespaceOutput struct {
	Nested *types.PayloadWithXmlNamespace

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HttpPrefixHeadersInput

type HttpPrefixHeadersInput struct {
	Foo *string

	FooMap map[string]string
}

type HttpPrefixHeadersOutput

type HttpPrefixHeadersOutput struct {
	Foo *string

	// Map keys will be normalized to lower-case.
	FooMap map[string]string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HttpRequestWithGreedyLabelInPathInput

type HttpRequestWithGreedyLabelInPathInput struct {

	// This member is required.
	Baz *string

	// This member is required.
	Foo *string
}

type HttpRequestWithGreedyLabelInPathOutput

type HttpRequestWithGreedyLabelInPathOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HttpRequestWithLabelsAndTimestampFormatInput

type HttpRequestWithLabelsAndTimestampFormatInput struct {

	// This member is required.
	DefaultFormat *time.Time

	// This member is required.
	MemberDateTime *time.Time

	// This member is required.
	MemberEpochSeconds *time.Time

	// This member is required.
	MemberHttpDate *time.Time

	// This member is required.
	TargetDateTime *time.Time

	// This member is required.
	TargetEpochSeconds *time.Time

	// This member is required.
	TargetHttpDate *time.Time
}

type HttpRequestWithLabelsAndTimestampFormatOutput

type HttpRequestWithLabelsAndTimestampFormatOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HttpRequestWithLabelsInput

type HttpRequestWithLabelsInput struct {

	// Serialized in the path as true or false.
	//
	// This member is required.
	Boolean *bool

	// This member is required.
	Double *float64

	// This member is required.
	Float *float32

	// This member is required.
	Integer *int32

	// This member is required.
	Long *int64

	// This member is required.
	Short *int16

	// This member is required.
	String_ *string

	// Note that this member has no format, so it's serialized as an RFC 3399
	// date-time.
	//
	// This member is required.
	Timestamp *time.Time
}

type HttpRequestWithLabelsOutput

type HttpRequestWithLabelsOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type HttpResponseCodeInput

type HttpResponseCodeInput struct {
}

type HttpResponseCodeOutput

type HttpResponseCodeOutput struct {
	Status *int32

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type IdempotencyTokenProvider

type IdempotencyTokenProvider interface {
	GetIdempotencyToken() (string, error)
}

IdempotencyTokenProvider interface for providing idempotency token

type IgnoreQueryParamsInResponseInput

type IgnoreQueryParamsInResponseInput struct {
}

type IgnoreQueryParamsInResponseOutput

type IgnoreQueryParamsInResponseOutput struct {
	Baz *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type InputAndOutputWithHeadersInput

type InputAndOutputWithHeadersInput struct {
	HeaderBooleanList []bool

	HeaderByte *int8

	HeaderDouble *float64

	HeaderEnum types.FooEnum

	HeaderEnumList []types.FooEnum

	HeaderFalseBool *bool

	HeaderFloat *float32

	HeaderInteger *int32

	HeaderIntegerList []int32

	HeaderLong *int64

	HeaderShort *int16

	HeaderString *string

	HeaderStringList []string

	HeaderStringSet []string

	HeaderTimestampList []time.Time

	HeaderTrueBool *bool
}

type InputAndOutputWithHeadersOutput

type InputAndOutputWithHeadersOutput struct {
	HeaderBooleanList []bool

	HeaderByte *int8

	HeaderDouble *float64

	HeaderEnum types.FooEnum

	HeaderEnumList []types.FooEnum

	HeaderFalseBool *bool

	HeaderFloat *float32

	HeaderInteger *int32

	HeaderIntegerList []int32

	HeaderLong *int64

	HeaderShort *int16

	HeaderString *string

	HeaderStringList []string

	HeaderStringSet []string

	HeaderTimestampList []time.Time

	HeaderTrueBool *bool

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type NoInputAndNoOutputInput

type NoInputAndNoOutputInput struct {
}

type NoInputAndNoOutputOutput

type NoInputAndNoOutputOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type NoInputAndOutputInput

type NoInputAndOutputInput struct {
}

type NoInputAndOutputOutput

type NoInputAndOutputOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type NullAndEmptyHeadersClientInput

type NullAndEmptyHeadersClientInput struct {
	A *string

	B *string

	C []string
}

type NullAndEmptyHeadersClientOutput

type NullAndEmptyHeadersClientOutput struct {
	A *string

	B *string

	C []string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type NullAndEmptyHeadersServerInput

type NullAndEmptyHeadersServerInput struct {
	A *string

	B *string

	C []string
}

type NullAndEmptyHeadersServerOutput

type NullAndEmptyHeadersServerOutput struct {
	A *string

	B *string

	C []string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type OmitsNullSerializesEmptyStringInput

type OmitsNullSerializesEmptyStringInput struct {
	EmptyString *string

	NullValue *string
}

type OmitsNullSerializesEmptyStringOutput

type OmitsNullSerializesEmptyStringOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type Options

type Options struct {
	// Set of options to modify how an operation is invoked. These apply to all
	// operations invoked for this client. Use functional options on operation call to
	// modify this list for per operation behavior.
	APIOptions []func(*middleware.Stack) error

	// Configures the events that will be sent to the configured logger.
	ClientLogMode aws.ClientLogMode

	// The endpoint options to be used when attempting to resolve an endpoint.
	EndpointOptions EndpointResolverOptions

	// The service endpoint resolver.
	EndpointResolver EndpointResolver

	// Provides idempotency tokens values that will be automatically populated into
	// idempotent API operations.
	IdempotencyTokenProvider IdempotencyTokenProvider

	// The logger writer interface to write logging messages to.
	Logger logging.Logger

	// The region to send requests to. (Required)
	Region string

	// Retryer guides how HTTP requests should be retried in case of recoverable
	// failures. When nil the API client will use a default retryer.
	Retryer aws.Retryer

	// The HTTP client to invoke API calls with. Defaults to client's default HTTP
	// implementation if nil.
	HTTPClient HTTPClient
}

func (Options) Copy

func (o Options) Copy() Options

Copy creates a clone where the APIOptions list is deep copied.

type QueryIdempotencyTokenAutoFillInput

type QueryIdempotencyTokenAutoFillInput struct {
	Token *string
}

type QueryIdempotencyTokenAutoFillOutput

type QueryIdempotencyTokenAutoFillOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type QueryParamsAsStringListMapInput added in v0.2.8

type QueryParamsAsStringListMapInput struct {
	Foo map[string][]string

	Qux *string
}

type QueryParamsAsStringListMapOutput added in v0.2.8

type QueryParamsAsStringListMapOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type QueryPrecedenceInput added in v0.2.8

type QueryPrecedenceInput struct {
	Baz map[string]string

	Foo *string
}

type QueryPrecedenceOutput added in v0.2.8

type QueryPrecedenceOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type RecursiveShapesInput

type RecursiveShapesInput struct {
	Nested *types.RecursiveShapesInputOutputNested1
}

type RecursiveShapesOutput

type RecursiveShapesOutput struct {
	Nested *types.RecursiveShapesInputOutputNested1

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type ResolveEndpoint

type ResolveEndpoint struct {
	Resolver EndpointResolver
	Options  EndpointResolverOptions
}

func (*ResolveEndpoint) HandleSerialize

func (*ResolveEndpoint) ID

func (*ResolveEndpoint) ID() string

type SimpleScalarPropertiesInput

type SimpleScalarPropertiesInput struct {
	ByteValue *int8

	DoubleValue *float64

	FalseBooleanValue *bool

	FloatValue *float32

	Foo *string

	IntegerValue *int32

	LongValue *int64

	ShortValue *int16

	StringValue *string

	TrueBooleanValue *bool
}

type SimpleScalarPropertiesOutput

type SimpleScalarPropertiesOutput struct {
	ByteValue *int8

	DoubleValue *float64

	FalseBooleanValue *bool

	FloatValue *float32

	Foo *string

	IntegerValue *int32

	LongValue *int64

	ShortValue *int16

	StringValue *string

	TrueBooleanValue *bool

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type TimestampFormatHeadersInput

type TimestampFormatHeadersInput struct {
	DefaultFormat *time.Time

	MemberDateTime *time.Time

	MemberEpochSeconds *time.Time

	MemberHttpDate *time.Time

	TargetDateTime *time.Time

	TargetEpochSeconds *time.Time

	TargetHttpDate *time.Time
}

type TimestampFormatHeadersOutput

type TimestampFormatHeadersOutput struct {
	DefaultFormat *time.Time

	MemberDateTime *time.Time

	MemberEpochSeconds *time.Time

	MemberHttpDate *time.Time

	TargetDateTime *time.Time

	TargetEpochSeconds *time.Time

	TargetHttpDate *time.Time

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlAttributesInput

type XmlAttributesInput struct {
	Attr *string

	Foo *string
}

type XmlAttributesOnPayloadInput

type XmlAttributesOnPayloadInput struct {
	Payload *types.XmlAttributesInputOutput
}

type XmlAttributesOnPayloadOutput

type XmlAttributesOnPayloadOutput struct {
	Payload *types.XmlAttributesInputOutput

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlAttributesOutput

type XmlAttributesOutput struct {
	Attr *string

	Foo *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlBlobsInput

type XmlBlobsInput struct {
	Data []byte
}

type XmlBlobsOutput

type XmlBlobsOutput struct {
	Data []byte

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlEmptyBlobsInput

type XmlEmptyBlobsInput struct {
	Data []byte
}

type XmlEmptyBlobsOutput

type XmlEmptyBlobsOutput struct {
	Data []byte

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlEmptyListsInput

type XmlEmptyListsInput struct {
	BooleanList []bool

	EnumList []types.FooEnum

	FlattenedList []string

	FlattenedList2 []string

	FlattenedListWithMemberNamespace []string

	FlattenedListWithNamespace []string

	IntegerList []int32

	// A list of lists of strings.
	NestedStringList [][]string

	RenamedListMembers []string

	StringList []string

	StringSet []string

	StructureList []types.StructureListMember

	TimestampList []time.Time
}

type XmlEmptyListsOutput

type XmlEmptyListsOutput struct {
	BooleanList []bool

	EnumList []types.FooEnum

	FlattenedList []string

	FlattenedList2 []string

	FlattenedListWithMemberNamespace []string

	FlattenedListWithNamespace []string

	IntegerList []int32

	// A list of lists of strings.
	NestedStringList [][]string

	RenamedListMembers []string

	StringList []string

	StringSet []string

	StructureList []types.StructureListMember

	TimestampList []time.Time

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlEmptyMapsInput

type XmlEmptyMapsInput struct {
	MyMap map[string]types.GreetingStruct
}

type XmlEmptyMapsOutput

type XmlEmptyMapsOutput struct {
	MyMap map[string]types.GreetingStruct

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlEmptyStringsInput

type XmlEmptyStringsInput struct {
	EmptyString *string
}

type XmlEmptyStringsOutput

type XmlEmptyStringsOutput struct {
	EmptyString *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlEnumsInput

type XmlEnumsInput struct {
	FooEnum1 types.FooEnum

	FooEnum2 types.FooEnum

	FooEnum3 types.FooEnum

	FooEnumList []types.FooEnum

	FooEnumMap map[string]types.FooEnum

	FooEnumSet []types.FooEnum
}

type XmlEnumsOutput

type XmlEnumsOutput struct {
	FooEnum1 types.FooEnum

	FooEnum2 types.FooEnum

	FooEnum3 types.FooEnum

	FooEnumList []types.FooEnum

	FooEnumMap map[string]types.FooEnum

	FooEnumSet []types.FooEnum

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlListsInput

type XmlListsInput struct {
	BooleanList []bool

	EnumList []types.FooEnum

	FlattenedList []string

	FlattenedList2 []string

	FlattenedListWithMemberNamespace []string

	FlattenedListWithNamespace []string

	IntegerList []int32

	// A list of lists of strings.
	NestedStringList [][]string

	RenamedListMembers []string

	StringList []string

	StringSet []string

	StructureList []types.StructureListMember

	TimestampList []time.Time
}

type XmlListsOutput

type XmlListsOutput struct {
	BooleanList []bool

	EnumList []types.FooEnum

	FlattenedList []string

	FlattenedList2 []string

	FlattenedListWithMemberNamespace []string

	FlattenedListWithNamespace []string

	IntegerList []int32

	// A list of lists of strings.
	NestedStringList [][]string

	RenamedListMembers []string

	StringList []string

	StringSet []string

	StructureList []types.StructureListMember

	TimestampList []time.Time

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlMapsInput

type XmlMapsInput struct {
	MyMap map[string]types.GreetingStruct
}

type XmlMapsOutput

type XmlMapsOutput struct {
	MyMap map[string]types.GreetingStruct

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlMapsXmlNameInput

type XmlMapsXmlNameInput struct {
	MyMap map[string]types.GreetingStruct
}

type XmlMapsXmlNameOutput

type XmlMapsXmlNameOutput struct {
	MyMap map[string]types.GreetingStruct

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlNamespacesInput

type XmlNamespacesInput struct {
	Nested *types.XmlNamespaceNested
}

type XmlNamespacesOutput

type XmlNamespacesOutput struct {
	Nested *types.XmlNamespaceNested

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlTimestampsInput

type XmlTimestampsInput struct {
	DateTime *time.Time

	EpochSeconds *time.Time

	HttpDate *time.Time

	Normal *time.Time
}

type XmlTimestampsOutput

type XmlTimestampsOutput struct {
	DateTime *time.Time

	EpochSeconds *time.Time

	HttpDate *time.Time

	Normal *time.Time

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

type XmlUnionsInput added in v0.2.4

type XmlUnionsInput struct {
	UnionValue types.XmlUnionShape
}

type XmlUnionsOutput added in v0.2.4

type XmlUnionsOutput struct {
	UnionValue types.XmlUnionShape

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
}

Source Files

Directories

Path Synopsis
internal

Jump to

Keyboard shortcuts

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