forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interface.go
84 lines (46 loc) · 4.7 KB
/
interface.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package cognitoidentityiface provides an interface for the Amazon Cognito Identity.
package cognitoidentityiface
import (
"github.com/aws/aws-sdk-go/aws/service"
"github.com/aws/aws-sdk-go/service/cognitoidentity"
)
// CognitoIdentityAPI is the interface type for cognitoidentity.CognitoIdentity.
type CognitoIdentityAPI interface {
CreateIdentityPoolRequest(*cognitoidentity.CreateIdentityPoolInput) (*service.Request, *cognitoidentity.IdentityPool)
CreateIdentityPool(*cognitoidentity.CreateIdentityPoolInput) (*cognitoidentity.IdentityPool, error)
DeleteIdentitiesRequest(*cognitoidentity.DeleteIdentitiesInput) (*service.Request, *cognitoidentity.DeleteIdentitiesOutput)
DeleteIdentities(*cognitoidentity.DeleteIdentitiesInput) (*cognitoidentity.DeleteIdentitiesOutput, error)
DeleteIdentityPoolRequest(*cognitoidentity.DeleteIdentityPoolInput) (*service.Request, *cognitoidentity.DeleteIdentityPoolOutput)
DeleteIdentityPool(*cognitoidentity.DeleteIdentityPoolInput) (*cognitoidentity.DeleteIdentityPoolOutput, error)
DescribeIdentityRequest(*cognitoidentity.DescribeIdentityInput) (*service.Request, *cognitoidentity.IdentityDescription)
DescribeIdentity(*cognitoidentity.DescribeIdentityInput) (*cognitoidentity.IdentityDescription, error)
DescribeIdentityPoolRequest(*cognitoidentity.DescribeIdentityPoolInput) (*service.Request, *cognitoidentity.IdentityPool)
DescribeIdentityPool(*cognitoidentity.DescribeIdentityPoolInput) (*cognitoidentity.IdentityPool, error)
GetCredentialsForIdentityRequest(*cognitoidentity.GetCredentialsForIdentityInput) (*service.Request, *cognitoidentity.GetCredentialsForIdentityOutput)
GetCredentialsForIdentity(*cognitoidentity.GetCredentialsForIdentityInput) (*cognitoidentity.GetCredentialsForIdentityOutput, error)
GetIDRequest(*cognitoidentity.GetIDInput) (*service.Request, *cognitoidentity.GetIDOutput)
GetID(*cognitoidentity.GetIDInput) (*cognitoidentity.GetIDOutput, error)
GetIdentityPoolRolesRequest(*cognitoidentity.GetIdentityPoolRolesInput) (*service.Request, *cognitoidentity.GetIdentityPoolRolesOutput)
GetIdentityPoolRoles(*cognitoidentity.GetIdentityPoolRolesInput) (*cognitoidentity.GetIdentityPoolRolesOutput, error)
GetOpenIDTokenRequest(*cognitoidentity.GetOpenIDTokenInput) (*service.Request, *cognitoidentity.GetOpenIDTokenOutput)
GetOpenIDToken(*cognitoidentity.GetOpenIDTokenInput) (*cognitoidentity.GetOpenIDTokenOutput, error)
GetOpenIDTokenForDeveloperIdentityRequest(*cognitoidentity.GetOpenIDTokenForDeveloperIdentityInput) (*service.Request, *cognitoidentity.GetOpenIDTokenForDeveloperIdentityOutput)
GetOpenIDTokenForDeveloperIdentity(*cognitoidentity.GetOpenIDTokenForDeveloperIdentityInput) (*cognitoidentity.GetOpenIDTokenForDeveloperIdentityOutput, error)
ListIdentitiesRequest(*cognitoidentity.ListIdentitiesInput) (*service.Request, *cognitoidentity.ListIdentitiesOutput)
ListIdentities(*cognitoidentity.ListIdentitiesInput) (*cognitoidentity.ListIdentitiesOutput, error)
ListIdentityPoolsRequest(*cognitoidentity.ListIdentityPoolsInput) (*service.Request, *cognitoidentity.ListIdentityPoolsOutput)
ListIdentityPools(*cognitoidentity.ListIdentityPoolsInput) (*cognitoidentity.ListIdentityPoolsOutput, error)
LookupDeveloperIdentityRequest(*cognitoidentity.LookupDeveloperIdentityInput) (*service.Request, *cognitoidentity.LookupDeveloperIdentityOutput)
LookupDeveloperIdentity(*cognitoidentity.LookupDeveloperIdentityInput) (*cognitoidentity.LookupDeveloperIdentityOutput, error)
MergeDeveloperIdentitiesRequest(*cognitoidentity.MergeDeveloperIdentitiesInput) (*service.Request, *cognitoidentity.MergeDeveloperIdentitiesOutput)
MergeDeveloperIdentities(*cognitoidentity.MergeDeveloperIdentitiesInput) (*cognitoidentity.MergeDeveloperIdentitiesOutput, error)
SetIdentityPoolRolesRequest(*cognitoidentity.SetIdentityPoolRolesInput) (*service.Request, *cognitoidentity.SetIdentityPoolRolesOutput)
SetIdentityPoolRoles(*cognitoidentity.SetIdentityPoolRolesInput) (*cognitoidentity.SetIdentityPoolRolesOutput, error)
UnlinkDeveloperIdentityRequest(*cognitoidentity.UnlinkDeveloperIdentityInput) (*service.Request, *cognitoidentity.UnlinkDeveloperIdentityOutput)
UnlinkDeveloperIdentity(*cognitoidentity.UnlinkDeveloperIdentityInput) (*cognitoidentity.UnlinkDeveloperIdentityOutput, error)
UnlinkIdentityRequest(*cognitoidentity.UnlinkIdentityInput) (*service.Request, *cognitoidentity.UnlinkIdentityOutput)
UnlinkIdentity(*cognitoidentity.UnlinkIdentityInput) (*cognitoidentity.UnlinkIdentityOutput, error)
UpdateIdentityPoolRequest(*cognitoidentity.IdentityPool) (*service.Request, *cognitoidentity.IdentityPool)
UpdateIdentityPool(*cognitoidentity.IdentityPool) (*cognitoidentity.IdentityPool, error)
}