line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CognitoIdentity::IdentityPool; |
3
|
1
|
|
|
1
|
|
290
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
5
|
|
4
|
|
|
|
|
|
|
has AllowUnauthenticatedIdentities => (is => 'ro', isa => 'Bool', required => 1); |
5
|
|
|
|
|
|
|
has CognitoIdentityProviders => (is => 'ro', isa => 'ArrayRef[Paws::CognitoIdentity::CognitoIdentityProvider]'); |
6
|
|
|
|
|
|
|
has DeveloperProviderName => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has IdentityPoolId => (is => 'ro', isa => 'Str', required => 1); |
8
|
|
|
|
|
|
|
has IdentityPoolName => (is => 'ro', isa => 'Str', required => 1); |
9
|
|
|
|
|
|
|
has OpenIdConnectProviderARNs => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
10
|
|
|
|
|
|
|
has SamlProviderARNs => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
11
|
|
|
|
|
|
|
has SupportedLoginProviders => (is => 'ro', isa => 'Paws::CognitoIdentity::IdentityProviders'); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::CognitoIdentity::IdentityPool |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 B<REQUIRED> AllowUnauthenticatedIdentities => Bool |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
TRUE if the identity pool supports unauthenticated logins. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 CognitoIdentityProviders => ArrayRef[L<Paws::CognitoIdentity::CognitoIdentityProvider>] |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
A list representing an Amazon Cognito Identity User Pool and its client |
32
|
|
|
|
|
|
|
ID. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 DeveloperProviderName => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
The "domain" by which Cognito will refer to your users. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 B<REQUIRED> IdentityPoolId => Str |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
An identity pool ID in the format REGION:GUID. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 B<REQUIRED> IdentityPoolName => Str |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
A string that you provide. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 OpenIdConnectProviderARNs => ArrayRef[Str|Undef] |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
A list of OpendID Connect provider ARNs. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 SamlProviderARNs => ArrayRef[Str|Undef] |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
An array of Amazon Resource Names (ARNs) of the SAML provider for your |
58
|
|
|
|
|
|
|
identity pool. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 SupportedLoginProviders => L<Paws::CognitoIdentity::IdentityProviders> |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
Optional key:value pairs mapping provider names to provider app IDs. |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head2 _request_id => Str |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=cut |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
1; |