File Coverage

blib/lib/Paws/CognitoIdentity/IdentityDescription.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::IdentityDescription;
3 1     1   507 use Moose;
  1         3  
  1         9  
4             has CreationDate => (is => 'ro', isa => 'Str');
5             has IdentityId => (is => 'ro', isa => 'Str');
6             has LastModifiedDate => (is => 'ro', isa => 'Str');
7             has Logins => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::CognitoIdentity::IdentityDescription
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 CreationDate => Str
21              
22             Date on which the identity was created.
23              
24              
25             =head2 IdentityId => Str
26              
27             A unique identifier in the format REGION:GUID.
28              
29              
30             =head2 LastModifiedDate => Str
31              
32             Date on which the identity was last modified.
33              
34              
35             =head2 Logins => ArrayRef[Str|Undef]
36              
37             A set of optional name-value pairs that map provider names to provider
38             tokens.
39              
40              
41             =head2 _request_id => Str
42              
43              
44             =cut
45              
46             1;