:doc:`Lightsail <../../lightsail>` / Paginator / GetRelationalDatabaseBlueprints

*******************************
GetRelationalDatabaseBlueprints
*******************************



.. py:class:: Lightsail.Paginator.GetRelationalDatabaseBlueprints

  ::

    
    paginator = client.get_paginator('get_relational_database_blueprints')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`Lightsail.Client.get_relational_database_blueprints`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/lightsail-2016-11-28/GetRelationalDatabaseBlueprints>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'StartingToken': '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.

        

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

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

        

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

      
      ::

        {
            'blueprints': [
                {
                    'blueprintId': 'string',
                    'engine': 'mysql',
                    'engineVersion': 'string',
                    'engineDescription': 'string',
                    'engineVersionDescription': 'string',
                    'isEngineDefault': True|False
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **blueprints** *(list) --* 

          An object describing the result of your get relational database blueprints request.

          
          

          - *(dict) --* 

            Describes a database image, or blueprint. A blueprint describes the major engine version of a database.

            
            

            - **blueprintId** *(string) --* 

              The ID for the database blueprint.

              
            

            - **engine** *(string) --* 

              The database software of the database blueprint (for example, ``MySQL``).

              
            

            - **engineVersion** *(string) --* 

              The database engine version for the database blueprint (for example, ``5.7.23``).

              
            

            - **engineDescription** *(string) --* 

              The description of the database engine for the database blueprint.

              
            

            - **engineVersionDescription** *(string) --* 

              The description of the database engine version for the database blueprint.

              
            

            - **isEngineDefault** *(boolean) --* 

              A Boolean value indicating whether the engine version is the default for the database blueprint.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    