Documentation ¶
Overview ¶
Package iotdataplane provides the client and types for making API requests to AWS IoT Data Plane.
AWS IoT-Data enables secure, bi-directional communication between Internet-connected things (such as sensors, actuators, embedded devices, or smart appliances) and the AWS cloud. It implements a broker for applications and things to publish messages over HTTP (Publish) and retrieve, update, and delete thing shadows. A thing shadow is a persistent representation of your things and their state in the AWS cloud.
See iotdataplane package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/iotdataplane/
Using the Client ¶
To AWS IoT Data Plane 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 AWS IoT Data Plane client IoTDataPlane for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/iotdataplane/#New
Index ¶
- Constants
- type DeleteThingShadowInput
- type DeleteThingShadowOutput
- type DeleteThingShadowRequest
- type GetThingShadowInput
- type GetThingShadowOutput
- type GetThingShadowRequest
- type IoTDataPlane
- func (c *IoTDataPlane) DeleteThingShadowRequest(input *DeleteThingShadowInput) DeleteThingShadowRequest
- func (c *IoTDataPlane) GetThingShadowRequest(input *GetThingShadowInput) GetThingShadowRequest
- func (c *IoTDataPlane) PublishRequest(input *PublishInput) PublishRequest
- func (c *IoTDataPlane) UpdateThingShadowRequest(input *UpdateThingShadowInput) UpdateThingShadowRequest
- type PublishInput
- type PublishOutput
- type PublishRequest
- type UpdateThingShadowInput
- func (s UpdateThingShadowInput) GoString() string
- func (s *UpdateThingShadowInput) SetPayload(v []byte) *UpdateThingShadowInput
- func (s *UpdateThingShadowInput) SetThingName(v string) *UpdateThingShadowInput
- func (s UpdateThingShadowInput) String() string
- func (s *UpdateThingShadowInput) Validate() error
- type UpdateThingShadowOutput
- type UpdateThingShadowRequest
Constants ¶
const ( // ErrCodeConflictException for service response error code // "ConflictException". // // The specified version does not match the version of the document. ErrCodeConflictException = "ConflictException" // ErrCodeInternalFailureException for service response error code // "InternalFailureException". // // An unexpected error has occurred. ErrCodeInternalFailureException = "InternalFailureException" // ErrCodeInvalidRequestException for service response error code // "InvalidRequestException". // // The request is not valid. ErrCodeInvalidRequestException = "InvalidRequestException" // ErrCodeMethodNotAllowedException for service response error code // "MethodNotAllowedException". // // The specified combination of HTTP verb and URI is not supported. ErrCodeMethodNotAllowedException = "MethodNotAllowedException" // ErrCodeRequestEntityTooLargeException for service response error code // "RequestEntityTooLargeException". // // The payload exceeds the maximum size allowed. ErrCodeRequestEntityTooLargeException = "RequestEntityTooLargeException" // ErrCodeResourceNotFoundException for service response error code // "ResourceNotFoundException". // // The specified resource does not exist. ErrCodeResourceNotFoundException = "ResourceNotFoundException" // "ServiceUnavailableException". // // The service is temporarily unavailable. ErrCodeServiceUnavailableException = "ServiceUnavailableException" // ErrCodeThrottlingException for service response error code // "ThrottlingException". // // The rate exceeds the limit. ErrCodeThrottlingException = "ThrottlingException" // "UnauthorizedException". // // You are not authorized to perform this operation. ErrCodeUnauthorizedException = "UnauthorizedException" // ErrCodeUnsupportedDocumentEncodingException for service response error code // "UnsupportedDocumentEncodingException". // // The document encoding is not supported. ErrCodeUnsupportedDocumentEncodingException = "UnsupportedDocumentEncodingException" )
const ( ServiceName = "data.iot" // Service endpoint prefix API calls made to. EndpointsID = ServiceName // Service ID for Regions and Endpoints metadata. )
Service information constants
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DeleteThingShadowInput ¶
type DeleteThingShadowInput struct { // The name of the thing. // // ThingName is a required field ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
The input for the DeleteThingShadow operation.
func (DeleteThingShadowInput) GoString ¶
func (s DeleteThingShadowInput) GoString() string
GoString returns the string representation
func (*DeleteThingShadowInput) SetThingName ¶
func (s *DeleteThingShadowInput) SetThingName(v string) *DeleteThingShadowInput
SetThingName sets the ThingName field's value.
func (DeleteThingShadowInput) String ¶
func (s DeleteThingShadowInput) String() string
String returns the string representation
func (*DeleteThingShadowInput) Validate ¶
func (s *DeleteThingShadowInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteThingShadowOutput ¶
type DeleteThingShadowOutput struct { // The state information, in JSON format. // // Payload is a required field Payload []byte `locationName:"payload" type:"blob" required:"true"` // contains filtered or unexported fields }
The output from the DeleteThingShadow operation.
func (DeleteThingShadowOutput) GoString ¶
func (s DeleteThingShadowOutput) GoString() string
GoString returns the string representation
func (DeleteThingShadowOutput) SDKResponseMetadata ¶
func (s DeleteThingShadowOutput) SDKResponseMetadata() aws.Response
SDKResponseMetdata return sthe response metadata for the API.
func (*DeleteThingShadowOutput) SetPayload ¶
func (s *DeleteThingShadowOutput) SetPayload(v []byte) *DeleteThingShadowOutput
SetPayload sets the Payload field's value.
func (DeleteThingShadowOutput) String ¶
func (s DeleteThingShadowOutput) String() string
String returns the string representation
type DeleteThingShadowRequest ¶
type DeleteThingShadowRequest struct { *aws.Request Input *DeleteThingShadowInput }
DeleteThingShadowRequest is a API request type for the DeleteThingShadow API operation.
func (DeleteThingShadowRequest) Send ¶
func (r DeleteThingShadowRequest) Send() (*DeleteThingShadowOutput, error)
Send marshals and sends the DeleteThingShadow API request.
type GetThingShadowInput ¶
type GetThingShadowInput struct { // The name of the thing. // // ThingName is a required field ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
The input for the GetThingShadow operation.
func (GetThingShadowInput) GoString ¶
func (s GetThingShadowInput) GoString() string
GoString returns the string representation
func (*GetThingShadowInput) SetThingName ¶
func (s *GetThingShadowInput) SetThingName(v string) *GetThingShadowInput
SetThingName sets the ThingName field's value.
func (GetThingShadowInput) String ¶
func (s GetThingShadowInput) String() string
String returns the string representation
func (*GetThingShadowInput) Validate ¶
func (s *GetThingShadowInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type GetThingShadowOutput ¶
type GetThingShadowOutput struct { // The state information, in JSON format. Payload []byte `locationName:"payload" type:"blob"` // contains filtered or unexported fields }
The output from the GetThingShadow operation.
func (GetThingShadowOutput) GoString ¶
func (s GetThingShadowOutput) GoString() string
GoString returns the string representation
func (GetThingShadowOutput) SDKResponseMetadata ¶
func (s GetThingShadowOutput) SDKResponseMetadata() aws.Response
SDKResponseMetdata return sthe response metadata for the API.
func (*GetThingShadowOutput) SetPayload ¶
func (s *GetThingShadowOutput) SetPayload(v []byte) *GetThingShadowOutput
SetPayload sets the Payload field's value.
func (GetThingShadowOutput) String ¶
func (s GetThingShadowOutput) String() string
String returns the string representation
type GetThingShadowRequest ¶
type GetThingShadowRequest struct { *aws.Request Input *GetThingShadowInput }
GetThingShadowRequest is a API request type for the GetThingShadow API operation.
func (GetThingShadowRequest) Send ¶
func (r GetThingShadowRequest) Send() (*GetThingShadowOutput, error)
Send marshals and sends the GetThingShadow API request.
type IoTDataPlane ¶
IoTDataPlane provides the API operation methods for making requests to AWS IoT Data Plane. See this package's package overview docs for details on the service.
IoTDataPlane methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.
func New ¶
func New(config aws.Config) *IoTDataPlane
New creates a new instance of the IoTDataPlane client with a config. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.
Example:
// Create a IoTDataPlane client from just a config. svc := iotdataplane.New(myConfig) // Create a IoTDataPlane client with additional configuration svc := iotdataplane.New(myConfig, aws.NewConfig().WithRegion("us-west-2"))
func (*IoTDataPlane) DeleteThingShadowRequest ¶
func (c *IoTDataPlane) DeleteThingShadowRequest(input *DeleteThingShadowInput) DeleteThingShadowRequest
DeleteThingShadowRequest returns a request value for making API operation for AWS IoT Data Plane.
Deletes the thing shadow for the specified thing.
For more information, see DeleteThingShadow (http://docs.aws.amazon.com/iot/latest/developerguide/API_DeleteThingShadow.html) in the AWS IoT Developer Guide.
// Example sending a request using the DeleteThingShadowRequest method. req := client.DeleteThingShadowRequest(params) resp, err := req.Send() if err == nil { fmt.Println(resp) }
func (*IoTDataPlane) GetThingShadowRequest ¶
func (c *IoTDataPlane) GetThingShadowRequest(input *GetThingShadowInput) GetThingShadowRequest
GetThingShadowRequest returns a request value for making API operation for AWS IoT Data Plane.
Gets the thing shadow for the specified thing.
For more information, see GetThingShadow (http://docs.aws.amazon.com/iot/latest/developerguide/API_GetThingShadow.html) in the AWS IoT Developer Guide.
// Example sending a request using the GetThingShadowRequest method. req := client.GetThingShadowRequest(params) resp, err := req.Send() if err == nil { fmt.Println(resp) }
func (*IoTDataPlane) PublishRequest ¶
func (c *IoTDataPlane) PublishRequest(input *PublishInput) PublishRequest
PublishRequest returns a request value for making API operation for AWS IoT Data Plane.
Publishes state information.
For more information, see HTTP Protocol (http://docs.aws.amazon.com/iot/latest/developerguide/protocols.html#http) in the AWS IoT Developer Guide.
// Example sending a request using the PublishRequest method. req := client.PublishRequest(params) resp, err := req.Send() if err == nil { fmt.Println(resp) }
func (*IoTDataPlane) UpdateThingShadowRequest ¶
func (c *IoTDataPlane) UpdateThingShadowRequest(input *UpdateThingShadowInput) UpdateThingShadowRequest
UpdateThingShadowRequest returns a request value for making API operation for AWS IoT Data Plane.
Updates the thing shadow for the specified thing.
For more information, see UpdateThingShadow (http://docs.aws.amazon.com/iot/latest/developerguide/API_UpdateThingShadow.html) in the AWS IoT Developer Guide.
// Example sending a request using the UpdateThingShadowRequest method. req := client.UpdateThingShadowRequest(params) resp, err := req.Send() if err == nil { fmt.Println(resp) }
type PublishInput ¶
type PublishInput struct { // The state information, in JSON format. Payload []byte `locationName:"payload" type:"blob"` // The Quality of Service (QoS) level. Qos *int64 `location:"querystring" locationName:"qos" type:"integer"` // The name of the MQTT topic. // // Topic is a required field Topic *string `location:"uri" locationName:"topic" type:"string" required:"true"` // contains filtered or unexported fields }
The input for the Publish operation.
func (PublishInput) GoString ¶
func (s PublishInput) GoString() string
GoString returns the string representation
func (*PublishInput) SetPayload ¶
func (s *PublishInput) SetPayload(v []byte) *PublishInput
SetPayload sets the Payload field's value.
func (*PublishInput) SetQos ¶
func (s *PublishInput) SetQos(v int64) *PublishInput
SetQos sets the Qos field's value.
func (*PublishInput) SetTopic ¶
func (s *PublishInput) SetTopic(v string) *PublishInput
SetTopic sets the Topic field's value.
func (PublishInput) String ¶
func (s PublishInput) String() string
String returns the string representation
func (*PublishInput) Validate ¶
func (s *PublishInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type PublishOutput ¶
type PublishOutput struct {
// contains filtered or unexported fields
}
func (PublishOutput) GoString ¶
func (s PublishOutput) GoString() string
GoString returns the string representation
func (PublishOutput) SDKResponseMetadata ¶
func (s PublishOutput) SDKResponseMetadata() aws.Response
SDKResponseMetdata return sthe response metadata for the API.
func (PublishOutput) String ¶
func (s PublishOutput) String() string
String returns the string representation
type PublishRequest ¶
type PublishRequest struct { *aws.Request Input *PublishInput }
PublishRequest is a API request type for the Publish API operation.
func (PublishRequest) Send ¶
func (r PublishRequest) Send() (*PublishOutput, error)
Send marshals and sends the Publish API request.
type UpdateThingShadowInput ¶
type UpdateThingShadowInput struct { // The state information, in JSON format. // // Payload is a required field Payload []byte `locationName:"payload" type:"blob" required:"true"` // The name of the thing. // // ThingName is a required field ThingName *string `location:"uri" locationName:"thingName" min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
The input for the UpdateThingShadow operation.
func (UpdateThingShadowInput) GoString ¶
func (s UpdateThingShadowInput) GoString() string
GoString returns the string representation
func (*UpdateThingShadowInput) SetPayload ¶
func (s *UpdateThingShadowInput) SetPayload(v []byte) *UpdateThingShadowInput
SetPayload sets the Payload field's value.
func (*UpdateThingShadowInput) SetThingName ¶
func (s *UpdateThingShadowInput) SetThingName(v string) *UpdateThingShadowInput
SetThingName sets the ThingName field's value.
func (UpdateThingShadowInput) String ¶
func (s UpdateThingShadowInput) String() string
String returns the string representation
func (*UpdateThingShadowInput) Validate ¶
func (s *UpdateThingShadowInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type UpdateThingShadowOutput ¶
type UpdateThingShadowOutput struct { // The state information, in JSON format. Payload []byte `locationName:"payload" type:"blob"` // contains filtered or unexported fields }
The output from the UpdateThingShadow operation.
func (UpdateThingShadowOutput) GoString ¶
func (s UpdateThingShadowOutput) GoString() string
GoString returns the string representation
func (UpdateThingShadowOutput) SDKResponseMetadata ¶
func (s UpdateThingShadowOutput) SDKResponseMetadata() aws.Response
SDKResponseMetdata return sthe response metadata for the API.
func (*UpdateThingShadowOutput) SetPayload ¶
func (s *UpdateThingShadowOutput) SetPayload(v []byte) *UpdateThingShadowOutput
SetPayload sets the Payload field's value.
func (UpdateThingShadowOutput) String ¶
func (s UpdateThingShadowOutput) String() string
String returns the string representation
type UpdateThingShadowRequest ¶
type UpdateThingShadowRequest struct { *aws.Request Input *UpdateThingShadowInput }
UpdateThingShadowRequest is a API request type for the UpdateThingShadow API operation.
func (UpdateThingShadowRequest) Send ¶
func (r UpdateThingShadowRequest) Send() (*UpdateThingShadowOutput, error)
Send marshals and sends the UpdateThingShadow API request.
Directories ¶
Path | Synopsis |
---|---|
Package iotdataplaneiface provides an interface to enable mocking the AWS IoT Data Plane service client for testing your code.
|
Package iotdataplaneiface provides an interface to enable mocking the AWS IoT Data Plane service client for testing your code. |