Method: Aws::CloudFormation::Types::StackInstance#status
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
#status ⇒ String
The status of the stack instance, in terms of its synchronization with its associated stack set.
-
INOPERABLE: ADeleteStackInstancesoperation has failed and left the stack in an unstable state. Stacks in this state are excluded from furtherUpdateStackSetoperations. You might need to perform aDeleteStackInstancesoperation, withRetainStacksset totrue, to delete the stack instance, and then delete the stack manually.INOPERABLEcan be returned here when the cause is a failed import. If it’s due to a failed import, the operation can be retried once the failures are fixed. To see if this is due to a failed import, look at theDetailedStatusmember in theStackInstanceSummarymember that is a peer to thisStatusmember. -
OUTDATED: The stack isn’t currently up to date with the StackSet because:-
The associated stack failed during a
CreateStackSetorUpdateStackSetoperation. -
The stack was part of a
CreateStackSetorUpdateStackSetoperation that failed or was stopped before the stack was created or updated.
-
-
CURRENT: The stack is currently up to date with the StackSet.
9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 9169 class StackInstance < Struct.new( :stack_set_id, :region, :account, :stack_id, :parameter_overrides, :status, :stack_instance_status, :status_reason, :organizational_unit_id, :drift_status, :last_drift_check_timestamp, :last_operation_id) SENSITIVE = [] include Aws::Structure end |