| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CognitoIdentity::LookupDeveloperIdentityResponse; |
|
3
|
1
|
|
|
1
|
|
543
|
use Moose; |
|
|
1
|
|
|
|
|
4
|
|
|
|
1
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
|
|
has DeveloperUserIdentifierList => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
|
5
|
|
|
|
|
|
|
has IdentityId => (is => 'ro', isa => 'Str'); |
|
6
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::CognitoIdentity::LookupDeveloperIdentityResponse |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 DeveloperUserIdentifierList => ArrayRef[Str|Undef] |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
This is the list of developer user identifiers associated with an |
|
22
|
|
|
|
|
|
|
identity ID. Cognito supports the association of multiple developer |
|
23
|
|
|
|
|
|
|
user identifiers with an identity ID. |
|
24
|
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 IdentityId => Str |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
A unique identifier in the format REGION:GUID. |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 NextToken => Str |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
A pagination token. The first call you make will have C<NextToken> set |
|
34
|
|
|
|
|
|
|
to null. After that the service will return C<NextToken> values as |
|
35
|
|
|
|
|
|
|
needed. For example, let's say you make a request with C<MaxResults> |
|
36
|
|
|
|
|
|
|
set to 10, and there are 20 matches in the database. The service will |
|
37
|
|
|
|
|
|
|
return a pagination token as a part of the response. This token can be |
|
38
|
|
|
|
|
|
|
used to call the API again and get results starting from the 11th |
|
39
|
|
|
|
|
|
|
match. |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=cut |
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
1; |