restxml

package module
v0.0.0-...-68f2935 Latest Latest
Warning

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

Go to latest
Published: May 24, 2024 License: Apache-2.0 Imports: 44 Imported by: 0

Documentation

Overview

Package restxml provides the API client, operations, and parameter types for Sample Rest Xml Protocol Service.

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

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

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

func WithEndpointResolver deprecated

func WithEndpointResolver(v EndpointResolver) func(*Options)

Deprecated: EndpointResolver and WithEndpointResolver. Providing a value for this field will likely prevent you from using any endpoint-related service features released after the introduction of EndpointResolverV2 and BaseEndpoint.

To migrate an EndpointResolver implementation that uses a custom endpoint, set the client option BaseEndpoint instead.

func WithEndpointResolverV2

func WithEndpointResolverV2(v EndpointResolverV2) func(*Options)

WithEndpointResolverV2 returns a functional option for setting the Client's EndpointResolverV2 option.

func WithSigV4SigningName

func WithSigV4SigningName(name string) func(*Options)

WithSigV4SigningName applies an override to the authentication workflow to use the given signing name for SigV4-authenticated operations.

This is an advanced setting. The value here is FINAL, taking precedence over the resolved signing name from both auth scheme resolution and endpoint resolution.

func WithSigV4SigningRegion

func WithSigV4SigningRegion(region string) func(*Options)

WithSigV4SigningRegion applies an override to the authentication workflow to use the given signing region for SigV4-authenticated operations.

This is an advanced setting. The value here is FINAL, taking precedence over the resolved signing region from both auth scheme resolution and endpoint resolution.

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

	QueryIntegerEnum types.IntegerEnum

	QueryIntegerEnumList []types.IntegerEnum

	QueryIntegerList []int32

	QueryIntegerSet []int32

	QueryLong *int64

	QueryParamsMapOfStrings map[string]string

	QueryShort *int16

	QueryString *string

	QueryStringList []string

	QueryStringSet []string

	QueryTimestamp *time.Time

	QueryTimestampList []time.Time
	// contains filtered or unexported fields
}

type AllQueryStringTypesOutput

type AllQueryStringTypesOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type AuthResolverParameters

type AuthResolverParameters struct {
	// The name of the operation being invoked.
	Operation string

	// The region in which the operation is being invoked.
	Region string
}

AuthResolverParameters contains the set of inputs necessary for auth scheme resolution.

type AuthSchemeResolver

type AuthSchemeResolver interface {
	ResolveAuthSchemes(context.Context, *AuthResolverParameters) ([]*smithyauth.Option, error)
}

AuthSchemeResolver returns a set of possible authentication options for an operation.

type BodyWithXmlNameInput

type BodyWithXmlNameInput struct {
	Nested *types.PayloadWithXmlName
	// contains filtered or unexported fields
}

type BodyWithXmlNameOutput

type BodyWithXmlNameOutput struct {
	Nested *types.PayloadWithXmlName

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type Client

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

Client provides the API client to make operations call for Sample Rest Xml Protocol Service.

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) BodyWithXmlName

func (c *Client) BodyWithXmlName(ctx context.Context, params *BodyWithXmlNameInput, optFns ...func(*Options)) (*BodyWithXmlNameOutput, error)

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

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) DatetimeOffsets

func (c *Client) DatetimeOffsets(ctx context.Context, params *DatetimeOffsetsInput, optFns ...func(*Options)) (*DatetimeOffsetsOutput, error)

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

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

func (*Client) EndpointWithHostLabelHeaderOperation

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

func (*Client) EndpointWithHostLabelOperation

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

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

Flattened maps with @xmlNamespace and @xmlName

func (*Client) FractionalSeconds

func (c *Client) FractionalSeconds(ctx context.Context, params *FractionalSecondsInput, optFns ...func(*Options)) (*FractionalSecondsOutput, error)

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) HttpEnumPayload

func (c *Client) HttpEnumPayload(ctx context.Context, params *HttpEnumPayloadInput, optFns ...func(*Options)) (*HttpEnumPayloadOutput, error)

func (*Client) HttpPayloadTraits

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

This example 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 example uses a @mediaType trait on the payload to force a custom content-type to be serialized.

func (*Client) HttpPayloadWithMemberXmlName

func (c *Client) HttpPayloadWithMemberXmlName(ctx context.Context, params *HttpPayloadWithMemberXmlNameInput, optFns ...func(*Options)) (*HttpPayloadWithMemberXmlNameOutput, error)

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

func (*Client) HttpPayloadWithStructure

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

This example serializes a structure in the payload.

Note that serializing a structure changes the wrapper element name to match the targeted structure.

func (*Client) HttpPayloadWithUnion

func (c *Client) HttpPayloadWithUnion(ctx context.Context, params *HttpPayloadWithUnionInput, optFns ...func(*Options)) (*HttpPayloadWithUnionOutput, error)

This example serializes a union in the payload.

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) HttpRequestWithFloatLabels

func (c *Client) HttpRequestWithFloatLabels(ctx context.Context, params *HttpRequestWithFloatLabelsInput, optFns ...func(*Options)) (*HttpRequestWithFloatLabelsOutput, error)

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) HttpStringPayload

func (c *Client) HttpStringPayload(ctx context.Context, params *HttpStringPayloadInput, optFns ...func(*Options)) (*HttpStringPayloadOutput, 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) NestedXmlMaps

func (c *Client) NestedXmlMaps(ctx context.Context, params *NestedXmlMapsInput, optFns ...func(*Options)) (*NestedXmlMapsOutput, error)

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) Options

func (c *Client) Options() Options

Options returns a copy of the client configuration.

Callers SHOULD NOT perform mutations on any inner structures within client config. Config overrides should instead be made on a per-operation basis through functional options.

func (*Client) PutWithContentEncoding

func (c *Client) PutWithContentEncoding(ctx context.Context, params *PutWithContentEncodingInput, optFns ...func(*Options)) (*PutWithContentEncodingOutput, error)

func (*Client) QueryIdempotencyTokenAutoFill

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

Automatically adds idempotency tokens.

func (*Client) QueryParamsAsStringListMap

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

func (*Client) QueryPrecedence

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) XmlIntEnums

func (c *Client) XmlIntEnums(ctx context.Context, params *XmlIntEnumsInput, optFns ...func(*Options)) (*XmlIntEnumsOutput, 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.
  • Flattened XML list of structures

func (*Client) XmlMapWithXmlNamespace

func (c *Client) XmlMapWithXmlNamespace(ctx context.Context, params *XmlMapWithXmlNamespaceInput, optFns ...func(*Options)) (*XmlMapWithXmlNamespaceOutput, error)

Maps with @xmlNamespace and @xmlName

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

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

type ConstantAndVariableQueryStringInput

type ConstantAndVariableQueryStringInput struct {
	Baz *string

	MaybeSet *string
	// contains filtered or unexported fields
}

type ConstantAndVariableQueryStringOutput

type ConstantAndVariableQueryStringOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type ConstantQueryStringInput

type ConstantQueryStringInput struct {

	// This member is required.
	Hello *string
	// contains filtered or unexported fields
}

type ConstantQueryStringOutput

type ConstantQueryStringOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type DatetimeOffsetsInput

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

type DatetimeOffsetsOutput

type DatetimeOffsetsOutput struct {
	Datetime *time.Time

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type EmptyInputAndEmptyOutputInput

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

type EmptyInputAndEmptyOutputOutput

type EmptyInputAndEmptyOutputOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type EndpointOperationInput

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

type EndpointOperationOutput

type EndpointOperationOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type EndpointParameters

type EndpointParameters struct {
}

EndpointParameters provides the parameters that influence how endpoints are resolved.

type EndpointResolver

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

EndpointResolver interface for resolving service endpoints.

func EndpointResolverFromURL

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

type EndpointResolverOptions = internalendpoints.Options

EndpointResolverOptions is the service endpoint resolver options

type EndpointResolverV2

type EndpointResolverV2 interface {
	// ResolveEndpoint attempts to resolve the endpoint with the provided options,
	// returning the endpoint if found. Otherwise an error is returned.
	ResolveEndpoint(ctx context.Context, params EndpointParameters) (
		smithyendpoints.Endpoint, error,
	)
}

EndpointResolverV2 provides the interface for resolving service endpoints.

func NewDefaultEndpointResolverV2

func NewDefaultEndpointResolverV2() EndpointResolverV2

type EndpointWithHostLabelHeaderOperationInput

type EndpointWithHostLabelHeaderOperationInput struct {

	// This member is required.
	AccountId *string
	// contains filtered or unexported fields
}

type EndpointWithHostLabelHeaderOperationOutput

type EndpointWithHostLabelHeaderOperationOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type EndpointWithHostLabelOperationInput

type EndpointWithHostLabelOperationInput struct {

	// This member is required.
	Label *string
	// contains filtered or unexported fields
}

type EndpointWithHostLabelOperationOutput

type EndpointWithHostLabelOperationOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type FlattenedXmlMapInput

type FlattenedXmlMapInput struct {
	MyMap map[string]types.FooEnum
	// contains filtered or unexported fields
}

type FlattenedXmlMapOutput

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

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type FlattenedXmlMapWithXmlNameInput

type FlattenedXmlMapWithXmlNameInput struct {
	MyMap map[string]string
	// contains filtered or unexported fields
}

type FlattenedXmlMapWithXmlNameOutput

type FlattenedXmlMapWithXmlNameOutput struct {
	MyMap map[string]string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type FlattenedXmlMapWithXmlNamespaceInput

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

type FlattenedXmlMapWithXmlNamespaceOutput

type FlattenedXmlMapWithXmlNamespaceOutput struct {
	MyMap map[string]string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type FractionalSecondsInput

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

type FractionalSecondsOutput

type FractionalSecondsOutput struct {
	Datetime *time.Time

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type GreetingWithErrorsInput

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

type GreetingWithErrorsOutput

type GreetingWithErrorsOutput struct {
	Greeting *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HTTPClient

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

type HTTPSignerV4

type HTTPSignerV4 interface {
	SignHTTP(ctx context.Context, credentials aws.Credentials, r *http.Request, payloadHash string, service string, region string, signingTime time.Time, optFns ...func(*v4.SignerOptions)) error
}

type HttpEnumPayloadInput

type HttpEnumPayloadInput struct {
	Payload types.StringEnum
	// contains filtered or unexported fields
}

type HttpEnumPayloadOutput

type HttpEnumPayloadOutput struct {
	Payload types.StringEnum

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HttpPayloadTraitsInput

type HttpPayloadTraitsInput struct {
	Blob []byte

	Foo *string
	// contains filtered or unexported fields
}

type HttpPayloadTraitsOutput

type HttpPayloadTraitsOutput struct {
	Blob []byte

	Foo *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HttpPayloadTraitsWithMediaTypeInput

type HttpPayloadTraitsWithMediaTypeInput struct {

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

	Foo *string
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

type HttpPayloadWithMemberXmlNameInput

type HttpPayloadWithMemberXmlNameInput struct {
	Nested *types.PayloadWithXmlName
	// contains filtered or unexported fields
}

type HttpPayloadWithMemberXmlNameOutput

type HttpPayloadWithMemberXmlNameOutput struct {
	Nested *types.PayloadWithXmlName

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HttpPayloadWithStructureInput

type HttpPayloadWithStructureInput struct {
	Nested *types.NestedPayload
	// contains filtered or unexported fields
}

type HttpPayloadWithStructureOutput

type HttpPayloadWithStructureOutput struct {
	Nested *types.NestedPayload

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HttpPayloadWithUnionInput

type HttpPayloadWithUnionInput struct {
	Nested types.UnionPayload
	// contains filtered or unexported fields
}

type HttpPayloadWithUnionOutput

type HttpPayloadWithUnionOutput struct {
	Nested types.UnionPayload

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HttpPayloadWithXmlNameInput

type HttpPayloadWithXmlNameInput struct {
	Nested *types.PayloadWithXmlName
	// contains filtered or unexported fields
}

type HttpPayloadWithXmlNameOutput

type HttpPayloadWithXmlNameOutput struct {
	Nested *types.PayloadWithXmlName

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HttpPayloadWithXmlNamespaceAndPrefixInput

type HttpPayloadWithXmlNamespaceAndPrefixInput struct {
	Nested *types.PayloadWithXmlNamespaceAndPrefix
	// contains filtered or unexported fields
}

type HttpPayloadWithXmlNamespaceAndPrefixOutput

type HttpPayloadWithXmlNamespaceAndPrefixOutput struct {
	Nested *types.PayloadWithXmlNamespaceAndPrefix

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HttpPayloadWithXmlNamespaceInput

type HttpPayloadWithXmlNamespaceInput struct {
	Nested *types.PayloadWithXmlNamespace
	// contains filtered or unexported fields
}

type HttpPayloadWithXmlNamespaceOutput

type HttpPayloadWithXmlNamespaceOutput struct {
	Nested *types.PayloadWithXmlNamespace

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HttpPrefixHeadersInput

type HttpPrefixHeadersInput struct {
	Foo *string

	FooMap map[string]string
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

type HttpRequestWithFloatLabelsInput

type HttpRequestWithFloatLabelsInput struct {

	// This member is required.
	Double *float64

	// This member is required.
	Float *float32
	// contains filtered or unexported fields
}

type HttpRequestWithFloatLabelsOutput

type HttpRequestWithFloatLabelsOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HttpRequestWithGreedyLabelInPathInput

type HttpRequestWithGreedyLabelInPathInput struct {

	// This member is required.
	Baz *string

	// This member is required.
	Foo *string
	// contains filtered or unexported fields
}

type HttpRequestWithGreedyLabelInPathOutput

type HttpRequestWithGreedyLabelInPathOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

type HttpRequestWithLabelsAndTimestampFormatOutput

type HttpRequestWithLabelsAndTimestampFormatOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

type HttpRequestWithLabelsOutput

type HttpRequestWithLabelsOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HttpResponseCodeInput

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

type HttpResponseCodeOutput

type HttpResponseCodeOutput struct {
	Status *int32

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type HttpStringPayloadInput

type HttpStringPayloadInput struct {
	Payload *string
	// contains filtered or unexported fields
}

type HttpStringPayloadOutput

type HttpStringPayloadOutput struct {
	Payload *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type IdempotencyTokenProvider

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

IdempotencyTokenProvider interface for providing idempotency token

type IgnoreQueryParamsInResponseInput

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

type IgnoreQueryParamsInResponseOutput

type IgnoreQueryParamsInResponseOutput struct {
	Baz *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

type NestedXmlMapsInput

type NestedXmlMapsInput struct {
	FlatNestedMap map[string]map[string]types.FooEnum

	NestedMap map[string]map[string]types.FooEnum
	// contains filtered or unexported fields
}

type NestedXmlMapsOutput

type NestedXmlMapsOutput struct {
	FlatNestedMap map[string]map[string]types.FooEnum

	NestedMap map[string]map[string]types.FooEnum

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type NoInputAndNoOutputInput

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

type NoInputAndNoOutputOutput

type NoInputAndNoOutputOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type NoInputAndOutputInput

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

type NoInputAndOutputOutput

type NoInputAndOutputOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type NullAndEmptyHeadersClientInput

type NullAndEmptyHeadersClientInput struct {
	A *string

	B *string

	C []string
	// contains filtered or unexported fields
}

type NullAndEmptyHeadersClientOutput

type NullAndEmptyHeadersClientOutput struct {
	A *string

	B *string

	C []string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type NullAndEmptyHeadersServerInput

type NullAndEmptyHeadersServerInput struct {
	A *string

	B *string

	C []string
	// contains filtered or unexported fields
}

type NullAndEmptyHeadersServerOutput

type NullAndEmptyHeadersServerOutput struct {
	A *string

	B *string

	C []string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type OmitsNullSerializesEmptyStringInput

type OmitsNullSerializesEmptyStringInput struct {
	EmptyString *string

	NullValue *string
	// contains filtered or unexported fields
}

type OmitsNullSerializesEmptyStringOutput

type OmitsNullSerializesEmptyStringOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

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

	// The optional application specific identifier appended to the User-Agent header.
	AppID string

	// This endpoint will be given as input to an EndpointResolverV2. It is used for
	// providing a custom base endpoint that is subject to modifications by the
	// processing EndpointResolverV2.
	BaseEndpoint *string

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

	// The credentials object to use when signing requests.
	Credentials aws.CredentialsProvider

	// The configuration DefaultsMode that the SDK should use when constructing the
	// clients initial default settings.
	DefaultsMode aws.DefaultsMode

	// Whether to disable automatic request compression for supported operations.
	DisableRequestCompression bool

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

	// The service endpoint resolver.
	//
	// Deprecated: Deprecated: EndpointResolver and WithEndpointResolver. Providing a
	// value for this field will likely prevent you from using any endpoint-related
	// service features released after the introduction of EndpointResolverV2 and
	// BaseEndpoint.
	//
	// To migrate an EndpointResolver implementation that uses a custom endpoint, set
	// the client option BaseEndpoint instead.
	EndpointResolver EndpointResolver

	// Resolves the endpoint used for a particular service operation. This should be
	// used over the deprecated EndpointResolver.
	EndpointResolverV2 EndpointResolverV2

	// Signature Version 4 (SigV4) Signer
	HTTPSignerV4 HTTPSignerV4

	// 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

	// The minimum request body size, in bytes, at which compression should occur. The
	// default value is 10 KiB. Values must fall within [0, 1MiB].
	RequestMinCompressSizeBytes int64

	// RetryMaxAttempts specifies the maximum number attempts an API client will call
	// an operation that fails with a retryable error. A value of 0 is ignored, and
	// will not be used to configure the API client created default retryer, or modify
	// per operation call's retry max attempts.
	//
	// If specified in an operation call's functional options with a value that is
	// different than the constructed client's Options, the Client's Retryer will be
	// wrapped to use the operation's specific RetryMaxAttempts value.
	RetryMaxAttempts int

	// RetryMode specifies the retry mode the API client will be created with, if
	// Retryer option is not also specified.
	//
	// When creating a new API Clients this member will only be used if the Retryer
	// Options member is nil. This value will be ignored if Retryer is not nil.
	//
	// Currently does not support per operation call overrides, may in the future.
	RetryMode aws.RetryMode

	// Retryer guides how HTTP requests should be retried in case of recoverable
	// failures. When nil the API client will use a default retryer. The kind of
	// default retry created by the API client can be changed with the RetryMode
	// option.
	Retryer aws.Retryer

	// The RuntimeEnvironment configuration, only populated if the DefaultsMode is set
	// to DefaultsModeAuto and is initialized using config.LoadDefaultConfig . You
	// should not populate this structure programmatically, or rely on the values here
	// within your applications.
	RuntimeEnvironment aws.RuntimeEnvironment

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

	// The auth scheme resolver which determines how to authenticate for each
	// operation.
	AuthSchemeResolver AuthSchemeResolver

	// The list of auth schemes supported by the client.
	AuthSchemes []smithyhttp.AuthScheme
	// contains filtered or unexported fields
}

func (Options) Copy

func (o Options) Copy() Options

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

func (Options) GetIdentityResolver

func (o Options) GetIdentityResolver(schemeID string) smithyauth.IdentityResolver

type PutWithContentEncodingInput

type PutWithContentEncodingInput struct {
	Data *string

	Encoding *string
	// contains filtered or unexported fields
}

type PutWithContentEncodingOutput

type PutWithContentEncodingOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type QueryIdempotencyTokenAutoFillInput

type QueryIdempotencyTokenAutoFillInput struct {
	Token *string
	// contains filtered or unexported fields
}

type QueryIdempotencyTokenAutoFillOutput

type QueryIdempotencyTokenAutoFillOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type QueryParamsAsStringListMapInput

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

	Qux *string
	// contains filtered or unexported fields
}

type QueryParamsAsStringListMapOutput

type QueryParamsAsStringListMapOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type QueryPrecedenceInput

type QueryPrecedenceInput struct {
	Baz map[string]string

	Foo *string
	// contains filtered or unexported fields
}

type QueryPrecedenceOutput

type QueryPrecedenceOutput struct {
	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type RecursiveShapesInput

type RecursiveShapesInput struct {
	Nested *types.RecursiveShapesInputOutputNested1
	// contains filtered or unexported fields
}

type RecursiveShapesOutput

type RecursiveShapesOutput struct {
	Nested *types.RecursiveShapesInputOutputNested1

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

type XmlAttributesInput

type XmlAttributesInput struct {
	Attr *string

	Foo *string
	// contains filtered or unexported fields
}

type XmlAttributesOnPayloadInput

type XmlAttributesOnPayloadInput struct {
	Payload *types.XmlAttributesPayloadRequest
	// contains filtered or unexported fields
}

type XmlAttributesOnPayloadOutput

type XmlAttributesOnPayloadOutput struct {
	Payload *types.XmlAttributesPayloadResponse

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type XmlAttributesOutput

type XmlAttributesOutput struct {
	Attr *string

	Foo *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type XmlBlobsInput

type XmlBlobsInput struct {
	Data []byte
	// contains filtered or unexported fields
}

type XmlBlobsOutput

type XmlBlobsOutput struct {
	Data []byte

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type XmlEmptyBlobsInput

type XmlEmptyBlobsInput struct {
	Data []byte
	// contains filtered or unexported fields
}

type XmlEmptyBlobsOutput

type XmlEmptyBlobsOutput struct {
	Data []byte

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type XmlEmptyListsInput

type XmlEmptyListsInput struct {
	BooleanList []bool

	EnumList []types.FooEnum

	FlattenedList []string

	FlattenedList2 []string

	FlattenedListWithMemberNamespace []string

	FlattenedListWithNamespace []string

	FlattenedStructureList []types.StructureListMember

	IntEnumList []types.IntegerEnum

	IntegerList []int32

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

	RenamedListMembers []string

	StringList []string

	StringSet []string

	StructureList []types.StructureListMember

	TimestampList []time.Time
	// contains filtered or unexported fields
}

type XmlEmptyListsOutput

type XmlEmptyListsOutput struct {
	BooleanList []bool

	EnumList []types.FooEnum

	FlattenedList []string

	FlattenedList2 []string

	FlattenedListWithMemberNamespace []string

	FlattenedListWithNamespace []string

	FlattenedStructureList []types.StructureListMember

	IntEnumList []types.IntegerEnum

	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
	// contains filtered or unexported fields
}

type XmlEmptyMapsInput

type XmlEmptyMapsInput struct {
	MyMap map[string]types.GreetingStruct
	// contains filtered or unexported fields
}

type XmlEmptyMapsOutput

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

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type XmlEmptyStringsInput

type XmlEmptyStringsInput struct {
	EmptyString *string
	// contains filtered or unexported fields
}

type XmlEmptyStringsOutput

type XmlEmptyStringsOutput struct {
	EmptyString *string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

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
	// contains filtered or unexported fields
}

type XmlIntEnumsInput

type XmlIntEnumsInput struct {
	IntEnum1 types.IntegerEnum

	IntEnum2 types.IntegerEnum

	IntEnum3 types.IntegerEnum

	IntEnumList []types.IntegerEnum

	IntEnumMap map[string]types.IntegerEnum

	IntEnumSet []types.IntegerEnum
	// contains filtered or unexported fields
}

type XmlIntEnumsOutput

type XmlIntEnumsOutput struct {
	IntEnum1 types.IntegerEnum

	IntEnum2 types.IntegerEnum

	IntEnum3 types.IntegerEnum

	IntEnumList []types.IntegerEnum

	IntEnumMap map[string]types.IntegerEnum

	IntEnumSet []types.IntegerEnum

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type XmlListsInput

type XmlListsInput struct {
	BooleanList []bool

	EnumList []types.FooEnum

	FlattenedList []string

	FlattenedList2 []string

	FlattenedListWithMemberNamespace []string

	FlattenedListWithNamespace []string

	FlattenedStructureList []types.StructureListMember

	IntEnumList []types.IntegerEnum

	IntegerList []int32

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

	RenamedListMembers []string

	StringList []string

	StringSet []string

	StructureList []types.StructureListMember

	TimestampList []time.Time
	// contains filtered or unexported fields
}

type XmlListsOutput

type XmlListsOutput struct {
	BooleanList []bool

	EnumList []types.FooEnum

	FlattenedList []string

	FlattenedList2 []string

	FlattenedListWithMemberNamespace []string

	FlattenedListWithNamespace []string

	FlattenedStructureList []types.StructureListMember

	IntEnumList []types.IntegerEnum

	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
	// contains filtered or unexported fields
}

type XmlMapWithXmlNamespaceInput

type XmlMapWithXmlNamespaceInput struct {
	MyMap map[string]string
	// contains filtered or unexported fields
}

type XmlMapWithXmlNamespaceOutput

type XmlMapWithXmlNamespaceOutput struct {
	MyMap map[string]string

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type XmlMapsInput

type XmlMapsInput struct {
	MyMap map[string]types.GreetingStruct
	// contains filtered or unexported fields
}

type XmlMapsOutput

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

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type XmlMapsXmlNameInput

type XmlMapsXmlNameInput struct {
	MyMap map[string]types.GreetingStruct
	// contains filtered or unexported fields
}

type XmlMapsXmlNameOutput

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

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type XmlNamespacesInput

type XmlNamespacesInput struct {
	Nested *types.XmlNamespaceNested
	// contains filtered or unexported fields
}

type XmlNamespacesOutput

type XmlNamespacesOutput struct {
	Nested *types.XmlNamespaceNested

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type XmlTimestampsInput

type XmlTimestampsInput struct {
	DateTime *time.Time

	DateTimeOnTarget *time.Time

	EpochSeconds *time.Time

	EpochSecondsOnTarget *time.Time

	HttpDate *time.Time

	HttpDateOnTarget *time.Time

	Normal *time.Time
	// contains filtered or unexported fields
}

type XmlTimestampsOutput

type XmlTimestampsOutput struct {
	DateTime *time.Time

	DateTimeOnTarget *time.Time

	EpochSeconds *time.Time

	EpochSecondsOnTarget *time.Time

	HttpDate *time.Time

	HttpDateOnTarget *time.Time

	Normal *time.Time

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

type XmlUnionsInput

type XmlUnionsInput struct {
	UnionValue types.XmlUnionShape
	// contains filtered or unexported fields
}

type XmlUnionsOutput

type XmlUnionsOutput struct {
	UnionValue types.XmlUnionShape

	// Metadata pertaining to the operation's result.
	ResultMetadata middleware.Metadata
	// contains filtered or unexported fields
}

Source Files

Directories

Path Synopsis
internal

Jump to

Keyboard shortcuts

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