rejectInputDeviceTransfer method

Future<void> rejectInputDeviceTransfer({
  1. required String inputDeviceId,
})

Reject the transfer of the specified input device to your AWS account.

May throw BadGatewayException. May throw BadRequestException. May throw ConflictException. May throw ForbiddenException. May throw GatewayTimeoutException. May throw InternalServerErrorException. May throw NotFoundException. May throw TooManyRequestsException. May throw UnprocessableEntityException.

Parameter inputDeviceId : The unique ID of the input device to reject. For example, hd-123456789abcdef.

Implementation

Future<void> rejectInputDeviceTransfer({
  required String inputDeviceId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'POST',
    requestUri:
        '/prod/inputDevices/${Uri.encodeComponent(inputDeviceId)}/reject',
    exceptionFnMap: _exceptionFns,
  );
}