1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteFlywheel`](crate::operation::delete_flywheel::builders::DeleteFlywheelFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`flywheel_arn(impl Into<String>)`](crate::operation::delete_flywheel::builders::DeleteFlywheelFluentBuilder::flywheel_arn) / [`set_flywheel_arn(Option<String>)`](crate::operation::delete_flywheel::builders::DeleteFlywheelFluentBuilder::set_flywheel_arn): <p>The Amazon Resource Number (ARN) of the flywheel to delete.</p>
    /// - On success, responds with [`DeleteFlywheelOutput`](crate::operation::delete_flywheel::DeleteFlywheelOutput)
    /// - On failure, responds with [`SdkError<DeleteFlywheelError>`](crate::operation::delete_flywheel::DeleteFlywheelError)
    pub fn delete_flywheel(
        &self,
    ) -> crate::operation::delete_flywheel::builders::DeleteFlywheelFluentBuilder {
        crate::operation::delete_flywheel::builders::DeleteFlywheelFluentBuilder::new(
            self.handle.clone(),
        )
    }
}