line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CodeStar::AssociateTeamMember; |
3
|
1
|
|
|
1
|
|
354
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has ClientRequestToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'clientRequestToken' ); |
5
|
|
|
|
|
|
|
has ProjectId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'projectId' , required => 1); |
6
|
|
|
|
|
|
|
has ProjectRole => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'projectRole' , required => 1); |
7
|
|
|
|
|
|
|
has RemoteAccessAllowed => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'remoteAccessAllowed' ); |
8
|
|
|
|
|
|
|
has UserArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'userArn' , required => 1); |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
5792
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'AssociateTeamMember'); |
13
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CodeStar::AssociateTeamMemberResult'); |
14
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
### main pod documentation begin ### |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Paws::CodeStar::AssociateTeamMember - Arguments for method AssociateTeamMember on Paws::CodeStar |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 DESCRIPTION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
This class represents the parameters used for calling the method AssociateTeamMember on the |
26
|
|
|
|
|
|
|
AWS CodeStar service. Use the attributes of this class |
27
|
|
|
|
|
|
|
as arguments to method AssociateTeamMember. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to AssociateTeamMember. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
As an example: |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
$service_obj->AssociateTeamMember(Att1 => $value1, Att2 => $value2, ...); |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 ClientRequestToken => Str |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
A user- or system-generated token that identifies the entity that |
43
|
|
|
|
|
|
|
requested the team member association to the project. This token can be |
44
|
|
|
|
|
|
|
used to repeat the request. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 B<REQUIRED> ProjectId => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The ID of the project to which you will add the IAM user. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 B<REQUIRED> ProjectRole => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The AWS CodeStar project role that will apply to this user. This role |
57
|
|
|
|
|
|
|
determines what actions a user can take in an AWS CodeStar project. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 RemoteAccessAllowed => Bool |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
Whether the team member is allowed to use an SSH public/private key |
64
|
|
|
|
|
|
|
pair to remotely access project resources, for example Amazon EC2 |
65
|
|
|
|
|
|
|
instances. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head2 B<REQUIRED> UserArn => Str |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) for the IAM user you want to add to the |
72
|
|
|
|
|
|
|
AWS CodeStar project. |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head1 SEE ALSO |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method AssociateTeamMember in L<Paws::CodeStar> |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=cut |
88
|
|
|
|
|
|
|
|