pub struct StackInstanceComprehensiveStatus {
pub detailed_status: Option<String>,
}Expand description
The detailed status of the stack instance.
Fields§
§detailed_status: Option<String>-
CANCELLED: The operation in the specified account and Region has been cancelled. This is either because a user has stopped the stack set operation, or because the failure tolerance of the stack set operation has been exceeded. -
FAILED: The operation in the specified account and Region failed. If the stack set operation fails in enough accounts within a Region, the failure tolerance for the stack set operation as a whole might be exceeded. -
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. -
PENDING: The operation in the specified account and Region has yet to start. -
RUNNING: The operation in the specified account and Region is currently in progress. -
SUCCEEDED: The operation in the specified account and Region completed successfully.
Trait Implementations§
Source§impl Clone for StackInstanceComprehensiveStatus
impl Clone for StackInstanceComprehensiveStatus
Source§fn clone(&self) -> StackInstanceComprehensiveStatus
fn clone(&self) -> StackInstanceComprehensiveStatus
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for StackInstanceComprehensiveStatus
impl Default for StackInstanceComprehensiveStatus
Source§fn default() -> StackInstanceComprehensiveStatus
fn default() -> StackInstanceComprehensiveStatus
Source§impl PartialEq for StackInstanceComprehensiveStatus
impl PartialEq for StackInstanceComprehensiveStatus
Source§fn eq(&self, other: &StackInstanceComprehensiveStatus) -> bool
fn eq(&self, other: &StackInstanceComprehensiveStatus) -> bool
self and other values to be equal, and is used by ==.