aws_sdk_mediaconnect/client/
remove_flow_output.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 [`RemoveFlowOutput`](crate::operation::remove_flow_output::builders::RemoveFlowOutputFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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><p>The Amazon Resource Name (ARN) of the flow that you want to remove an output from.</p><br>
7    ///   - [`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><p>The ARN of the output that you want to remove.</p><br>
8    /// - On success, responds with [`RemoveFlowOutputOutput`](crate::operation::remove_flow_output::RemoveFlowOutputOutput) with field(s):
9    ///   - [`flow_arn(Option<String>)`](crate::operation::remove_flow_output::RemoveFlowOutputOutput::flow_arn): <p>The ARN of the flow that the output was removed from.</p>
10    ///   - [`output_arn(Option<String>)`](crate::operation::remove_flow_output::RemoveFlowOutputOutput::output_arn): <p>The ARN of the output that was removed.</p>
11    /// - On failure, responds with [`SdkError<RemoveFlowOutputError>`](crate::operation::remove_flow_output::RemoveFlowOutputError)
12    pub fn remove_flow_output(&self) -> crate::operation::remove_flow_output::builders::RemoveFlowOutputFluentBuilder {
13        crate::operation::remove_flow_output::builders::RemoveFlowOutputFluentBuilder::new(self.handle.clone())
14    }
15}