12345678910111213141516 |
- // THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
- // Package mobileanalyticsiface provides an interface for the Amazon Mobile Analytics.
- package mobileanalyticsiface
- import (
- "github.com/aws/aws-sdk-go/aws/request"
- "github.com/aws/aws-sdk-go/service/mobileanalytics"
- )
- // MobileAnalyticsAPI is the interface type for mobileanalytics.MobileAnalytics.
- type MobileAnalyticsAPI interface {
- PutEventsRequest(*mobileanalytics.PutEventsInput) (*request.Request, *mobileanalytics.PutEventsOutput)
- PutEvents(*mobileanalytics.PutEventsInput) (*mobileanalytics.PutEventsOutput, error)
- }
|