aws_sdk_mediaconnect/client/batch_get_router_input.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 [`BatchGetRouterInput`](crate::operation::batch_get_router_input::builders::BatchGetRouterInputFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`arns(impl Into<String>)`](crate::operation::batch_get_router_input::builders::BatchGetRouterInputFluentBuilder::arns) / [`set_arns(Option<Vec::<String>>)`](crate::operation::batch_get_router_input::builders::BatchGetRouterInputFluentBuilder::set_arns):<br>required: **true**<br><p>The Amazon Resource Names (ARNs) of the router inputs you want to retrieve information about.</p><br>
7 /// - On success, responds with [`BatchGetRouterInputOutput`](crate::operation::batch_get_router_input::BatchGetRouterInputOutput) with field(s):
8 /// - [`router_inputs(Vec::<RouterInput>)`](crate::operation::batch_get_router_input::BatchGetRouterInputOutput::router_inputs): <p>An array of router inputs that were successfully retrieved.</p>
9 /// - [`errors(Vec::<BatchGetRouterInputError>)`](crate::operation::batch_get_router_input::BatchGetRouterInputOutput::errors): <p>An array of errors that occurred when retrieving the requested router inputs.</p>
10 /// - On failure, responds with [`SdkError<BatchGetRouterInputError>`](crate::operation::batch_get_router_input::BatchGetRouterInputError)
11 pub fn batch_get_router_input(&self) -> crate::operation::batch_get_router_input::builders::BatchGetRouterInputFluentBuilder {
12 crate::operation::batch_get_router_input::builders::BatchGetRouterInputFluentBuilder::new(self.handle.clone())
13 }
14}