// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`RollbackStack`](crate::operation::rollback_stack::builders::RollbackStackFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`stack_name(impl Into<String>)`](crate::operation::rollback_stack::builders::RollbackStackFluentBuilder::stack_name) / [`set_stack_name(Option<String>)`](crate::operation::rollback_stack::builders::RollbackStackFluentBuilder::set_stack_name): <p>The name that's associated with the stack.</p>
/// - [`role_arn(impl Into<String>)`](crate::operation::rollback_stack::builders::RollbackStackFluentBuilder::role_arn) / [`set_role_arn(Option<String>)`](crate::operation::rollback_stack::builders::RollbackStackFluentBuilder::set_role_arn): <p>The Amazon Resource Name (ARN) of an Identity and Access Management role that CloudFormation assumes to rollback the stack.</p>
/// - [`client_request_token(impl Into<String>)`](crate::operation::rollback_stack::builders::RollbackStackFluentBuilder::client_request_token) / [`set_client_request_token(Option<String>)`](crate::operation::rollback_stack::builders::RollbackStackFluentBuilder::set_client_request_token): <p>A unique identifier for this <code>RollbackStack</code> request.</p>
/// - On success, responds with [`RollbackStackOutput`](crate::operation::rollback_stack::RollbackStackOutput) with field(s):
/// - [`stack_id(Option<String>)`](crate::operation::rollback_stack::RollbackStackOutput::stack_id): <p>Unique identifier of the stack.</p>
/// - On failure, responds with [`SdkError<RollbackStackError>`](crate::operation::rollback_stack::RollbackStackError)
pub fn rollback_stack(
&self,
) -> crate::operation::rollback_stack::builders::RollbackStackFluentBuilder {
crate::operation::rollback_stack::builders::RollbackStackFluentBuilder::new(
self.handle.clone(),
)
}
}