Documentation ¶
Overview ¶
Package jsonrpc provides the API client, operations, and parameter types for Sample Json 1.1 Protocol Service.
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) EmptyOperation(ctx context.Context, params *EmptyOperationInput, optFns ...func(*Options)) (*EmptyOperationOutput, error)
- func (c *Client) GreetingWithErrors(ctx context.Context, params *GreetingWithErrorsInput, optFns ...func(*Options)) (*GreetingWithErrorsOutput, error)
- func (c *Client) JsonEnums(ctx context.Context, params *JsonEnumsInput, optFns ...func(*Options)) (*JsonEnumsOutput, error)
- func (c *Client) JsonUnions(ctx context.Context, params *JsonUnionsInput, optFns ...func(*Options)) (*JsonUnionsOutput, error)
- func (c *Client) KitchenSinkOperation(ctx context.Context, params *KitchenSinkOperationInput, ...) (*KitchenSinkOperationOutput, error)
- func (c *Client) NullOperation(ctx context.Context, params *NullOperationInput, optFns ...func(*Options)) (*NullOperationOutput, error)
- func (c *Client) OperationWithOptionalInputOutput(ctx context.Context, params *OperationWithOptionalInputOutputInput, ...) (*OperationWithOptionalInputOutputOutput, error)
- func (c *Client) PutAndGetInlineDocuments(ctx context.Context, params *PutAndGetInlineDocumentsInput, ...) (*PutAndGetInlineDocumentsOutput, error)
- type EmptyOperationInput
- type EmptyOperationOutput
- type EndpointResolver
- type EndpointResolverFunc
- type EndpointResolverOptions
- type GreetingWithErrorsInput
- type GreetingWithErrorsOutput
- type HTTPClient
- type HTTPSignerV4
- type JsonEnumsInput
- type JsonEnumsOutput
- type JsonUnionsInput
- type JsonUnionsOutput
- type KitchenSinkOperationInput
- type KitchenSinkOperationOutput
- type NullOperationInput
- type NullOperationOutput
- type OperationWithOptionalInputOutputInput
- type OperationWithOptionalInputOutputOutput
- type Options
- type PutAndGetInlineDocumentsInput
- type PutAndGetInlineDocumentsOutput
- type ResolveEndpoint
Constants ¶
const ServiceAPIVersion = "2018-01-01"
const ServiceID = "Json 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 Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client provides the API client to make operations call for Sample Json 1.1 Protocol Service.
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) EmptyOperation ¶
func (c *Client) EmptyOperation(ctx context.Context, params *EmptyOperationInput, optFns ...func(*Options)) (*EmptyOperationOutput, 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) JsonEnums ¶
func (c *Client) JsonEnums(ctx context.Context, params *JsonEnumsInput, optFns ...func(*Options)) (*JsonEnumsOutput, error)
This example serializes enums as top level properties, in lists, sets, and maps.
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) KitchenSinkOperation ¶
func (c *Client) KitchenSinkOperation(ctx context.Context, params *KitchenSinkOperationInput, optFns ...func(*Options)) (*KitchenSinkOperationOutput, error)
func (*Client) NullOperation ¶
func (c *Client) NullOperation(ctx context.Context, params *NullOperationInput, optFns ...func(*Options)) (*NullOperationOutput, error)
func (*Client) OperationWithOptionalInputOutput ¶
func (c *Client) OperationWithOptionalInputOutput(ctx context.Context, params *OperationWithOptionalInputOutputInput, optFns ...func(*Options)) (*OperationWithOptionalInputOutputOutput, error)
func (*Client) PutAndGetInlineDocuments ¶
func (c *Client) PutAndGetInlineDocuments(ctx context.Context, params *PutAndGetInlineDocumentsInput, optFns ...func(*Options)) (*PutAndGetInlineDocumentsOutput, error)
This example serializes an inline document as part of the payload.
type EmptyOperationInput ¶
type EmptyOperationInput struct { }
type EmptyOperationOutput ¶
type EmptyOperationOutput 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 GreetingWithErrorsInput ¶
type GreetingWithErrorsInput struct { }
type GreetingWithErrorsOutput ¶
type GreetingWithErrorsOutput struct { Greeting *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type HTTPSignerV4 ¶
type JsonEnumsInput ¶
type JsonEnumsOutput ¶
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 KitchenSinkOperationInput ¶
type KitchenSinkOperationInput struct { Blob []byte Boolean *bool Double *float64 EmptyStruct *types.EmptyStruct Float *float32 HttpdateTimestamp *time.Time Integer *int32 Iso8601Timestamp *time.Time // This value conforms to the media type: application/json JsonValue *string ListOfLists [][]string ListOfMapsOfStrings []map[string]string ListOfStrings []string ListOfStructs []types.SimpleStruct Long *int64 MapOfListsOfStrings map[string][]string MapOfMaps map[string]map[string]string MapOfStrings map[string]string MapOfStructs map[string]types.SimpleStruct RecursiveList []types.KitchenSink RecursiveMap map[string]types.KitchenSink RecursiveStruct *types.KitchenSink SimpleStruct *types.SimpleStruct String_ *string StructWithLocationName *types.StructWithLocationName Timestamp *time.Time UnixTimestamp *time.Time }
type KitchenSinkOperationOutput ¶
type KitchenSinkOperationOutput struct { Blob []byte Boolean *bool Double *float64 EmptyStruct *types.EmptyStruct Float *float32 HttpdateTimestamp *time.Time Integer *int32 Iso8601Timestamp *time.Time // This value conforms to the media type: application/json JsonValue *string ListOfLists [][]string ListOfMapsOfStrings []map[string]string ListOfStrings []string ListOfStructs []types.SimpleStruct Long *int64 MapOfListsOfStrings map[string][]string MapOfMaps map[string]map[string]string MapOfStrings map[string]string MapOfStructs map[string]types.SimpleStruct RecursiveList []types.KitchenSink RecursiveMap map[string]types.KitchenSink RecursiveStruct *types.KitchenSink SimpleStruct *types.SimpleStruct String_ *string StructWithLocationName *types.StructWithLocationName Timestamp *time.Time UnixTimestamp *time.Time // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
type NullOperationInput ¶
type NullOperationOutput ¶
type OperationWithOptionalInputOutputInput ¶
type OperationWithOptionalInputOutputInput struct {
Value *string
}
type OperationWithOptionalInputOutputOutput ¶
type OperationWithOptionalInputOutputOutput struct { Value *string // 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 credentials object to use when signing requests. Credentials aws.CredentialsProvider // The endpoint options to be used when attempting to resolve an endpoint. EndpointOptions EndpointResolverOptions // The service endpoint resolver. EndpointResolver EndpointResolver // Signature Version 4 (SigV4) Signer HTTPSignerV4 HTTPSignerV4 // 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 PutAndGetInlineDocumentsOutput ¶
type PutAndGetInlineDocumentsOutput struct { InlineDocument smithy.Document // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata }
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
Source Files ¶
- api_client.go
- api_op_EmptyOperation.go
- api_op_GreetingWithErrors.go
- api_op_JsonEnums.go
- api_op_JsonUnions.go
- api_op_KitchenSinkOperation.go
- api_op_NullOperation.go
- api_op_OperationWithOptionalInputOutput.go
- api_op_PutAndGetInlineDocuments.go
- deserializers.go
- doc.go
- endpoints.go
- serializers.go
- validators.go