aws_sdk_mediaconnect/client/
update_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 [`UpdateBridgeOutput`](crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`bridge_arn(impl Into<String>)`](crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder::bridge_arn) / [`set_bridge_arn(Option<String>)`](crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder::set_bridge_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the bridge that you want to update.</p><br>
7    ///   - [`network_output(UpdateBridgeNetworkOutputRequest)`](crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder::network_output) / [`set_network_output(Option<UpdateBridgeNetworkOutputRequest>)`](crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder::set_network_output):<br>required: **false**<br><p>The network of the bridge output.</p><br>
8    ///   - [`output_name(impl Into<String>)`](crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder::output_name) / [`set_output_name(Option<String>)`](crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder::set_output_name):<br>required: **true**<br><p>Tname of the output that you want to update.</p><br>
9    /// - On success, responds with [`UpdateBridgeOutputOutput`](crate::operation::update_bridge_output::UpdateBridgeOutputOutput) with field(s):
10    ///   - [`bridge_arn(Option<String>)`](crate::operation::update_bridge_output::UpdateBridgeOutputOutput::bridge_arn): <p>The ARN of the bridge that was updated.</p>
11    ///   - [`output(Option<BridgeOutput>)`](crate::operation::update_bridge_output::UpdateBridgeOutputOutput::output): <p>The bridge output that was updated.</p>
12    /// - On failure, responds with [`SdkError<UpdateBridgeOutputError>`](crate::operation::update_bridge_output::UpdateBridgeOutputError)
13    pub fn update_bridge_output(&self) -> crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder {
14        crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder::new(self.handle.clone())
15    }
16}