1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListFlywheelIterationHistory`](crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`flywheel_arn(impl Into<String>)`](crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder::flywheel_arn) / [`set_flywheel_arn(Option<String>)`](crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder::set_flywheel_arn): <p>The ARN of the flywheel.</p>
    ///   - [`filter(FlywheelIterationFilter)`](crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder::filter) / [`set_filter(Option<FlywheelIterationFilter>)`](crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder::set_filter): <p>Filter the flywheel iteration history based on creation time.</p>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder::set_next_token): <p>Next token</p>
    ///   - [`max_results(i32)`](crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder::set_max_results): <p>Maximum number of iteration history results to return</p>
    /// - On success, responds with [`ListFlywheelIterationHistoryOutput`](crate::operation::list_flywheel_iteration_history::ListFlywheelIterationHistoryOutput) with field(s):
    ///   - [`flywheel_iteration_properties_list(Option<Vec<FlywheelIterationProperties>>)`](crate::operation::list_flywheel_iteration_history::ListFlywheelIterationHistoryOutput::flywheel_iteration_properties_list): <p>List of flywheel iteration properties</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_flywheel_iteration_history::ListFlywheelIterationHistoryOutput::next_token): <p>Next token</p>
    /// - On failure, responds with [`SdkError<ListFlywheelIterationHistoryError>`](crate::operation::list_flywheel_iteration_history::ListFlywheelIterationHistoryError)
    pub fn list_flywheel_iteration_history(&self) -> crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder{
        crate::operation::list_flywheel_iteration_history::builders::ListFlywheelIterationHistoryFluentBuilder::new(self.handle.clone())
    }
}