File Coverage

blib/lib/Paws/CognitoIdentity/UpdateIdentityPool.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::CognitoIdentity::UpdateIdentityPool;
3 1     1   404 use Moose;
  1         2  
  1         8  
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 1     1   5991 use MooseX::ClassAttribute;
  1         2  
  1         9  
14              
15             class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateIdentityPool');
16             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CognitoIdentity::IdentityPool');
17             class_has _result_key => (isa => 'Str', is => 'ro');
18             1;
19              
20             ### main pod documentation begin ###
21              
22             =head1 NAME
23              
24             Paws::CognitoIdentity::UpdateIdentityPool - Arguments for method UpdateIdentityPool on Paws::CognitoIdentity
25              
26             =head1 DESCRIPTION
27              
28             This class represents the parameters used for calling the method UpdateIdentityPool on the
29             Amazon Cognito Identity service. Use the attributes of this class
30             as arguments to method UpdateIdentityPool.
31              
32             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateIdentityPool.
33              
34             As an example:
35              
36             $service_obj->UpdateIdentityPool(Att1 => $value1, Att2 => $value2, ...);
37              
38             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 B<REQUIRED> AllowUnauthenticatedIdentities => Bool
44              
45             TRUE if the identity pool supports unauthenticated logins.
46              
47              
48              
49             =head2 CognitoIdentityProviders => ArrayRef[L<Paws::CognitoIdentity::CognitoIdentityProvider>]
50              
51             A list representing an Amazon Cognito Identity User Pool and its client
52             ID.
53              
54              
55              
56             =head2 DeveloperProviderName => Str
57              
58             The "domain" by which Cognito will refer to your users.
59              
60              
61              
62             =head2 B<REQUIRED> IdentityPoolId => Str
63              
64             An identity pool ID in the format REGION:GUID.
65              
66              
67              
68             =head2 B<REQUIRED> IdentityPoolName => Str
69              
70             A string that you provide.
71              
72              
73              
74             =head2 OpenIdConnectProviderARNs => ArrayRef[Str|Undef]
75              
76             A list of OpendID Connect provider ARNs.
77              
78              
79              
80             =head2 SamlProviderARNs => ArrayRef[Str|Undef]
81              
82             An array of Amazon Resource Names (ARNs) of the SAML provider for your
83             identity pool.
84              
85              
86              
87             =head2 SupportedLoginProviders => L<Paws::CognitoIdentity::IdentityProviders>
88              
89             Optional key:value pairs mapping provider names to provider app IDs.
90              
91              
92              
93              
94             =head1 SEE ALSO
95              
96             This class forms part of L<Paws>, documenting arguments for method UpdateIdentityPool in L<Paws::CognitoIdentity>
97              
98             =head1 BUGS and CONTRIBUTIONS
99              
100             The source code is located here: https://github.com/pplu/aws-sdk-perl
101              
102             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
103              
104             =cut
105