aws_sdk_comprehend/client/
describe_flywheel_iteration.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DescribeFlywheelIteration`](crate::operation::describe_flywheel_iteration::builders::DescribeFlywheelIterationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`flywheel_arn(impl Into<String>)`](crate::operation::describe_flywheel_iteration::builders::DescribeFlywheelIterationFluentBuilder::flywheel_arn) / [`set_flywheel_arn(Option<String>)`](crate::operation::describe_flywheel_iteration::builders::DescribeFlywheelIterationFluentBuilder::set_flywheel_arn):<br>required: **true**<br><p></p><br>
7    ///   - [`flywheel_iteration_id(impl Into<String>)`](crate::operation::describe_flywheel_iteration::builders::DescribeFlywheelIterationFluentBuilder::flywheel_iteration_id) / [`set_flywheel_iteration_id(Option<String>)`](crate::operation::describe_flywheel_iteration::builders::DescribeFlywheelIterationFluentBuilder::set_flywheel_iteration_id):<br>required: **true**<br><p></p><br>
8    /// - On success, responds with [`DescribeFlywheelIterationOutput`](crate::operation::describe_flywheel_iteration::DescribeFlywheelIterationOutput) with field(s):
9    ///   - [`flywheel_iteration_properties(Option<FlywheelIterationProperties>)`](crate::operation::describe_flywheel_iteration::DescribeFlywheelIterationOutput::flywheel_iteration_properties): <p>The configuration properties of a flywheel iteration.</p>
10    /// - On failure, responds with [`SdkError<DescribeFlywheelIterationError>`](crate::operation::describe_flywheel_iteration::DescribeFlywheelIterationError)
11    pub fn describe_flywheel_iteration(&self) -> crate::operation::describe_flywheel_iteration::builders::DescribeFlywheelIterationFluentBuilder {
12        crate::operation::describe_flywheel_iteration::builders::DescribeFlywheelIterationFluentBuilder::new(self.handle.clone())
13    }
14}