getRouterInput method

Future<GetRouterInputResponse> getRouterInput({
  1. required String arn,
})

Retrieves information about a specific router input in AWS Elemental MediaConnect.

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

Parameter arn : The Amazon Resource Name (ARN) of the router input to retrieve information about.

Implementation

Future<GetRouterInputResponse> getRouterInput({
  required String arn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/v1/routerInput/${Uri.encodeComponent(arn)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetRouterInputResponse.fromJson(response);
}