File Coverage

blib/lib/Paws/CognitoIdp/UICustomizationType.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             package Paws::CognitoIdp::UICustomizationType;
2 1     1   422 use Moose;
  1         2  
  1         7  
3             has ClientId => (is => 'ro', isa => 'Str');
4             has CreationDate => (is => 'ro', isa => 'Str');
5             has CSS => (is => 'ro', isa => 'Str');
6             has CSSVersion => (is => 'ro', isa => 'Str');
7             has ImageUrl => (is => 'ro', isa => 'Str');
8             has LastModifiedDate => (is => 'ro', isa => 'Str');
9             has UserPoolId => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::CognitoIdp::UICustomizationType
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::CognitoIdp::UICustomizationType object:
28              
29             $service_obj->Method(Att1 => { ClientId => $value, ..., UserPoolId => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::CognitoIdp::UICustomizationType object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->ClientId
37              
38             =head1 DESCRIPTION
39              
40             A container for the UI customization information for a user pool's
41             built-in app UI.
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 ClientId => Str
47              
48             The client ID for the client app.
49              
50              
51             =head2 CreationDate => Str
52              
53             The creation date for the UI customization.
54              
55              
56             =head2 CSS => Str
57              
58             The CSS values in the UI customization.
59              
60              
61             =head2 CSSVersion => Str
62              
63             The CSS version number.
64              
65              
66             =head2 ImageUrl => Str
67              
68             The logo image for the UI customization.
69              
70              
71             =head2 LastModifiedDate => Str
72              
73             The last-modified date for the UI customization.
74              
75              
76             =head2 UserPoolId => Str
77              
78             The user pool ID for the user pool.
79              
80              
81              
82             =head1 SEE ALSO
83              
84             This class forms part of L<Paws>, describing an object used in L<Paws::CognitoIdp>
85              
86             =head1 BUGS and CONTRIBUTIONS
87              
88             The source code is located here: https://github.com/pplu/aws-sdk-perl
89              
90             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
91              
92             =cut
93