package jsonrpc
import "github.com/aws/aws-sdk-go-v2/private/protocol/jsonrpc"
Package jsonrpc provides JSON RPC utilities for serialization of AWS requests and responses.
Index ¶
- Variables
- func Build(req *request.Request)
- func Unmarshal(req *request.Request)
- func UnmarshalError(req *request.Request)
- func UnmarshalMeta(req *request.Request)
Variables ¶
var BuildHandler = request.NamedHandler{Name: "awssdk.jsonrpc.Build", Fn: Build}
BuildHandler is a named request handler for building jsonrpc protocol requests
var UnmarshalErrorHandler = request.NamedHandler{Name: "awssdk.jsonrpc.UnmarshalError", Fn: UnmarshalError}
UnmarshalErrorHandler is a named request handler for unmarshaling jsonrpc protocol request errors
var UnmarshalHandler = request.NamedHandler{Name: "awssdk.jsonrpc.Unmarshal", Fn: Unmarshal}
UnmarshalHandler is a named request handler for unmarshaling jsonrpc protocol requests
var UnmarshalMetaHandler = request.NamedHandler{Name: "awssdk.jsonrpc.UnmarshalMeta", Fn: UnmarshalMeta}
UnmarshalMetaHandler is a named request handler for unmarshaling jsonrpc protocol request metadata
Functions ¶
func Build ¶
Build builds a JSON payload for a JSON RPC request.
func Unmarshal ¶
Unmarshal unmarshals a response for a JSON RPC service.
func UnmarshalError ¶
UnmarshalError unmarshals an error response for a JSON RPC service.
func UnmarshalMeta ¶
UnmarshalMeta unmarshals headers from a response for a JSON RPC service.
Source Files ¶
- Version
- v0.9.0
- Published
- May 28, 2019
- Platform
- darwin/amd64
- Imports
- 7 packages
- Last checked
- 3 minutes ago –
Tools for package owners.