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
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateBridgeOutput`](crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`UpdateBridgeOutputOutput`](crate::operation::update_bridge_output::UpdateBridgeOutputOutput) with field(s):
    ///   - [`bridge_arn(Option<String>)`](crate::operation::update_bridge_output::UpdateBridgeOutputOutput::bridge_arn): <p>The ARN of the bridge that was updated.</p>
    ///   - [`output(Option<BridgeOutput>)`](crate::operation::update_bridge_output::UpdateBridgeOutputOutput::output): <p>The bridge output that was updated.</p>
    /// - On failure, responds with [`SdkError<UpdateBridgeOutputError>`](crate::operation::update_bridge_output::UpdateBridgeOutputError)
    pub fn update_bridge_output(&self) -> crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder {
        crate::operation::update_bridge_output::builders::UpdateBridgeOutputFluentBuilder::new(self.handle.clone())
    }
}