aws_sdk_mediaconnect/client/remove_bridge_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 [`RemoveBridgeOutput`](crate::operation::remove_bridge_output::builders::RemoveBridgeOutputFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`bridge_arn(impl Into<String>)`](crate::operation::remove_bridge_output::builders::RemoveBridgeOutputFluentBuilder::bridge_arn) / [`set_bridge_arn(Option<String>)`](crate::operation::remove_bridge_output::builders::RemoveBridgeOutputFluentBuilder::set_bridge_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the bridge that you want to update.</p><br>
7 /// - [`output_name(impl Into<String>)`](crate::operation::remove_bridge_output::builders::RemoveBridgeOutputFluentBuilder::output_name) / [`set_output_name(Option<String>)`](crate::operation::remove_bridge_output::builders::RemoveBridgeOutputFluentBuilder::set_output_name):<br>required: **true**<br><p>The name of the bridge output that you want to remove.</p><br>
8 /// - On success, responds with [`RemoveBridgeOutputOutput`](crate::operation::remove_bridge_output::RemoveBridgeOutputOutput) with field(s):
9 /// - [`bridge_arn(Option<String>)`](crate::operation::remove_bridge_output::RemoveBridgeOutputOutput::bridge_arn): <p>The ARN of the bridge from which the output was removed.</p>
10 /// - [`output_name(Option<String>)`](crate::operation::remove_bridge_output::RemoveBridgeOutputOutput::output_name): <p>The name of the bridge output that was removed.</p>
11 /// - On failure, responds with [`SdkError<RemoveBridgeOutputError>`](crate::operation::remove_bridge_output::RemoveBridgeOutputError)
12 pub fn remove_bridge_output(&self) -> crate::operation::remove_bridge_output::builders::RemoveBridgeOutputFluentBuilder {
13 crate::operation::remove_bridge_output::builders::RemoveBridgeOutputFluentBuilder::new(self.handle.clone())
14 }
15}