1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteFlow`](crate::operation::delete_flow::builders::DeleteFlowFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`flow_arn(impl Into<String>)`](crate::operation::delete_flow::builders::DeleteFlowFluentBuilder::flow_arn) / [`set_flow_arn(Option<String>)`](crate::operation::delete_flow::builders::DeleteFlowFluentBuilder::set_flow_arn):<br>required: **true**<br>The ARN of the flow that you want to delete.<br>
    /// - On success, responds with [`DeleteFlowOutput`](crate::operation::delete_flow::DeleteFlowOutput) with field(s):
    ///   - [`flow_arn(Option<String>)`](crate::operation::delete_flow::DeleteFlowOutput::flow_arn): The ARN of the flow that was deleted.
    ///   - [`status(Option<Status>)`](crate::operation::delete_flow::DeleteFlowOutput::status): The status of the flow when the DeleteFlow process begins.
    /// - On failure, responds with [`SdkError<DeleteFlowError>`](crate::operation::delete_flow::DeleteFlowError)
    pub fn delete_flow(&self) -> crate::operation::delete_flow::builders::DeleteFlowFluentBuilder {
        crate::operation::delete_flow::builders::DeleteFlowFluentBuilder::new(self.handle.clone())
    }
}