Documentation ¶
Overview ¶
Package jsonrpc10 provides the API client, operations, and parameter types for the API.
Index ¶
- Constants
- func NewDefaultEndpointResolver() *internalendpoints.Resolver
- func WithAPIOptions(optFns ...func(*middleware.Stack) error) func(*Options)
- func WithEndpointResolver(v EndpointResolver) func(*Options)
- type Client
- func (c *Client) EmptyInputAndEmptyOutput(ctx context.Context, params *EmptyInputAndEmptyOutputInput, ...) (*EmptyInputAndEmptyOutputOutput, error)
- func (c *Client) EndpointOperation(ctx context.Context, params *EndpointOperationInput, optFns ...func(*Options)) (*EndpointOperationOutput, error)
- func (c *Client) EndpointWithHostLabelOperation(ctx context.Context, params *EndpointWithHostLabelOperationInput, ...) (*EndpointWithHostLabelOperationOutput, error)
- func (c *Client) GreetingWithErrors(ctx context.Context, params *GreetingWithErrorsInput, optFns ...func(*Options)) (*GreetingWithErrorsOutput, error)
- func (c *Client) JsonUnions(ctx context.Context, params *JsonUnionsInput, optFns ...func(*Options)) (*JsonUnionsOutput, error)
- func (c *Client) NoInputAndNoOutput(ctx context.Context, params *NoInputAndNoOutputInput, optFns ...func(*Options)) (*NoInputAndNoOutputOutput, error)
- func (c *Client) NoInputAndOutput(ctx context.Context, params *NoInputAndOutputInput, optFns ...func(*Options)) (*NoInputAndOutputOutput, error)
- type EmptyInputAndEmptyOutputInput
- type EmptyInputAndEmptyOutputOutput
- type EndpointOperationInput
- type EndpointOperationOutput
- type EndpointResolver
- type EndpointResolverFunc
- type EndpointResolverOptions
- type EndpointWithHostLabelOperationInput
- type EndpointWithHostLabelOperationOutput
- type GreetingWithErrorsInput
- type GreetingWithErrorsOutput
- type HTTPClient
- type JsonUnionsInput
- type JsonUnionsOutput
- type NoInputAndNoOutputInput
- type NoInputAndNoOutputOutput
- type NoInputAndOutputInput
- type NoInputAndOutputOutput
- type Options
- type ResolveEndpoint
Constants ¶
const ServiceAPIVersion = "2020-07-14"
const ServiceID = "JSON RPC 10"
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 Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client provides the API client to make operations call for the API.
func New ¶
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 ¶
NewFromConfig returns a new client from the provided config.
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) EndpointWithHostLabelOperation ¶ added in v0.2.4
func (c *Client) EndpointWithHostLabelOperation(ctx context.Context, params *EndpointWithHostLabelOperationInput, optFns ...func(*Options)) (*EndpointWithHostLabelOperationOutput, 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 ComplexError error.
Implementations must be able to successfully take a response and properly deserialize successful and error responses.
func (*Client) JsonUnions ¶
func (c *Client) JsonUnions(ctx context.Context, params *JsonUnionsInput, optFns ...func(*Options)) (*JsonUnionsOutput, error)
This operation uses unions for inputs and outputs.
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.
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 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 GreetingWithErrorsInput ¶
type GreetingWithErrorsInput struct { }
type GreetingWithErrorsOutput ¶
type GreetingWithErrorsOutput struct { Greeting *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type JsonUnionsInput ¶
type JsonUnionsInput struct { // A union with a representative set of types for members. Contents types.MyUnion }
A shared structure that contains a single union member.
type JsonUnionsOutput ¶
type JsonUnionsOutput struct { // A union with a representative set of types for members. Contents types.MyUnion // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
A shared structure that contains a single union member.
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 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 // 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 }
type ResolveEndpoint ¶
type ResolveEndpoint struct { Resolver EndpointResolver Options EndpointResolverOptions }
func (*ResolveEndpoint) HandleSerialize ¶
func (m *ResolveEndpoint) HandleSerialize(ctx context.Context, in middleware.SerializeInput, next middleware.SerializeHandler) ( out middleware.SerializeOutput, metadata middleware.Metadata, err error, )
func (*ResolveEndpoint) ID ¶
func (*ResolveEndpoint) ID() string