File Coverage

blib/lib/Paws/CloudFormation/StackInstanceSummary.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::StackInstanceSummary;
2 1     1   425 use Moose;
  1         4  
  1         7  
3             has Account => (is => 'ro', isa => 'Str');
4             has Region => (is => 'ro', isa => 'Str');
5             has StackId => (is => 'ro', isa => 'Str');
6             has StackSetId => (is => 'ro', isa => 'Str');
7             has Status => (is => 'ro', isa => 'Str');
8             has StatusReason => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::CloudFormation::StackInstanceSummary
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::CloudFormation::StackInstanceSummary object:
27              
28             $service_obj->Method(Att1 => { Account => $value, ..., StatusReason => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFormation::StackInstanceSummary object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->Account
36              
37             =head1 DESCRIPTION
38              
39             The structure that contains summary information about a stack instance.
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 Account => Str
45              
46             The name of the AWS account that the stack instance is associated with.
47              
48              
49             =head2 Region => Str
50              
51             The name of the AWS region that the stack instance is associated with.
52              
53              
54             =head2 StackId => Str
55              
56             The ID of the stack instance.
57              
58              
59             =head2 StackSetId => Str
60              
61             The name or unique ID of the stack set that the stack instance is
62             associated with.
63              
64              
65             =head2 Status => Str
66              
67             The status of the stack instance, in terms of its synchronization with
68             its associated stack set.
69              
70             =over
71              
72             =item *
73              
74             C<INOPERABLE>: A C<DeleteStackInstances> operation has failed and left
75             the stack in an unstable state. Stacks in this state are excluded from
76             further C<UpdateStackSet> operations. You might need to perform a
77             C<DeleteStackInstances> operation, with C<RetainStacks> set to C<true>,
78             to delete the stack instance, and then delete the stack manually.
79              
80             =item *
81              
82             C<OUTDATED>: The stack isn't currently up to date with the stack set
83             because:
84              
85             =over
86              
87             =item *
88              
89             The associated stack failed during a C<CreateStackSet> or
90             C<UpdateStackSet> operation.
91              
92             =item *
93              
94             The stack was part of a C<CreateStackSet> or C<UpdateStackSet>
95             operation that failed or was stopped before the stack was created or
96             updated.
97              
98             =back
99              
100             =item *
101              
102             C<CURRENT>: The stack is currently up to date with the stack set.
103              
104             =back
105              
106              
107              
108             =head2 StatusReason => Str
109              
110             The explanation for the specific status code assigned to this stack
111             instance.
112              
113              
114              
115             =head1 SEE ALSO
116              
117             This class forms part of L<Paws>, describing an object used in L<Paws::CloudFormation>
118              
119             =head1 BUGS and CONTRIBUTIONS
120              
121             The source code is located here: https://github.com/pplu/aws-sdk-perl
122              
123             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
124              
125             =cut
126