:doc:`IoTWireless <../../iotwireless>` / Client / update_fuota_task

*****************
update_fuota_task
*****************



.. py:method:: IoTWireless.Client.update_fuota_task(**kwargs)

  

  Updates properties of a FUOTA task.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iotwireless-2020-11-22/UpdateFuotaTask>`_  


  **Request Syntax**
  ::

    response = client.update_fuota_task(
        Id='string',
        Name='string',
        Description='string',
        LoRaWAN={
            'RfRegion': 'EU868'|'US915'|'AU915'|'AS923-1'|'AS923-2'|'AS923-3'|'AS923-4'|'EU433'|'CN470'|'CN779'|'RU864'|'KR920'|'IN865'
        },
        FirmwareUpdateImage='string',
        FirmwareUpdateRole='string',
        RedundancyPercent=123,
        FragmentSizeBytes=123,
        FragmentIntervalMS=123,
        Descriptor='string'
    )
    
  :type Id: string
  :param Id: **[REQUIRED]** 

    The ID of a FUOTA task.

    

  
  :type Name: string
  :param Name: 

    The name of a FUOTA task.

    

  
  :type Description: string
  :param Description: 

    The description of the new resource.

    

  
  :type LoRaWAN: dict
  :param LoRaWAN: 

    The LoRaWAN information used with a FUOTA task.

    

  
    - **RfRegion** *(string) --* 

      Supported RfRegions

      

    
  
  :type FirmwareUpdateImage: string
  :param FirmwareUpdateImage: 

    The S3 URI points to a firmware update image that is to be used with a FUOTA task.

    

  
  :type FirmwareUpdateRole: string
  :param FirmwareUpdateRole: 

    The firmware update role that is to be used with a FUOTA task.

    

  
  :type RedundancyPercent: integer
  :param RedundancyPercent: 

    The percentage of the added fragments that are redundant. For example, if the size of the firmware image file is 100 bytes and the fragment size is 10 bytes, with ``RedundancyPercent`` set to 50(%), the final number of encoded fragments is (100 / 10) + (100 / 10 * 50%) = 15.

    

  
  :type FragmentSizeBytes: integer
  :param FragmentSizeBytes: 

    The size of each fragment in bytes. This parameter is supported only for FUOTA tasks with multicast groups.

    

  
  :type FragmentIntervalMS: integer
  :param FragmentIntervalMS: 

    The interval for sending fragments in milliseconds, rounded to the nearest second.

     

    .. note::

      

      This interval only determines the timing for when the Cloud sends down the fragments to yor device. There can be a delay for when your device will receive these fragments. This delay depends on the device's class and the communication delay with the cloud.

      

    

  
  :type Descriptor: string
  :param Descriptor: 

    The descriptor is the metadata about the file that is transferred to the device using FUOTA, such as the software version. It is a binary field encoded in base64.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {}
      
    **Response Structure**

    

    - *(dict) --* 
  
  **Exceptions**
  
  *   :py:class:`IoTWireless.Client.exceptions.ValidationException`

  
  *   :py:class:`IoTWireless.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`IoTWireless.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`IoTWireless.Client.exceptions.ConflictException`

  
  *   :py:class:`IoTWireless.Client.exceptions.InternalServerException`

  
  *   :py:class:`IoTWireless.Client.exceptions.ThrottlingException`

  