#[non_exhaustive]pub struct ExecuteChangeSetInput { /* private fields */ }Expand description
The input for the ExecuteChangeSet action.
Implementations
sourceimpl ExecuteChangeSetInput
impl ExecuteChangeSetInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ExecuteChangeSet, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ExecuteChangeSet, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ExecuteChangeSet>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExecuteChangeSetInput.
sourceimpl ExecuteChangeSetInput
impl ExecuteChangeSetInput
sourcepub fn change_set_name(&self) -> Option<&str>
pub fn change_set_name(&self) -> Option<&str>
The name or Amazon Resource Name (ARN) of the change set that you want use to update the specified stack.
sourcepub fn stack_name(&self) -> Option<&str>
pub fn stack_name(&self) -> Option<&str>
If you specified the name of a change set, specify the stack name or Amazon Resource Name (ARN) that's associated with the change set you want to execute.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A unique identifier for this ExecuteChangeSet request. Specify this token if you plan to retry requests so that CloudFormation knows that you're not attempting to execute a change set to update a stack with the same name. You might retry ExecuteChangeSet requests to ensure that CloudFormation successfully received them.
sourcepub fn disable_rollback(&self) -> Option<bool>
pub fn disable_rollback(&self) -> Option<bool>
Preserves the state of previously provisioned resources when an operation fails.
Default: True
Trait Implementations
sourceimpl Clone for ExecuteChangeSetInput
impl Clone for ExecuteChangeSetInput
sourcefn clone(&self) -> ExecuteChangeSetInput
fn clone(&self) -> ExecuteChangeSetInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more