interface.go 588 B

12345678910111213141516
  1. // THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
  2. // Package mobileanalyticsiface provides an interface for the Amazon Mobile Analytics.
  3. package mobileanalyticsiface
  4. import (
  5. "github.com/aws/aws-sdk-go/aws/request"
  6. "github.com/aws/aws-sdk-go/service/mobileanalytics"
  7. )
  8. // MobileAnalyticsAPI is the interface type for mobileanalytics.MobileAnalytics.
  9. type MobileAnalyticsAPI interface {
  10. PutEventsRequest(*mobileanalytics.PutEventsInput) (*request.Request, *mobileanalytics.PutEventsOutput)
  11. PutEvents(*mobileanalytics.PutEventsInput) (*mobileanalytics.PutEventsOutput, error)
  12. }