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   608 use Moose;
  1         3  
  1         9  
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             For example, if you execute a C<CreateStack> operation with the token
54             C<token1>, then all the C<StackEvents> generated by that operation will
55             have C<ClientRequestToken> set as C<token1>.
56              
57              
58             =head2 B<REQUIRED> EventId => Str
59              
60             The unique ID of this event.
61              
62              
63             =head2 LogicalResourceId => Str
64              
65             The logical name of the resource specified in the template.
66              
67              
68             =head2 PhysicalResourceId => Str
69              
70             The name or unique identifier associated with the physical instance of
71             the resource.
72              
73              
74             =head2 ResourceProperties => Str
75              
76             BLOB of the properties used to create the resource.
77              
78              
79             =head2 ResourceStatus => Str
80              
81             Current status of the resource.
82              
83              
84             =head2 ResourceStatusReason => Str
85              
86             Success/failure message associated with the resource.
87              
88              
89             =head2 ResourceType => Str
90              
91             Type of resource. (For more information, go to AWS Resource Types
92             Reference in the AWS CloudFormation User Guide.)
93              
94              
95             =head2 B<REQUIRED> StackId => Str
96              
97             The unique ID name of the instance of the stack.
98              
99              
100             =head2 B<REQUIRED> StackName => Str
101              
102             The name associated with a stack.
103              
104              
105             =head2 B<REQUIRED> Timestamp => Str
106              
107             Time the status was updated.
108              
109              
110              
111             =head1 SEE ALSO
112              
113             This class forms part of L<Paws>, describing an object used in L<Paws::CloudFormation>
114              
115             =head1 BUGS and CONTRIBUTIONS
116              
117             The source code is located here: https://github.com/pplu/aws-sdk-perl
118              
119             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
120              
121             =cut
122