aws-sdk-mediaconnect 0.27.0

AWS SDK for AWS MediaConnect
Documentation
// 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): The ARN of the bridge that you want to update.
    ///   - [`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): Update an existing network output.
    ///   - [`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): The name of the bridge output that you want to update.
    /// - 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): The Amazon Resource Number (ARN) of the bridge.
    ///   - [`output(Option<BridgeOutput>)`](crate::operation::update_bridge_output::UpdateBridgeOutputOutput::output): The output that you updated.
    /// - 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(),
        )
    }
}