line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CodeStar::UpdateUserProfileResult; |
3
|
1
|
|
|
1
|
|
554
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has CreatedTimestamp => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'createdTimestamp' ); |
5
|
|
|
|
|
|
|
has DisplayName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'displayName' ); |
6
|
|
|
|
|
|
|
has EmailAddress => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'emailAddress' ); |
7
|
|
|
|
|
|
|
has LastModifiedTimestamp => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'lastModifiedTimestamp' ); |
8
|
|
|
|
|
|
|
has SshPublicKey => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'sshPublicKey' ); |
9
|
|
|
|
|
|
|
has UserArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'userArn' , required => 1); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::CodeStar::UpdateUserProfileResult |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 CreatedTimestamp => Str |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
The date the user profile was created, in timestamp format. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 DisplayName => Str |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The name that is displayed as the friendly name for the user in AWS |
30
|
|
|
|
|
|
|
CodeStar. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 EmailAddress => Str |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
The email address that is displayed as part of the user's profile in |
36
|
|
|
|
|
|
|
AWS CodeStar. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 LastModifiedTimestamp => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The date the user profile was last modified, in timestamp format. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 SshPublicKey => Str |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The SSH public key associated with the user in AWS CodeStar. This is |
47
|
|
|
|
|
|
|
the public portion of the public/private keypair the user can use to |
48
|
|
|
|
|
|
|
access project resources if a project owner allows the user remote |
49
|
|
|
|
|
|
|
access to those resources. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head2 B<REQUIRED> UserArn => Str |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the user in IAM. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 _request_id => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=cut |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
1; |