aws-sdk-mediaconnect 1.109.0

AWS SDK for AWS MediaConnect
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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><p>The Amazon Resource Name (ARN) of the flow that you want to remove an output from.</p><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><p>The ARN of the output that you want to remove.</p><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): <p>The ARN of the flow that the output was removed from.</p>
    ///   - [`output_arn(Option<String>)`](crate::operation::remove_flow_output::RemoveFlowOutputOutput::output_arn): <p>The ARN of the output that was removed.</p>
    /// - 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())
    }
}