line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::CloudFormation::StackResourceDetail; |
2
|
1
|
|
|
1
|
|
276
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
3
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has LastUpdatedTimestamp => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has LogicalResourceId => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has Metadata => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has PhysicalResourceId => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has ResourceStatus => (is => 'ro', isa => 'Str', required => 1); |
9
|
|
|
|
|
|
|
has ResourceStatusReason => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has ResourceType => (is => 'ro', isa => 'Str', required => 1); |
11
|
|
|
|
|
|
|
has StackId => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
has StackName => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::CloudFormation::StackResourceDetail |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 USAGE |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
This class represents one of two things: |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
28
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::CloudFormation::StackResourceDetail object: |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Description => $value, ..., StackName => $value }); |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head3 Results returned from an API call |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFormation::StackResourceDetail object: |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
39
|
|
|
|
|
|
|
$result->Att1->Description |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 DESCRIPTION |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Contains detailed information about the specified stack resource. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 Description => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
User defined description associated with the resource. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 B<REQUIRED> LastUpdatedTimestamp => Str |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Time the status was updated. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 B<REQUIRED> LogicalResourceId => Str |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
The logical name of the resource specified in the template. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 Metadata => Str |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
The content of the C<Metadata> attribute declared for the resource. For |
66
|
|
|
|
|
|
|
more information, see Metadata Attribute in the AWS CloudFormation User |
67
|
|
|
|
|
|
|
Guide. |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head2 PhysicalResourceId => Str |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
The name or unique identifier that corresponds to a physical instance |
73
|
|
|
|
|
|
|
ID of a resource supported by AWS CloudFormation. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head2 B<REQUIRED> ResourceStatus => Str |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
Current status of the resource. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=head2 ResourceStatusReason => Str |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
Success/failure message associated with the resource. |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
=head2 B<REQUIRED> ResourceType => Str |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
Type of resource. ((For more information, go to AWS Resource Types |
89
|
|
|
|
|
|
|
Reference in the AWS CloudFormation User Guide.) |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
=head2 StackId => Str |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
Unique identifier of the stack. |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=head2 StackName => Str |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
The name associated with the stack. |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
=head1 SEE ALSO |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::CloudFormation> |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
=cut |
114
|
|
|
|
|
|
|
|