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 [`AddBridgeOutputs`](crate::operation::add_bridge_outputs::builders::AddBridgeOutputsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`bridge_arn(impl Into<String>)`](crate::operation::add_bridge_outputs::builders::AddBridgeOutputsFluentBuilder::bridge_arn) / [`set_bridge_arn(Option<String>)`](crate::operation::add_bridge_outputs::builders::AddBridgeOutputsFluentBuilder::set_bridge_arn): The ARN of the bridge that you want to update.
    ///   - [`outputs(Vec<AddBridgeOutputRequest>)`](crate::operation::add_bridge_outputs::builders::AddBridgeOutputsFluentBuilder::outputs) / [`set_outputs(Option<Vec<AddBridgeOutputRequest>>)`](crate::operation::add_bridge_outputs::builders::AddBridgeOutputsFluentBuilder::set_outputs): The outputs that you want to add to this bridge.
    /// - On success, responds with [`AddBridgeOutputsOutput`](crate::operation::add_bridge_outputs::AddBridgeOutputsOutput) with field(s):
    ///   - [`bridge_arn(Option<String>)`](crate::operation::add_bridge_outputs::AddBridgeOutputsOutput::bridge_arn): The Amazon Resource Number (ARN) of the bridge.
    ///   - [`outputs(Option<Vec<BridgeOutput>>)`](crate::operation::add_bridge_outputs::AddBridgeOutputsOutput::outputs): The outputs that you added to this bridge.
    /// - On failure, responds with [`SdkError<AddBridgeOutputsError>`](crate::operation::add_bridge_outputs::AddBridgeOutputsError)
    pub fn add_bridge_outputs(
        &self,
    ) -> crate::operation::add_bridge_outputs::builders::AddBridgeOutputsFluentBuilder {
        crate::operation::add_bridge_outputs::builders::AddBridgeOutputsFluentBuilder::new(
            self.handle.clone(),
        )
    }
}