line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CognitoSync::ListIdentityPoolUsageResponse; |
3
|
1
|
|
|
1
|
|
393
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has Count => (is => 'ro', isa => 'Int'); |
5
|
|
|
|
|
|
|
has IdentityPoolUsages => (is => 'ro', isa => 'ArrayRef[Paws::CognitoSync::IdentityPoolUsage]'); |
6
|
|
|
|
|
|
|
has MaxResults => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::CognitoSync::ListIdentityPoolUsageResponse |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 Count => Int |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Total number of identities for the identity pool. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 IdentityPoolUsages => ArrayRef[L<Paws::CognitoSync::IdentityPoolUsage>] |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Usage information for the identity pools. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 MaxResults => Int |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The maximum number of results to be returned. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 NextToken => Str |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
A pagination token for obtaining the next page of results. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 _request_id => Str |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=cut |
45
|
|
|
|
|
|
|
|