// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListStackRefactorActions`](crate::operation::list_stack_refactor_actions::builders::ListStackRefactorActionsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_stack_refactor_actions::builders::ListStackRefactorActionsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`stack_refactor_id(impl Into<String>)`](crate::operation::list_stack_refactor_actions::builders::ListStackRefactorActionsFluentBuilder::stack_refactor_id) / [`set_stack_refactor_id(Option<String>)`](crate::operation::list_stack_refactor_actions::builders::ListStackRefactorActionsFluentBuilder::set_stack_refactor_id):<br>required: **true**<br><p>The ID associated with the stack refactor created from the <code>CreateStackRefactor</code> action.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_stack_refactor_actions::builders::ListStackRefactorActionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_stack_refactor_actions::builders::ListStackRefactorActionsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of items to return. (You received this token from a previous call.)</p><br>
/// - [`max_results(i32)`](crate::operation::list_stack_refactor_actions::builders::ListStackRefactorActionsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_stack_refactor_actions::builders::ListStackRefactorActionsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a <code>NextToken</code> value that you can assign to the <code>NextToken</code> request parameter to get the next set of results.</p><br>
/// - On success, responds with [`ListStackRefactorActionsOutput`](crate::operation::list_stack_refactor_actions::ListStackRefactorActionsOutput) with field(s):
/// - [`stack_refactor_actions(Option<Vec::<StackRefactorAction>>)`](crate::operation::list_stack_refactor_actions::ListStackRefactorActionsOutput::stack_refactor_actions): <p>The stack refactor actions.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_stack_refactor_actions::ListStackRefactorActionsOutput::next_token): <p>If the request doesn't return all the remaining results, <code>NextToken</code> is set to a token. To retrieve the next set of results, call this action again and assign that token to the request object's <code>NextToken</code> parameter. If the request returns all results, <code>NextToken</code> is set to <code>null</code>.</p>
/// - On failure, responds with [`SdkError<ListStackRefactorActionsError>`](crate::operation::list_stack_refactor_actions::ListStackRefactorActionsError)
pub fn list_stack_refactor_actions(&self) -> crate::operation::list_stack_refactor_actions::builders::ListStackRefactorActionsFluentBuilder {
crate::operation::list_stack_refactor_actions::builders::ListStackRefactorActionsFluentBuilder::new(self.handle.clone())
}
}