Documentation ¶
Overview ¶
Package apigatewaymanagementapi provides the client and types for making API requests to AmazonApiGatewayManagementApi.
The Amazon API Gateway Management API allows you to directly manage runtime aspects of your deployed APIs. To use it, you must explicitly set the SDK's endpoint to point to the endpoint of your deployed API. The endpoint will be of the form https://{api-id}.execute-api.{region}.amazonaws.com/{stage}, or will be the endpoint corresponding to your API's custom domain and base path, if applicable.
See https://docs.aws.amazon.com/goto/WebAPI/apigatewaymanagementapi-2018-11-29 for more information on this service.
See apigatewaymanagementapi package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/apigatewaymanagementapi/
Using the Client ¶
To contact AmazonApiGatewayManagementApi with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.
See the SDK's documentation for more information on how to use the SDK. https://docs.aws.amazon.com/sdk-for-go/api/
See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config
See the AmazonApiGatewayManagementApi client ApiGatewayManagementApi for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/apigatewaymanagementapi/#New
Index ¶
- Constants
- type ApiGatewayManagementApi
- func (c *ApiGatewayManagementApi) DeleteConnection(input *DeleteConnectionInput) (*DeleteConnectionOutput, error)
- func (c *ApiGatewayManagementApi) DeleteConnectionRequest(input *DeleteConnectionInput) (req *request.Request, output *DeleteConnectionOutput)
- func (c *ApiGatewayManagementApi) DeleteConnectionWithContext(ctx aws.Context, input *DeleteConnectionInput, opts ...request.Option) (*DeleteConnectionOutput, error)
- func (c *ApiGatewayManagementApi) GetConnection(input *GetConnectionInput) (*GetConnectionOutput, error)
- func (c *ApiGatewayManagementApi) GetConnectionRequest(input *GetConnectionInput) (req *request.Request, output *GetConnectionOutput)
- func (c *ApiGatewayManagementApi) GetConnectionWithContext(ctx aws.Context, input *GetConnectionInput, opts ...request.Option) (*GetConnectionOutput, error)
- func (c *ApiGatewayManagementApi) PostToConnection(input *PostToConnectionInput) (*PostToConnectionOutput, error)
- func (c *ApiGatewayManagementApi) PostToConnectionRequest(input *PostToConnectionInput) (req *request.Request, output *PostToConnectionOutput)
- func (c *ApiGatewayManagementApi) PostToConnectionWithContext(ctx aws.Context, input *PostToConnectionInput, opts ...request.Option) (*PostToConnectionOutput, error)
- type DeleteConnectionInput
- type DeleteConnectionOutput
- type ForbiddenException
- func (s *ForbiddenException) Code() string
- func (s *ForbiddenException) Error() string
- func (s ForbiddenException) GoString() string
- func (s *ForbiddenException) Message() string
- func (s *ForbiddenException) OrigErr() error
- func (s *ForbiddenException) RequestID() string
- func (s *ForbiddenException) StatusCode() int
- func (s ForbiddenException) String() string
- type GetConnectionInput
- type GetConnectionOutput
- func (s GetConnectionOutput) GoString() string
- func (s *GetConnectionOutput) SetConnectedAt(v time.Time) *GetConnectionOutput
- func (s *GetConnectionOutput) SetIdentity(v *Identity) *GetConnectionOutput
- func (s *GetConnectionOutput) SetLastActiveAt(v time.Time) *GetConnectionOutput
- func (s GetConnectionOutput) String() string
- type GoneException
- func (s *GoneException) Code() string
- func (s *GoneException) Error() string
- func (s GoneException) GoString() string
- func (s *GoneException) Message() string
- func (s *GoneException) OrigErr() error
- func (s *GoneException) RequestID() string
- func (s *GoneException) StatusCode() int
- func (s GoneException) String() string
- type Identity
- type LimitExceededException
- func (s *LimitExceededException) Code() string
- func (s *LimitExceededException) Error() string
- func (s LimitExceededException) GoString() string
- func (s *LimitExceededException) Message() string
- func (s *LimitExceededException) OrigErr() error
- func (s *LimitExceededException) RequestID() string
- func (s *LimitExceededException) StatusCode() int
- func (s LimitExceededException) String() string
- type PayloadTooLargeException
- func (s *PayloadTooLargeException) Code() string
- func (s *PayloadTooLargeException) Error() string
- func (s PayloadTooLargeException) GoString() string
- func (s *PayloadTooLargeException) Message() string
- func (s *PayloadTooLargeException) OrigErr() error
- func (s *PayloadTooLargeException) RequestID() string
- func (s *PayloadTooLargeException) StatusCode() int
- func (s PayloadTooLargeException) String() string
- type PostToConnectionInput
- type PostToConnectionOutput
Constants ¶
const ( // ErrCodeForbiddenException for service response error code // "ForbiddenException". // // The caller is not authorized to invoke this operation. ErrCodeForbiddenException = "ForbiddenException" // ErrCodeGoneException for service response error code // "GoneException". // // The connection with the provided id no longer exists. ErrCodeGoneException = "GoneException" // ErrCodeLimitExceededException for service response error code // "LimitExceededException". // // The client is sending more than the allowed number of requests per unit of // time or the WebSocket client side buffer is full. ErrCodeLimitExceededException = "LimitExceededException" // ErrCodePayloadTooLargeException for service response error code // "PayloadTooLargeException". // // The data has exceeded the maximum size allowed. ErrCodePayloadTooLargeException = "PayloadTooLargeException" )
const ( ServiceName = "ApiGatewayManagementApi" // Name of service. EndpointsID = "execute-api" // ID to lookup a service endpoint with. ServiceID = "ApiGatewayManagementApi" // ServiceID is a unique identifier of a specific service. )
Service information constants
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ApiGatewayManagementApi ¶
ApiGatewayManagementApi provides the API operation methods for making requests to AmazonApiGatewayManagementApi. See this package's package overview docs for details on the service.
ApiGatewayManagementApi methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.
func New ¶
func New(p client.ConfigProvider, cfgs ...*aws.Config) *ApiGatewayManagementApi
New creates a new instance of the ApiGatewayManagementApi client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.
Example:
mySession := session.Must(session.NewSession()) // Create a ApiGatewayManagementApi client from just a session. svc := apigatewaymanagementapi.New(mySession) // Create a ApiGatewayManagementApi client with additional configuration svc := apigatewaymanagementapi.New(mySession, aws.NewConfig().WithRegion("us-west-2"))
func (*ApiGatewayManagementApi) DeleteConnection ¶ added in v1.23.13
func (c *ApiGatewayManagementApi) DeleteConnection(input *DeleteConnectionInput) (*DeleteConnectionOutput, error)
DeleteConnection API operation for AmazonApiGatewayManagementApi.
Delete the connection with the provided id.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AmazonApiGatewayManagementApi's API operation DeleteConnection for usage and error information.
Returned Error Types:
GoneException The connection with the provided id no longer exists.
LimitExceededException The client is sending more than the allowed number of requests per unit of time or the WebSocket client side buffer is full.
ForbiddenException The caller is not authorized to invoke this operation.
See also, https://docs.aws.amazon.com/goto/WebAPI/apigatewaymanagementapi-2018-11-29/DeleteConnection
func (*ApiGatewayManagementApi) DeleteConnectionRequest ¶ added in v1.23.13
func (c *ApiGatewayManagementApi) DeleteConnectionRequest(input *DeleteConnectionInput) (req *request.Request, output *DeleteConnectionOutput)
DeleteConnectionRequest generates a "aws/request.Request" representing the client's request for the DeleteConnection operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See DeleteConnection for more information on using the DeleteConnection API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the DeleteConnectionRequest method. req, resp := client.DeleteConnectionRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/apigatewaymanagementapi-2018-11-29/DeleteConnection
func (*ApiGatewayManagementApi) DeleteConnectionWithContext ¶ added in v1.23.13
func (c *ApiGatewayManagementApi) DeleteConnectionWithContext(ctx aws.Context, input *DeleteConnectionInput, opts ...request.Option) (*DeleteConnectionOutput, error)
DeleteConnectionWithContext is the same as DeleteConnection with the addition of the ability to pass a context and additional request options.
See DeleteConnection for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*ApiGatewayManagementApi) GetConnection ¶ added in v1.23.13
func (c *ApiGatewayManagementApi) GetConnection(input *GetConnectionInput) (*GetConnectionOutput, error)
GetConnection API operation for AmazonApiGatewayManagementApi.
Get information about the connection with the provided id.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AmazonApiGatewayManagementApi's API operation GetConnection for usage and error information.
Returned Error Types:
GoneException The connection with the provided id no longer exists.
LimitExceededException The client is sending more than the allowed number of requests per unit of time or the WebSocket client side buffer is full.
ForbiddenException The caller is not authorized to invoke this operation.
See also, https://docs.aws.amazon.com/goto/WebAPI/apigatewaymanagementapi-2018-11-29/GetConnection
func (*ApiGatewayManagementApi) GetConnectionRequest ¶ added in v1.23.13
func (c *ApiGatewayManagementApi) GetConnectionRequest(input *GetConnectionInput) (req *request.Request, output *GetConnectionOutput)
GetConnectionRequest generates a "aws/request.Request" representing the client's request for the GetConnection operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See GetConnection for more information on using the GetConnection API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the GetConnectionRequest method. req, resp := client.GetConnectionRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/apigatewaymanagementapi-2018-11-29/GetConnection
func (*ApiGatewayManagementApi) GetConnectionWithContext ¶ added in v1.23.13
func (c *ApiGatewayManagementApi) GetConnectionWithContext(ctx aws.Context, input *GetConnectionInput, opts ...request.Option) (*GetConnectionOutput, error)
GetConnectionWithContext is the same as GetConnection with the addition of the ability to pass a context and additional request options.
See GetConnection for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
func (*ApiGatewayManagementApi) PostToConnection ¶
func (c *ApiGatewayManagementApi) PostToConnection(input *PostToConnectionInput) (*PostToConnectionOutput, error)
PostToConnection API operation for AmazonApiGatewayManagementApi.
Sends the provided data to the specified connection.
Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.
See the AWS API reference guide for AmazonApiGatewayManagementApi's API operation PostToConnection for usage and error information.
Returned Error Types:
GoneException The connection with the provided id no longer exists.
LimitExceededException The client is sending more than the allowed number of requests per unit of time or the WebSocket client side buffer is full.
PayloadTooLargeException The data has exceeded the maximum size allowed.
ForbiddenException The caller is not authorized to invoke this operation.
See also, https://docs.aws.amazon.com/goto/WebAPI/apigatewaymanagementapi-2018-11-29/PostToConnection
func (*ApiGatewayManagementApi) PostToConnectionRequest ¶
func (c *ApiGatewayManagementApi) PostToConnectionRequest(input *PostToConnectionInput) (req *request.Request, output *PostToConnectionOutput)
PostToConnectionRequest generates a "aws/request.Request" representing the client's request for the PostToConnection operation. The "output" return value will be populated with the request's response once the request completes successfully.
Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.
See PostToConnection for more information on using the PostToConnection API call, and error handling.
This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.
// Example sending a request using the PostToConnectionRequest method. req, resp := client.PostToConnectionRequest(params) err := req.Send() if err == nil { // resp is now filled fmt.Println(resp) }
See also, https://docs.aws.amazon.com/goto/WebAPI/apigatewaymanagementapi-2018-11-29/PostToConnection
func (*ApiGatewayManagementApi) PostToConnectionWithContext ¶
func (c *ApiGatewayManagementApi) PostToConnectionWithContext(ctx aws.Context, input *PostToConnectionInput, opts ...request.Option) (*PostToConnectionOutput, error)
PostToConnectionWithContext is the same as PostToConnection with the addition of the ability to pass a context and additional request options.
See PostToConnection for details on how to use this API operation.
The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.
type DeleteConnectionInput ¶ added in v1.23.13
type DeleteConnectionInput struct { // ConnectionId is a required field ConnectionId *string `location:"uri" locationName:"connectionId" type:"string" required:"true"` // contains filtered or unexported fields }
func (DeleteConnectionInput) GoString ¶ added in v1.23.13
func (s DeleteConnectionInput) GoString() string
GoString returns the string representation
func (*DeleteConnectionInput) SetConnectionId ¶ added in v1.23.13
func (s *DeleteConnectionInput) SetConnectionId(v string) *DeleteConnectionInput
SetConnectionId sets the ConnectionId field's value.
func (DeleteConnectionInput) String ¶ added in v1.23.13
func (s DeleteConnectionInput) String() string
String returns the string representation
func (*DeleteConnectionInput) Validate ¶ added in v1.23.13
func (s *DeleteConnectionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteConnectionOutput ¶ added in v1.23.13
type DeleteConnectionOutput struct {
// contains filtered or unexported fields
}
func (DeleteConnectionOutput) GoString ¶ added in v1.23.13
func (s DeleteConnectionOutput) GoString() string
GoString returns the string representation
func (DeleteConnectionOutput) String ¶ added in v1.23.13
func (s DeleteConnectionOutput) String() string
String returns the string representation
type ForbiddenException ¶ added in v1.28.0
type ForbiddenException struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The caller is not authorized to invoke this operation.
func (*ForbiddenException) Code ¶ added in v1.28.0
func (s *ForbiddenException) Code() string
Code returns the exception type name.
func (*ForbiddenException) Error ¶ added in v1.28.0
func (s *ForbiddenException) Error() string
func (ForbiddenException) GoString ¶ added in v1.28.0
func (s ForbiddenException) GoString() string
GoString returns the string representation
func (*ForbiddenException) Message ¶ added in v1.28.0
func (s *ForbiddenException) Message() string
Message returns the exception's message.
func (*ForbiddenException) OrigErr ¶ added in v1.28.0
func (s *ForbiddenException) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (*ForbiddenException) RequestID ¶ added in v1.28.0
func (s *ForbiddenException) RequestID() string
RequestID returns the service's response RequestID for request.
func (*ForbiddenException) StatusCode ¶ added in v1.28.0
func (s *ForbiddenException) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (ForbiddenException) String ¶ added in v1.28.0
func (s ForbiddenException) String() string
String returns the string representation
type GetConnectionInput ¶ added in v1.23.13
type GetConnectionInput struct { // ConnectionId is a required field ConnectionId *string `location:"uri" locationName:"connectionId" type:"string" required:"true"` // contains filtered or unexported fields }
func (GetConnectionInput) GoString ¶ added in v1.23.13
func (s GetConnectionInput) GoString() string
GoString returns the string representation
func (*GetConnectionInput) SetConnectionId ¶ added in v1.23.13
func (s *GetConnectionInput) SetConnectionId(v string) *GetConnectionInput
SetConnectionId sets the ConnectionId field's value.
func (GetConnectionInput) String ¶ added in v1.23.13
func (s GetConnectionInput) String() string
String returns the string representation
func (*GetConnectionInput) Validate ¶ added in v1.23.13
func (s *GetConnectionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type GetConnectionOutput ¶ added in v1.23.13
type GetConnectionOutput struct { ConnectedAt *time.Time `locationName:"connectedAt" type:"timestamp" timestampFormat:"iso8601"` Identity *Identity `locationName:"identity" type:"structure"` LastActiveAt *time.Time `locationName:"lastActiveAt" type:"timestamp" timestampFormat:"iso8601"` // contains filtered or unexported fields }
func (GetConnectionOutput) GoString ¶ added in v1.23.13
func (s GetConnectionOutput) GoString() string
GoString returns the string representation
func (*GetConnectionOutput) SetConnectedAt ¶ added in v1.23.13
func (s *GetConnectionOutput) SetConnectedAt(v time.Time) *GetConnectionOutput
SetConnectedAt sets the ConnectedAt field's value.
func (*GetConnectionOutput) SetIdentity ¶ added in v1.23.13
func (s *GetConnectionOutput) SetIdentity(v *Identity) *GetConnectionOutput
SetIdentity sets the Identity field's value.
func (*GetConnectionOutput) SetLastActiveAt ¶ added in v1.23.13
func (s *GetConnectionOutput) SetLastActiveAt(v time.Time) *GetConnectionOutput
SetLastActiveAt sets the LastActiveAt field's value.
func (GetConnectionOutput) String ¶ added in v1.23.13
func (s GetConnectionOutput) String() string
String returns the string representation
type GoneException ¶ added in v1.28.0
type GoneException struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The connection with the provided id no longer exists.
func (*GoneException) Code ¶ added in v1.28.0
func (s *GoneException) Code() string
Code returns the exception type name.
func (*GoneException) Error ¶ added in v1.28.0
func (s *GoneException) Error() string
func (GoneException) GoString ¶ added in v1.28.0
func (s GoneException) GoString() string
GoString returns the string representation
func (*GoneException) Message ¶ added in v1.28.0
func (s *GoneException) Message() string
Message returns the exception's message.
func (*GoneException) OrigErr ¶ added in v1.28.0
func (s *GoneException) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (*GoneException) RequestID ¶ added in v1.28.0
func (s *GoneException) RequestID() string
RequestID returns the service's response RequestID for request.
func (*GoneException) StatusCode ¶ added in v1.28.0
func (s *GoneException) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (GoneException) String ¶ added in v1.28.0
func (s GoneException) String() string
String returns the string representation
type Identity ¶ added in v1.23.13
type Identity struct { // The source IP address of the TCP connection making the request to API Gateway. // // SourceIp is a required field SourceIp *string `locationName:"sourceIp" type:"string" required:"true"` // The User Agent of the API caller. // // UserAgent is a required field UserAgent *string `locationName:"userAgent" type:"string" required:"true"` // contains filtered or unexported fields }
func (*Identity) SetSourceIp ¶ added in v1.23.13
SetSourceIp sets the SourceIp field's value.
func (*Identity) SetUserAgent ¶ added in v1.23.13
SetUserAgent sets the UserAgent field's value.
type LimitExceededException ¶ added in v1.28.0
type LimitExceededException struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The client is sending more than the allowed number of requests per unit of time or the WebSocket client side buffer is full.
func (*LimitExceededException) Code ¶ added in v1.28.0
func (s *LimitExceededException) Code() string
Code returns the exception type name.
func (*LimitExceededException) Error ¶ added in v1.28.0
func (s *LimitExceededException) Error() string
func (LimitExceededException) GoString ¶ added in v1.28.0
func (s LimitExceededException) GoString() string
GoString returns the string representation
func (*LimitExceededException) Message ¶ added in v1.28.0
func (s *LimitExceededException) Message() string
Message returns the exception's message.
func (*LimitExceededException) OrigErr ¶ added in v1.28.0
func (s *LimitExceededException) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (*LimitExceededException) RequestID ¶ added in v1.28.0
func (s *LimitExceededException) RequestID() string
RequestID returns the service's response RequestID for request.
func (*LimitExceededException) StatusCode ¶ added in v1.28.0
func (s *LimitExceededException) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (LimitExceededException) String ¶ added in v1.28.0
func (s LimitExceededException) String() string
String returns the string representation
type PayloadTooLargeException ¶ added in v1.28.0
type PayloadTooLargeException struct { RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` Message_ *string `locationName:"message" type:"string"` // contains filtered or unexported fields }
The data has exceeded the maximum size allowed.
func (*PayloadTooLargeException) Code ¶ added in v1.28.0
func (s *PayloadTooLargeException) Code() string
Code returns the exception type name.
func (*PayloadTooLargeException) Error ¶ added in v1.28.0
func (s *PayloadTooLargeException) Error() string
func (PayloadTooLargeException) GoString ¶ added in v1.28.0
func (s PayloadTooLargeException) GoString() string
GoString returns the string representation
func (*PayloadTooLargeException) Message ¶ added in v1.28.0
func (s *PayloadTooLargeException) Message() string
Message returns the exception's message.
func (*PayloadTooLargeException) OrigErr ¶ added in v1.28.0
func (s *PayloadTooLargeException) OrigErr() error
OrigErr always returns nil, satisfies awserr.Error interface.
func (*PayloadTooLargeException) RequestID ¶ added in v1.28.0
func (s *PayloadTooLargeException) RequestID() string
RequestID returns the service's response RequestID for request.
func (*PayloadTooLargeException) StatusCode ¶ added in v1.28.0
func (s *PayloadTooLargeException) StatusCode() int
Status code returns the HTTP status code for the request's response error.
func (PayloadTooLargeException) String ¶ added in v1.28.0
func (s PayloadTooLargeException) String() string
String returns the string representation
type PostToConnectionInput ¶
type PostToConnectionInput struct { // ConnectionId is a required field ConnectionId *string `location:"uri" locationName:"connectionId" type:"string" required:"true"` // The data to be sent to the client specified by its connection id. // // Data is a required field Data []byte `type:"blob" required:"true"` // contains filtered or unexported fields }
func (PostToConnectionInput) GoString ¶
func (s PostToConnectionInput) GoString() string
GoString returns the string representation
func (*PostToConnectionInput) SetConnectionId ¶
func (s *PostToConnectionInput) SetConnectionId(v string) *PostToConnectionInput
SetConnectionId sets the ConnectionId field's value.
func (*PostToConnectionInput) SetData ¶
func (s *PostToConnectionInput) SetData(v []byte) *PostToConnectionInput
SetData sets the Data field's value.
func (PostToConnectionInput) String ¶
func (s PostToConnectionInput) String() string
String returns the string representation
func (*PostToConnectionInput) Validate ¶
func (s *PostToConnectionInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type PostToConnectionOutput ¶
type PostToConnectionOutput struct {
// contains filtered or unexported fields
}
func (PostToConnectionOutput) GoString ¶
func (s PostToConnectionOutput) GoString() string
GoString returns the string representation
func (PostToConnectionOutput) String ¶
func (s PostToConnectionOutput) String() string
String returns the string representation
Directories ¶
Path | Synopsis |
---|---|
Package apigatewaymanagementapiiface provides an interface to enable mocking the AmazonApiGatewayManagementApi service client for testing your code.
|
Package apigatewaymanagementapiiface provides an interface to enable mocking the AmazonApiGatewayManagementApi service client for testing your code. |