:doc:`DataZone <../../datazone>` / Paginator / ListEnvironmentBlueprints

*************************
ListEnvironmentBlueprints
*************************



.. py:class:: DataZone.Paginator.ListEnvironmentBlueprints

  ::

    
    paginator = client.get_paginator('list_environment_blueprints')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`DataZone.Client.list_environment_blueprints`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListEnvironmentBlueprints>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          domainIdentifier='string',
          name='string',
          managed=True|False,
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type domainIdentifier: string
    :param domainIdentifier: **[REQUIRED]** 

      The identifier of the Amazon DataZone domain.

      

    
    :type name: string
    :param name: 

      The name of the Amazon DataZone environment.

      

    
    :type managed: boolean
    :param managed: 

      Specifies whether the environment blueprint is managed by Amazon DataZone.

      

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

      
      ::

        {
            'items': [
                {
                    'id': 'string',
                    'name': 'string',
                    'description': 'string',
                    'provider': 'string',
                    'provisioningProperties': {
                        'cloudFormation': {
                            'templateUrl': 'string'
                        }
                    },
                    'createdAt': datetime(2015, 1, 1),
                    'updatedAt': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **items** *(list) --* 

          The results of the ``ListEnvironmentBlueprints`` action.

          
          

          - *(dict) --* 

            The details of an environment blueprint summary.

            
            

            - **id** *(string) --* 

              The identifier of the blueprint.

              
            

            - **name** *(string) --* 

              The name of the blueprint.

              
            

            - **description** *(string) --* 

              The description of a blueprint.

              
            

            - **provider** *(string) --* 

              The provider of the blueprint.

              
            

            - **provisioningProperties** *(dict) --* 

              The provisioning properties of the blueprint.

              .. note::    This is a Tagged Union structure. Only one of the     following top level keys will be set: ``cloudFormation``.     If a client receives an unknown member it will     set ``SDK_UNKNOWN_MEMBER`` as the top level key,     which maps to the name or tag of the unknown     member. The structure of ``SDK_UNKNOWN_MEMBER`` is     as follows::

                            'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}


            
              

              - **cloudFormation** *(dict) --* 

                The cloud formation properties included as part of the provisioning properties of an environment blueprint.

                
                

                - **templateUrl** *(string) --* 

                  The template URL of the cloud formation provisioning properties of the environment blueprint.

                  
            
          
            

            - **createdAt** *(datetime) --* 

              The timestamp of when an environment blueprint was created.

              
            

            - **updatedAt** *(datetime) --* 

              The timestamp of when the blueprint was enabled.

              
        
      
        

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

          A token to resume pagination.

          
    