pub struct ChangeSet {Show 14 fields
pub capabilities: Vec<Capability>,
pub change_set_id: String,
pub change_set_name: String,
pub changes: Vec<ResourceChange>,
pub creation_time: DateTime<Utc>,
pub description: Option<String>,
pub execution_status: ExecutionStatus,
pub notification_arns: Vec<String>,
pub parameters: Vec<Parameter>,
pub stack_id: String,
pub stack_name: String,
pub status: ChangeSetStatus,
pub status_reason: Option<String>,
pub tags: Vec<Tag>,
}
Expand description
A planned set of changes to apply to a CloudFormation stack.
Fields§
§capabilities: Vec<Capability>
Capabilities that were explicitly acknowledged when the change set was created.
See Capability
for more information.
change_set_id: String
The ARN of the change set.
change_set_name: String
The name of the change set.
changes: Vec<ResourceChange>
A list of structures that describe the resources AWS CloudFormation changes if you execute the change set.
creation_time: DateTime<Utc>
The start time when the change set was created.
description: Option<String>
Information about the change set.
execution_status: ExecutionStatus
The change set’s execution status.
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 AWS CloudFormation is still creating it or in an
Obsolete
state because the stack was already updated.
notification_arns: Vec<String>
The Simple Notification Service (SNS) topic ARNs to publish stack related events.
parameters: Vec<Parameter>
A list of structures that describes the input parameters and their values used to create the change set.
stack_id: String
The ARN of the stack that is associated with the change set.
stack_name: String
The name of the stack that is associated with the change set.
status: ChangeSetStatus
The current status of the change set.
status_reason: Option<String>
A description of the change set’s status.
For example, if your attempt to create a change set failed, AWS CloudFormation shows the error message.
If you execute the change set, the tags that will be associated with the stack.
Trait Implementations§
impl Eq for ChangeSet
impl StructuralPartialEq for ChangeSet
Auto Trait Implementations§
impl Freeze for ChangeSet
impl RefUnwindSafe for ChangeSet
impl Send for ChangeSet
impl Sync for ChangeSet
impl Unpin for ChangeSet
impl UnwindSafe for ChangeSet
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more