deleteRouterNetworkInterface method

Future<DeleteRouterNetworkInterfaceResponse> deleteRouterNetworkInterface({
  1. required String arn,
})

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

Implementation

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