:doc:`MemoryDB <../../memorydb>` / Paginator / DescribeServiceUpdates

**********************
DescribeServiceUpdates
**********************



.. py:class:: MemoryDB.Paginator.DescribeServiceUpdates

  ::

    
    paginator = client.get_paginator('describe_service_updates')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`MemoryDB.Client.describe_service_updates`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeServiceUpdates>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          ServiceUpdateName='string',
          ClusterNames=[
              'string',
          ],
          Status=[
              'available'|'in-progress'|'complete'|'scheduled',
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type ServiceUpdateName: string
    :param ServiceUpdateName: 

      The unique ID of the service update to describe.

      

    
    :type ClusterNames: list
    :param ClusterNames: 

      The list of cluster names to identify service updates to apply.

      

    
      - *(string) --* 

      
  
    :type Status: list
    :param Status: 

      The status(es) of the service updates to filter on.

      

    
      - *(string) --* 

      
  
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

        {
            'ServiceUpdates': [
                {
                    'ClusterName': 'string',
                    'ServiceUpdateName': 'string',
                    'ReleaseDate': datetime(2015, 1, 1),
                    'Description': 'string',
                    'Status': 'available'|'in-progress'|'complete'|'scheduled',
                    'Type': 'security-update',
                    'Engine': 'string',
                    'NodesUpdated': 'string',
                    'AutoUpdateStartDate': datetime(2015, 1, 1)
                },
            ]
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ServiceUpdates** *(list) --* 

          A list of service updates

          
          

          - *(dict) --* 

            An update that you can apply to your MemoryDB clusters.

            
            

            - **ClusterName** *(string) --* 

              The name of the cluster to which the service update applies

              
            

            - **ServiceUpdateName** *(string) --* 

              The unique ID of the service update

              
            

            - **ReleaseDate** *(datetime) --* 

              The date when the service update is initially available

              
            

            - **Description** *(string) --* 

              Provides details of the service update

              
            

            - **Status** *(string) --* 

              The status of the service update

              
            

            - **Type** *(string) --* 

              Reflects the nature of the service update

              
            

            - **Engine** *(string) --* 

              The name of the engine for which a service update is available.

              
            

            - **NodesUpdated** *(string) --* 

              A list of nodes updated by the service update

              
            

            - **AutoUpdateStartDate** *(datetime) --* 

              The date at which the service update will be automatically applied

              
        
      
    