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

******************************
DescribeReservedNodesOfferings
******************************



.. py:class:: MemoryDB.Paginator.DescribeReservedNodesOfferings

  ::

    
    paginator = client.get_paginator('describe_reserved_nodes_offerings')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          ReservedNodesOfferingId='string',
          NodeType='string',
          Duration='string',
          OfferingType='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type ReservedNodesOfferingId: string
    :param ReservedNodesOfferingId: 

      The offering identifier filter value. Use this parameter to show only the available offering that matches the specified reservation identifier.

      

    
    :type NodeType: string
    :param NodeType: 

      The node type for the reserved nodes. For more information, see `Supported node types <https://docs.aws.amazon.com/memorydb/latest/devguide/nodes.reserved.html#reserved-nodes-supported>`__.

      

    
    :type Duration: string
    :param Duration: 

      Duration filter value, specified in years or seconds. Use this parameter to show only reservations for a given duration.

      

    
    :type OfferingType: string
    :param OfferingType: 

      The offering type filter value. Use this parameter to show only the available offerings matching the specified offering type. Valid values: "All Upfront"|"Partial Upfront"| "No Upfront"

      

    
    :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**

      
      ::

        {
            'ReservedNodesOfferings': [
                {
                    'ReservedNodesOfferingId': 'string',
                    'NodeType': 'string',
                    'Duration': 123,
                    'FixedPrice': 123.0,
                    'OfferingType': 'string',
                    'RecurringCharges': [
                        {
                            'RecurringChargeAmount': 123.0,
                            'RecurringChargeFrequency': 'string'
                        },
                    ]
                },
            ]
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ReservedNodesOfferings** *(list) --* 

          Lists available reserved node offerings.

          
          

          - *(dict) --* 

            The offering type of this node.

            
            

            - **ReservedNodesOfferingId** *(string) --* 

              The offering identifier.

              
            

            - **NodeType** *(string) --* 

              The node type for the reserved nodes. For more information, see `Supported node types <https://docs.aws.amazon.com/memorydb/latest/devguide/nodes.reserved.html#reserved-nodes-supported>`__.

              
            

            - **Duration** *(integer) --* 

              The duration of the reservation in seconds.

              
            

            - **FixedPrice** *(float) --* 

              The fixed price charged for this reserved node.

              
            

            - **OfferingType** *(string) --* 

              The offering type of this reserved node.

              
            

            - **RecurringCharges** *(list) --* 

              The recurring price charged to run this reserved node.

              
              

              - *(dict) --* 

                The recurring charge to run this reserved node.

                
                

                - **RecurringChargeAmount** *(float) --* 

                  The amount of the recurring charge to run this reserved node.

                  
                

                - **RecurringChargeFrequency** *(string) --* 

                  The frequency of the recurring price charged to run this reserved node.

                  
            
          
        
      
    