deleteRouterInput method

Future<DeleteRouterInputResponse> deleteRouterInput({
  1. required String arn,
})

Deletes a router input 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 input that you want to delete.

Implementation

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