File Coverage

blib/lib/Paws/CodeStar/UpdateTeamMemberResult.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::UpdateTeamMemberResult;
3 1     1   412 use Moose;
  1         2  
  1         8  
4             has ProjectRole => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'projectRole' );
5             has RemoteAccessAllowed => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'remoteAccessAllowed' );
6             has UserArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'userArn' );
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::CodeStar::UpdateTeamMemberResult
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 ProjectRole => Str
20              
21             The project role granted to the user.
22              
23              
24             =head2 RemoteAccessAllowed => Bool
25              
26             Whether a team member is allowed to remotely access project resources
27             using the SSH public key associated with the user's profile.
28              
29              
30             =head2 UserArn => Str
31              
32             The Amazon Resource Name (ARN) of the user whose team membership
33             attributes were updated.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40              
41             1;