deleteRouterOutput method

Future<DeleteRouterOutputResponse> deleteRouterOutput({
  1. required String arn,
})

Deletes a router output from 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 delete.

Implementation

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