:doc:`DataZone <../../datazone>` / Client / list_environment_blueprints

***************************
list_environment_blueprints
***************************



.. py:method:: DataZone.Client.list_environment_blueprints(**kwargs)

  

  Lists blueprints in an Amazon DataZone environment.

  

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


  **Request Syntax**
  ::

    response = client.list_environment_blueprints(
        domainIdentifier='string',
        maxResults=123,
        nextToken='string',
        name='string',
        managed=True|False
    )
    
  :type domainIdentifier: string
  :param domainIdentifier: **[REQUIRED]** 

    The identifier of the Amazon DataZone domain.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of blueprints to return in a single call to ``ListEnvironmentBlueprints``. When the number of blueprints to be listed is greater than the value of ``MaxResults``, the response contains a ``NextToken`` value that you can use in a subsequent call to ``ListEnvironmentBlueprints`` to list the next set of blueprints.

    

  
  :type nextToken: string
  :param nextToken: 

    When the number of blueprints in the environment is greater than the default value for the ``MaxResults`` parameter, or if you explicitly specify a value for ``MaxResults`` that is less than the number of blueprints in the environment, the response includes a pagination token named ``NextToken``. You can specify this ``NextToken`` value in a subsequent call to ``ListEnvironmentBlueprints``to list the next set of blueprints.

    

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

    

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

        When the number of blueprints in the environment is greater than the default value for the ``MaxResults`` parameter, or if you explicitly specify a value for ``MaxResults`` that is less than the number of blueprints in the environment, the response includes a pagination token named ``NextToken``. You can specify this ``NextToken`` value in a subsequent call to ``ListEnvironmentBlueprints``to list the next set of blueprints.

        
  
  **Exceptions**
  
  *   :py:class:`DataZone.Client.exceptions.InternalServerException`

  
  *   :py:class:`DataZone.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`DataZone.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`DataZone.Client.exceptions.ThrottlingException`

  
  *   :py:class:`DataZone.Client.exceptions.ValidationException`

  
  *   :py:class:`DataZone.Client.exceptions.UnauthorizedException`

  