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
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`TakeRouterInput`](crate::operation::take_router_input::builders::TakeRouterInputFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`router_output_arn(impl Into<String>)`](crate::operation::take_router_input::builders::TakeRouterInputFluentBuilder::router_output_arn) / [`set_router_output_arn(Option<String>)`](crate::operation::take_router_input::builders::TakeRouterInputFluentBuilder::set_router_output_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the router output that you want to associate with a router input.</p><br>
    ///   - [`router_input_arn(impl Into<String>)`](crate::operation::take_router_input::builders::TakeRouterInputFluentBuilder::router_input_arn) / [`set_router_input_arn(Option<String>)`](crate::operation::take_router_input::builders::TakeRouterInputFluentBuilder::set_router_input_arn):<br>required: **false**<br><p>The Amazon Resource Name (ARN) of the router input that you want to associate with a router output.</p><br>
    /// - On success, responds with [`TakeRouterInputOutput`](crate::operation::take_router_input::TakeRouterInputOutput) with field(s):
    ///   - [`routed_state(RouterOutputRoutedState)`](crate::operation::take_router_input::TakeRouterInputOutput::routed_state): <p>The state of the association between the router input and output.</p>
    ///   - [`router_output_arn(String)`](crate::operation::take_router_input::TakeRouterInputOutput::router_output_arn): <p>The ARN of the associated router output.</p>
    ///   - [`router_output_name(String)`](crate::operation::take_router_input::TakeRouterInputOutput::router_output_name): <p>The name of the associated router output.</p>
    ///   - [`router_input_arn(Option<String>)`](crate::operation::take_router_input::TakeRouterInputOutput::router_input_arn): <p>The ARN of the associated router input.</p>
    ///   - [`router_input_name(Option<String>)`](crate::operation::take_router_input::TakeRouterInputOutput::router_input_name): <p>The name of the associated router input.</p>
    /// - On failure, responds with [`SdkError<TakeRouterInputError>`](crate::operation::take_router_input::TakeRouterInputError)
    pub fn take_router_input(&self) -> crate::operation::take_router_input::builders::TakeRouterInputFluentBuilder {
        crate::operation::take_router_input::builders::TakeRouterInputFluentBuilder::new(self.handle.clone())
    }
}