interface.go 1.2 KB

123456789101112131415161718192021222324252627282930
  1. // THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
  2. // Package iotdataplaneiface provides an interface for the AWS IoT Data Plane.
  3. package iotdataplaneiface
  4. import (
  5. "github.com/aws/aws-sdk-go/aws/request"
  6. "github.com/aws/aws-sdk-go/service/iotdataplane"
  7. )
  8. // IoTDataPlaneAPI is the interface type for iotdataplane.IoTDataPlane.
  9. type IoTDataPlaneAPI interface {
  10. DeleteThingShadowRequest(*iotdataplane.DeleteThingShadowInput) (*request.Request, *iotdataplane.DeleteThingShadowOutput)
  11. DeleteThingShadow(*iotdataplane.DeleteThingShadowInput) (*iotdataplane.DeleteThingShadowOutput, error)
  12. GetThingShadowRequest(*iotdataplane.GetThingShadowInput) (*request.Request, *iotdataplane.GetThingShadowOutput)
  13. GetThingShadow(*iotdataplane.GetThingShadowInput) (*iotdataplane.GetThingShadowOutput, error)
  14. PublishRequest(*iotdataplane.PublishInput) (*request.Request, *iotdataplane.PublishOutput)
  15. Publish(*iotdataplane.PublishInput) (*iotdataplane.PublishOutput, error)
  16. UpdateThingShadowRequest(*iotdataplane.UpdateThingShadowInput) (*request.Request, *iotdataplane.UpdateThingShadowOutput)
  17. UpdateThingShadow(*iotdataplane.UpdateThingShadowInput) (*iotdataplane.UpdateThingShadowOutput, error)
  18. }
  19. var _ IoTDataPlaneAPI = (*iotdataplane.IoTDataPlane)(nil)