#[non_exhaustive]pub struct DescribeChangeSetOutput { /* private fields */ }Expand description
The output for the DescribeChangeSet action.
Implementations
sourceimpl DescribeChangeSetOutput
impl DescribeChangeSetOutput
sourcepub fn change_set_name(&self) -> Option<&str>
pub fn change_set_name(&self) -> Option<&str>
The name of the change set.
sourcepub fn change_set_id(&self) -> Option<&str>
pub fn change_set_id(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the change set.
sourcepub fn stack_id(&self) -> Option<&str>
pub fn stack_id(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the stack that's associated with the change set.
sourcepub fn stack_name(&self) -> Option<&str>
pub fn stack_name(&self) -> Option<&str>
The name of the stack that's associated with the change set.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Information about the change set.
sourcepub fn parameters(&self) -> Option<&[Parameter]>
pub fn parameters(&self) -> Option<&[Parameter]>
A list of Parameter structures that describes the input parameters and their values used to create the change set. For more information, see the Parameter data type.
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 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 current status 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 attempt to create a change set failed, CloudFormation shows the error message.
sourcepub fn notification_ar_ns(&self) -> Option<&[String]>
pub fn notification_ar_ns(&self) -> Option<&[String]>
The ARNs of the Amazon Simple Notification Service (Amazon SNS) topics that will be associated with the stack if you execute the change set.
sourcepub fn rollback_configuration(&self) -> Option<&RollbackConfiguration>
pub fn rollback_configuration(&self) -> Option<&RollbackConfiguration>
The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and for the specified monitoring period afterwards.
sourcepub fn capabilities(&self) -> Option<&[Capability]>
pub fn capabilities(&self) -> Option<&[Capability]>
If you execute the change set, the list of capabilities that were explicitly acknowledged when the change set was created.
If you execute the change set, the tags that will be associated with the stack.
sourcepub fn changes(&self) -> Option<&[Change]>
pub fn changes(&self) -> Option<&[Change]>
A list of Change structures that describes the resources CloudFormation changes if you execute the change set.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the output exceeds 1 MB, a string that identifies the next page of changes. If there is no additional page, this value is null.
sourcepub fn include_nested_stacks(&self) -> Option<bool>
pub fn include_nested_stacks(&self) -> Option<bool>
Verifies if IncludeNestedStacks is set to True.
sourcepub fn parent_change_set_id(&self) -> Option<&str>
pub fn parent_change_set_id(&self) -> Option<&str>
Specifies the change set ID of the parent change set in the current nested change set hierarchy.
sourcepub fn root_change_set_id(&self) -> Option<&str>
pub fn root_change_set_id(&self) -> Option<&str>
Specifies the change set ID of the root change set in the current nested change set hierarchy.
sourceimpl DescribeChangeSetOutput
impl DescribeChangeSetOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeChangeSetOutput.
Trait Implementations
sourceimpl Clone for DescribeChangeSetOutput
impl Clone for DescribeChangeSetOutput
sourcefn clone(&self) -> DescribeChangeSetOutput
fn clone(&self) -> DescribeChangeSetOutput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more