rejectInputDeviceTransfer method

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

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

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

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

Implementation

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