batchGetRouterInput method

Future<BatchGetRouterInputResponse> batchGetRouterInput({
  1. required List<String> arns,
})

Retrieves information about multiple router inputs in AWS Elemental MediaConnect.

May throw BadRequestException. May throw ConflictException. May throw InternalServerErrorException. May throw ServiceUnavailableException. May throw TooManyRequestsException.

Parameter arns : The Amazon Resource Names (ARNs) of the router inputs you want to retrieve information about.

Implementation

Future<BatchGetRouterInputResponse> batchGetRouterInput({
  required List<String> arns,
}) async {
  final $query = <String, List<String>>{
    'arns': arns,
  };
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/v1/routerInputs',
    queryParams: $query,
    exceptionFnMap: _exceptionFns,
  );
  return BatchGetRouterInputResponse.fromJson(response);
}