File Coverage

blib/lib/Paws/CodeStar/DescribeUserProfileResult.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::CodeStar::DescribeUserProfileResult;
3 1     1   403 use Moose;
  1         2  
  1         7  
4             has CreatedTimestamp => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'createdTimestamp' , required => 1);
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' , required => 1);
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::DescribeUserProfileResult
18              
19             =head1 ATTRIBUTES
20              
21              
22             =head2 B<REQUIRED> CreatedTimestamp => Str
23              
24             The date and time when the user profile was created in AWS CodeStar, in
25             timestamp format.
26              
27              
28             =head2 DisplayName => Str
29              
30             The display name shown for the user in AWS CodeStar projects. For
31             example, this could be set to both first and last name ("Mary Major")
32             or a single name ("Mary"). The display name is also used to generate
33             the initial icon associated with the user in AWS CodeStar projects. If
34             spaces are included in the display name, the first character that
35             appears after the space will be used as the second character in the
36             user initial icon. The initial icon displays a maximum of two
37             characters, so a display name with more than one space (for example
38             "Mary Jane Major") would generate an initial icon using the first
39             character and the first character after the space ("MJ", not "MM").
40              
41              
42             =head2 EmailAddress => Str
43              
44             The email address for the user. Optional.
45              
46              
47             =head2 B<REQUIRED> LastModifiedTimestamp => Str
48              
49             The date and time when the user profile was last modified, in timestamp
50             format.
51              
52              
53             =head2 SshPublicKey => Str
54              
55             The SSH public key associated with the user. This SSH public key is
56             associated with the user profile, and can be used in conjunction with
57             the associated private key for access to project resources, such as
58             Amazon EC2 instances, if a project owner grants remote access to those
59             resources.
60              
61              
62             =head2 B<REQUIRED> UserArn => Str
63              
64             The Amazon Resource Name (ARN) of the user.
65              
66              
67             =head2 _request_id => Str
68              
69              
70             =cut
71              
72             1;