Struct cloudformatious::change_set::ChangeSet[][src]

pub struct ChangeSet {
Show 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>
Expand description

Capabilities that were explicitly acknowledged when the change set was created.

See Capability for more information.

change_set_id: String
Expand description

The ARN of the change set.

change_set_name: String
Expand description

The name of the change set.

changes: Vec<ResourceChange>
Expand description

A list of structures that describe the resources AWS CloudFormation changes if you execute the change set.

creation_time: DateTime<Utc>
Expand description

The start time when the change set was created.

description: Option<String>
Expand description

Information about the change set.

execution_status: ExecutionStatus
Expand description

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>
Expand description

The Simple Notification Service (SNS) topic ARNs to publish stack related events.

parameters: Vec<Parameter>
Expand description

A list of structures that describes the input parameters and their values used to create the change set.

stack_id: String
Expand description

The ARN of the stack that is associated with the change set.

stack_name: String
Expand description

The name of the stack that is associated with the change set.

status: ChangeSetStatus
Expand description

The current status of the change set.

status_reason: Option<String>
Expand description

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.

tags: Vec<Tag>
Expand description

If you execute the change set, the tags that will be associated with the stack.

Trait Implementations

impl Clone for ChangeSet[src]

fn clone(&self) -> ChangeSet[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ChangeSet[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl PartialEq<ChangeSet> for ChangeSet[src]

fn eq(&self, other: &ChangeSet) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &ChangeSet) -> bool[src]

This method tests for !=.

impl StructuralPartialEq for ChangeSet[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.