File Coverage

blib/lib/Paws/CloudFormation/StackSummary.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Paws::CloudFormation::StackSummary;
2 1     1   753 use Moose;
  1     1   3  
  1         8  
  1         451  
  1         2  
  1         8  
3             has CreationTime => (is => 'ro', isa => 'Str', required => 1);
4             has DeletionTime => (is => 'ro', isa => 'Str');
5             has LastUpdatedTime => (is => 'ro', isa => 'Str');
6             has StackId => (is => 'ro', isa => 'Str');
7             has StackName => (is => 'ro', isa => 'Str', required => 1);
8             has StackStatus => (is => 'ro', isa => 'Str', required => 1);
9             has StackStatusReason => (is => 'ro', isa => 'Str');
10             has TemplateDescription => (is => 'ro', isa => 'Str');
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::CloudFormation::StackSummary
18              
19             =head1 USAGE
20              
21             This class represents one of two things:
22              
23             =head3 Arguments in a call to a service
24              
25             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
26             Each attribute should be used as a named argument in the calls that expect this type of object.
27              
28             As an example, if Att1 is expected to be a Paws::CloudFormation::StackSummary object:
29              
30             $service_obj->Method(Att1 => { CreationTime => $value, ..., TemplateDescription => $value });
31              
32             =head3 Results returned from an API call
33              
34             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFormation::StackSummary object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->CreationTime
38              
39             =head1 DESCRIPTION
40              
41             The StackSummary Data Type
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 B<REQUIRED> CreationTime => Str
47              
48             The time the stack was created.
49              
50              
51             =head2 DeletionTime => Str
52              
53             The time the stack was deleted.
54              
55              
56             =head2 LastUpdatedTime => Str
57              
58             The time the stack was last updated. This field will only be returned
59             if the stack has been updated at least once.
60              
61              
62             =head2 StackId => Str
63              
64             Unique stack identifier.
65              
66              
67             =head2 B<REQUIRED> StackName => Str
68              
69             The name associated with the stack.
70              
71              
72             =head2 B<REQUIRED> StackStatus => Str
73              
74             The current status of the stack.
75              
76              
77             =head2 StackStatusReason => Str
78              
79             Success/Failure message associated with the stack status.
80              
81              
82             =head2 TemplateDescription => Str
83              
84             The template description of the template used to create the stack.
85              
86              
87              
88             =head1 SEE ALSO
89              
90             This class forms part of L<Paws>, describing an object used in L<Paws::CloudFormation>
91              
92             =head1 BUGS and CONTRIBUTIONS
93              
94             The source code is located here: https://github.com/pplu/aws-sdk-perl
95              
96             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
97              
98             =cut
99