1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ExecuteChangeSet`](crate::operation::execute_change_set::builders::ExecuteChangeSetFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`change_set_name(impl Into<String>)`](crate::operation::execute_change_set::builders::ExecuteChangeSetFluentBuilder::change_set_name) / [`set_change_set_name(Option<String>)`](crate::operation::execute_change_set::builders::ExecuteChangeSetFluentBuilder::set_change_set_name): <p>The name or Amazon Resource Name (ARN) of the change set that you want use to update the specified stack.</p>
    ///   - [`stack_name(impl Into<String>)`](crate::operation::execute_change_set::builders::ExecuteChangeSetFluentBuilder::stack_name) / [`set_stack_name(Option<String>)`](crate::operation::execute_change_set::builders::ExecuteChangeSetFluentBuilder::set_stack_name): <p>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.</p>
    ///   - [`client_request_token(impl Into<String>)`](crate::operation::execute_change_set::builders::ExecuteChangeSetFluentBuilder::client_request_token) / [`set_client_request_token(Option<String>)`](crate::operation::execute_change_set::builders::ExecuteChangeSetFluentBuilder::set_client_request_token): <p>A unique identifier for this <code>ExecuteChangeSet</code> 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 <code>ExecuteChangeSet</code> requests to ensure that CloudFormation successfully received them.</p>
    ///   - [`disable_rollback(bool)`](crate::operation::execute_change_set::builders::ExecuteChangeSetFluentBuilder::disable_rollback) / [`set_disable_rollback(Option<bool>)`](crate::operation::execute_change_set::builders::ExecuteChangeSetFluentBuilder::set_disable_rollback): <p>Preserves the state of previously provisioned resources when an operation fails.</p>  <p>Default: <code>True</code> </p>
    /// - On success, responds with [`ExecuteChangeSetOutput`](crate::operation::execute_change_set::ExecuteChangeSetOutput)
    /// - On failure, responds with [`SdkError<ExecuteChangeSetError>`](crate::operation::execute_change_set::ExecuteChangeSetError)
    pub fn execute_change_set(
        &self,
    ) -> crate::operation::execute_change_set::builders::ExecuteChangeSetFluentBuilder {
        crate::operation::execute_change_set::builders::ExecuteChangeSetFluentBuilder::new(
            self.handle.clone(),
        )
    }
}