:doc:`WAFV2 <../../wafv2>` / Client / list_mobile_sdk_releases

************************
list_mobile_sdk_releases
************************



.. py:method:: WAFV2.Client.list_mobile_sdk_releases(**kwargs)

  

  Retrieves a list of the available releases for the mobile SDK and the specified device platform.

   

  The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see `WAF client application integration <https://docs.aws.amazon.com/waf/latest/developerguide/waf-application-integration.html>`__ in the *WAF Developer Guide*.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListMobileSdkReleases>`_  


  **Request Syntax**
  ::

    response = client.list_mobile_sdk_releases(
        Platform='IOS'|'ANDROID',
        NextMarker='string',
        Limit=123
    )
    
  :type Platform: string
  :param Platform: **[REQUIRED]** 

    The device platform to retrieve the list for.

    

  
  :type NextMarker: string
  :param NextMarker: 

    When you request a list of objects with a ``Limit`` setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a ``NextMarker`` value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

    

  
  :type Limit: integer
  :param Limit: 

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a ``NextMarker`` value that you can use in a subsequent call to get the next batch of objects.

    

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

    
    ::

      {
          'ReleaseSummaries': [
              {
                  'ReleaseVersion': 'string',
                  'Timestamp': datetime(2015, 1, 1)
              },
          ],
          'NextMarker': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ReleaseSummaries** *(list) --* 

        The high level information for the available SDK releases. If you specified a ``Limit`` in your request, this might not be the full list.

        
        

        - *(dict) --* 

          High level information for an SDK release.

          
          

          - **ReleaseVersion** *(string) --* 

            The release version.

            
          

          - **Timestamp** *(datetime) --* 

            The timestamp of the release.

            
      
    
      

      - **NextMarker** *(string) --* 

        When you request a list of objects with a ``Limit`` setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a ``NextMarker`` value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

        
  
  **Exceptions**
  
  *   :py:class:`WAFV2.Client.exceptions.WAFInternalErrorException`

  
  *   :py:class:`WAFV2.Client.exceptions.WAFInvalidParameterException`

  
  *   :py:class:`WAFV2.Client.exceptions.WAFInvalidOperationException`

  