File Coverage

blib/lib/Paws/CognitoIdentity/GetIdentityPoolRolesResponse.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::CognitoIdentity::GetIdentityPoolRolesResponse;
3 1     1   403 use Moose;
  1         3  
  1         8  
4             has IdentityPoolId => (is => 'ro', isa => 'Str');
5             has RoleMappings => (is => 'ro', isa => 'Paws::CognitoIdentity::RoleMappingMap');
6             has Roles => (is => 'ro', isa => 'Paws::CognitoIdentity::RolesMap');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::CognitoIdentity::GetIdentityPoolRolesResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 IdentityPoolId => Str
20              
21             An identity pool ID in the format REGION:GUID.
22              
23              
24             =head2 RoleMappings => L<Paws::CognitoIdentity::RoleMappingMap>
25              
26             How users for a specific identity provider are to mapped to roles. This
27             is a String-to-RoleMapping object map. The string identifies the
28             identity provider, for example, "graph.facebook.com" or
29             "cognito-idp-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id".
30              
31              
32             =head2 Roles => L<Paws::CognitoIdentity::RolesMap>
33              
34             The map of roles associated with this pool. Currently only
35             authenticated and unauthenticated roles are supported.
36              
37              
38             =head2 _request_id => Str
39              
40              
41             =cut
42              
43             1;