Struct aws_sdk_cloudformation::model::ChangeSetSummary
source · [−]#[non_exhaustive]pub struct ChangeSetSummary {
pub stack_id: Option<String>,
pub stack_name: Option<String>,
pub change_set_id: Option<String>,
pub change_set_name: Option<String>,
pub execution_status: Option<ExecutionStatus>,
pub status: Option<ChangeSetStatus>,
pub status_reason: Option<String>,
pub creation_time: Option<DateTime>,
pub description: Option<String>,
pub include_nested_stacks: Option<bool>,
pub parent_change_set_id: Option<String>,
pub root_change_set_id: Option<String>,
}
Expand description
The ChangeSetSummary
structure describes a change set, its status, and the stack with which it's associated.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.stack_id: Option<String>
The ID of the stack with which the change set is associated.
stack_name: Option<String>
The name of the stack with which the change set is associated.
change_set_id: Option<String>
The ID of the change set.
change_set_name: Option<String>
The name of the change set.
execution_status: 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.
status: Option<ChangeSetStatus>
The state of the change set, such as CREATE_IN_PROGRESS
, CREATE_COMPLETE
, or FAILED
.
status_reason: Option<String>
A description of the change set's status. For example, if your change set is in the FAILED
state, CloudFormation shows the error message.
creation_time: Option<DateTime>
The start time when the change set was created, in UTC.
description: Option<String>
Descriptive information about the change set.
include_nested_stacks: Option<bool>
Specifies the current setting of IncludeNestedStacks
for the change set.
parent_change_set_id: Option<String>
The parent change set ID.
root_change_set_id: Option<String>
The root change set ID.
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
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ChangeSetSummary
impl Debug for ChangeSetSummary
sourceimpl PartialEq<ChangeSetSummary> for ChangeSetSummary
impl PartialEq<ChangeSetSummary> for ChangeSetSummary
sourcefn eq(&self, other: &ChangeSetSummary) -> bool
fn eq(&self, other: &ChangeSetSummary) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ChangeSetSummary) -> bool
fn ne(&self, other: &ChangeSetSummary) -> bool
This method tests for !=
.
impl StructuralPartialEq for ChangeSetSummary
Auto Trait Implementations
impl RefUnwindSafe for ChangeSetSummary
impl Send for ChangeSetSummary
impl Sync for ChangeSetSummary
impl Unpin for ChangeSetSummary
impl UnwindSafe for ChangeSetSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more