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