stopRouterOutput method

Future<StopRouterOutputResponse> stopRouterOutput({
  1. required String arn,
})

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

Implementation

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