aws_sdk_comprehend/client/describe_flywheel.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 [`DescribeFlywheel`](crate::operation::describe_flywheel::builders::DescribeFlywheelFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`flywheel_arn(impl Into<String>)`](crate::operation::describe_flywheel::builders::DescribeFlywheelFluentBuilder::flywheel_arn) / [`set_flywheel_arn(Option<String>)`](crate::operation::describe_flywheel::builders::DescribeFlywheelFluentBuilder::set_flywheel_arn):<br>required: **true**<br><p>The Amazon Resource Number (ARN) of the flywheel.</p><br>
7 /// - On success, responds with [`DescribeFlywheelOutput`](crate::operation::describe_flywheel::DescribeFlywheelOutput) with field(s):
8 /// - [`flywheel_properties(Option<FlywheelProperties>)`](crate::operation::describe_flywheel::DescribeFlywheelOutput::flywheel_properties): <p>The flywheel properties.</p>
9 /// - On failure, responds with [`SdkError<DescribeFlywheelError>`](crate::operation::describe_flywheel::DescribeFlywheelError)
10 pub fn describe_flywheel(&self) -> crate::operation::describe_flywheel::builders::DescribeFlywheelFluentBuilder {
11 crate::operation::describe_flywheel::builders::DescribeFlywheelFluentBuilder::new(self.handle.clone())
12 }
13}