Struct aws_sdk_cloudformation::model::ChangeSetSummary
source · [−]#[non_exhaustive]pub struct ChangeSetSummary { /* private fields */ }Expand description
The ChangeSetSummary structure describes a change set, its status, and the stack with which it's associated.
Implementations
sourceimpl ChangeSetSummary
impl ChangeSetSummary
sourcepub fn stack_id(&self) -> Option<&str>
pub fn stack_id(&self) -> Option<&str>
The ID of the stack with which the change set is associated.
sourcepub fn stack_name(&self) -> Option<&str>
pub fn stack_name(&self) -> Option<&str>
The name of the stack with which the change set is associated.
sourcepub fn change_set_id(&self) -> Option<&str>
pub fn change_set_id(&self) -> Option<&str>
The ID of the change set.
sourcepub fn change_set_name(&self) -> Option<&str>
pub fn change_set_name(&self) -> Option<&str>
The name of the change set.
sourcepub fn execution_status(&self) -> Option<&ExecutionStatus>
pub fn execution_status(&self) -> Option<&ExecutionStatus>
If the change set execution status is AVAILABLE, you can execute the change set. If you can't execute the change set, the status indicates why. For example, a change set might be in an UNAVAILABLE state because CloudFormation is still creating it or in an OBSOLETE state because the stack was already updated.
sourcepub fn status(&self) -> Option<&ChangeSetStatus>
pub fn status(&self) -> Option<&ChangeSetStatus>
The state of the change set, such as CREATE_IN_PROGRESS, CREATE_COMPLETE, or FAILED.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
A description of the change set's status. For example, if your change set is in the FAILED state, CloudFormation shows the error message.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The start time when the change set was created, in UTC.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Descriptive information about the change set.
sourcepub fn include_nested_stacks(&self) -> Option<bool>
pub fn include_nested_stacks(&self) -> Option<bool>
Specifies the current setting of IncludeNestedStacks for the change set.
sourcepub fn parent_change_set_id(&self) -> Option<&str>
pub fn parent_change_set_id(&self) -> Option<&str>
The parent change set ID.
sourcepub fn root_change_set_id(&self) -> Option<&str>
pub fn root_change_set_id(&self) -> Option<&str>
The root change set ID.
sourceimpl ChangeSetSummary
impl ChangeSetSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ChangeSetSummary.
Trait Implementations
sourceimpl Clone for ChangeSetSummary
impl Clone for ChangeSetSummary
sourcefn clone(&self) -> ChangeSetSummary
fn clone(&self) -> ChangeSetSummary
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more