stopRouterInput method

Future<StopRouterInputResponse> stopRouterInput({
  1. required String arn,
})

Stops a 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 that you want to stop.

Implementation

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