File Coverage

blib/lib/Paws/CloudFormation/StackEvent.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             package Paws::CloudFormation::StackEvent;
2 1     1   621 use Moose;
  1         5  
  1         13  
3             has ClientRequestToken => (is => 'ro', isa => 'Str');
4             has EventId => (is => 'ro', isa => 'Str', required => 1);
5             has LogicalResourceId => (is => 'ro', isa => 'Str');
6             has PhysicalResourceId => (is => 'ro', isa => 'Str');
7             has ResourceProperties => (is => 'ro', isa => 'Str');
8             has ResourceStatus => (is => 'ro', isa => 'Str');
9             has ResourceStatusReason => (is => 'ro', isa => 'Str');
10             has ResourceType => (is => 'ro', isa => 'Str');
11             has StackId => (is => 'ro', isa => 'Str', required => 1);
12             has StackName => (is => 'ro', isa => 'Str', required => 1);
13             has Timestamp => (is => 'ro', isa => 'Str', required => 1);
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::CloudFormation::StackEvent
21              
22             =head1 USAGE
23              
24             This class represents one of two things:
25              
26             =head3 Arguments in a call to a service
27              
28             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
29             Each attribute should be used as a named argument in the calls that expect this type of object.
30              
31             As an example, if Att1 is expected to be a Paws::CloudFormation::StackEvent object:
32              
33             $service_obj->Method(Att1 => { ClientRequestToken => $value, ..., Timestamp => $value });
34              
35             =head3 Results returned from an API call
36              
37             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFormation::StackEvent object:
38              
39             $result = $service_obj->Method(...);
40             $result->Att1->ClientRequestToken
41              
42             =head1 DESCRIPTION
43              
44             The StackEvent data type.
45              
46             =head1 ATTRIBUTES
47              
48              
49             =head2 ClientRequestToken => Str
50              
51             The token passed to the operation that generated this event.
52              
53             All events triggered by a given stack operation are assigned the same
54             client request token, which you can use to track operations. For
55             example, if you execute a C<CreateStack> operation with the token
56             C<token1>, then all the C<StackEvents> generated by that operation will
57             have C<ClientRequestToken> set as C<token1>.
58              
59             In the console, stack operations display the client request token on
60             the Events tab. Stack operations that are initiated from the console
61             use the token format I<Console-StackOperation-ID>, which helps you
62             easily identify the stack operation . For example, if you create a
63             stack using the console, each stack event would be assigned the same
64             token in the following format:
65             C<Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002>.
66              
67              
68             =head2 B<REQUIRED> EventId => Str
69              
70             The unique ID of this event.
71              
72              
73             =head2 LogicalResourceId => Str
74              
75             The logical name of the resource specified in the template.
76              
77              
78             =head2 PhysicalResourceId => Str
79              
80             The name or unique identifier associated with the physical instance of
81             the resource.
82              
83              
84             =head2 ResourceProperties => Str
85              
86             BLOB of the properties used to create the resource.
87              
88              
89             =head2 ResourceStatus => Str
90              
91             Current status of the resource.
92              
93              
94             =head2 ResourceStatusReason => Str
95              
96             Success/failure message associated with the resource.
97              
98              
99             =head2 ResourceType => Str
100              
101             Type of resource. (For more information, go to AWS Resource Types
102             Reference in the AWS CloudFormation User Guide.)
103              
104              
105             =head2 B<REQUIRED> StackId => Str
106              
107             The unique ID name of the instance of the stack.
108              
109              
110             =head2 B<REQUIRED> StackName => Str
111              
112             The name associated with a stack.
113              
114              
115             =head2 B<REQUIRED> Timestamp => Str
116              
117             Time the status was updated.
118              
119              
120              
121             =head1 SEE ALSO
122              
123             This class forms part of L<Paws>, describing an object used in L<Paws::CloudFormation>
124              
125             =head1 BUGS and CONTRIBUTIONS
126              
127             The source code is located here: https://github.com/pplu/aws-sdk-perl
128              
129             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
130              
131             =cut
132