line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CodeStar::DescribeProjectResult; |
3
|
1
|
|
|
1
|
|
315
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has Arn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'arn' ); |
5
|
|
|
|
|
|
|
has ClientRequestToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'clientRequestToken' ); |
6
|
|
|
|
|
|
|
has CreatedTimeStamp => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'createdTimeStamp' ); |
7
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description' ); |
8
|
|
|
|
|
|
|
has Id => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'id' ); |
9
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name' ); |
10
|
|
|
|
|
|
|
has ProjectTemplateId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'projectTemplateId' ); |
11
|
|
|
|
|
|
|
has StackId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'stackId' ); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::CodeStar::DescribeProjectResult |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 Arn => Str |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) for the project. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 ClientRequestToken => Str |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
A user- or system-generated token that identifies the entity that |
32
|
|
|
|
|
|
|
requested project creation. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 CreatedTimeStamp => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
The date and time the project was created, in timestamp format. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 Description => Str |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The description of the project, if any. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 Id => Str |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
The ID of the project. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 Name => Str |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The display name for the project. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 ProjectTemplateId => Str |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
The ID for the AWS CodeStar project template used to create the |
58
|
|
|
|
|
|
|
project. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 StackId => Str |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
The ID of the primary stack in AWS CloudFormation used to generate |
64
|
|
|
|
|
|
|
resources for the project. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head2 _request_id => Str |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=cut |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
1; |