// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`RemoveFlowOutput`](crate::operation::remove_flow_output::builders::RemoveFlowOutputFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`flow_arn(impl Into<String>)`](crate::operation::remove_flow_output::builders::RemoveFlowOutputFluentBuilder::flow_arn) / [`set_flow_arn(Option<String>)`](crate::operation::remove_flow_output::builders::RemoveFlowOutputFluentBuilder::set_flow_arn):<br>required: **true**<br>The flow that you want to remove an output from.<br>
/// - [`output_arn(impl Into<String>)`](crate::operation::remove_flow_output::builders::RemoveFlowOutputFluentBuilder::output_arn) / [`set_output_arn(Option<String>)`](crate::operation::remove_flow_output::builders::RemoveFlowOutputFluentBuilder::set_output_arn):<br>required: **true**<br>The ARN of the output that you want to remove.<br>
/// - On success, responds with [`RemoveFlowOutputOutput`](crate::operation::remove_flow_output::RemoveFlowOutputOutput) with field(s):
/// - [`flow_arn(Option<String>)`](crate::operation::remove_flow_output::RemoveFlowOutputOutput::flow_arn): The ARN of the flow that is associated with the output you removed.
/// - [`output_arn(Option<String>)`](crate::operation::remove_flow_output::RemoveFlowOutputOutput::output_arn): The ARN of the output that was removed.
/// - On failure, responds with [`SdkError<RemoveFlowOutputError>`](crate::operation::remove_flow_output::RemoveFlowOutputError)
pub fn remove_flow_output(&self) -> crate::operation::remove_flow_output::builders::RemoveFlowOutputFluentBuilder {
crate::operation::remove_flow_output::builders::RemoveFlowOutputFluentBuilder::new(self.handle.clone())
}
}