batchGetRouterOutput method

Future<BatchGetRouterOutputResponse> batchGetRouterOutput({
  1. required List<String> arns,
})

Retrieves information about multiple router outputs 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 outputs you want to retrieve information about.

Implementation

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