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

*****************************************
list_environment_blueprint_configurations
*****************************************



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

  

  Lists blueprint configurations for a Amazon DataZone environment.

  

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


  **Request Syntax**
  ::

    response = client.list_environment_blueprint_configurations(
        domainIdentifier='string',
        maxResults=123,
        nextToken='string'
    )
    
  :type domainIdentifier: string
  :param domainIdentifier: **[REQUIRED]** 

    The identifier of the Amazon DataZone domain.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of blueprint configurations to return in a single call to ``ListEnvironmentBlueprintConfigurations``. When the number of configurations 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 ``ListEnvironmentBlueprintConfigurations`` to list the next set of configurations.

    

  
  :type nextToken: string
  :param nextToken: 

    When the number of blueprint configurations 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 configurations, the response includes a pagination token named ``NextToken``. You can specify this ``NextToken`` value in a subsequent call to ``ListEnvironmentBlueprintConfigurations`` to list the next set of configurations.

    

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

    
    ::

      {
          'items': [
              {
                  'domainId': 'string',
                  'environmentBlueprintId': 'string',
                  'provisioningRoleArn': 'string',
                  'environmentRolePermissionBoundary': 'string',
                  'manageAccessRoleArn': 'string',
                  'enabledRegions': [
                      'string',
                  ],
                  'regionalParameters': {
                      'string': {
                          'string': 'string'
                      }
                  },
                  'createdAt': datetime(2015, 1, 1),
                  'updatedAt': datetime(2015, 1, 1),
                  'provisioningConfigurations': [
                      {
                          'lakeFormationConfiguration': {
                              'locationRegistrationRole': 'string',
                              'locationRegistrationExcludeS3Locations': [
                                  'string',
                              ]
                          }
                      },
                  ]
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The results of the ``ListEnvironmentBlueprintConfigurations`` action.

        
        

        - *(dict) --* 

          The configuration details of an environment blueprint.

          
          

          - **domainId** *(string) --* 

            The identifier of the Amazon DataZone domain in which an environment blueprint exists.

            
          

          - **environmentBlueprintId** *(string) --* 

            The identifier of the environment blueprint.

            
          

          - **provisioningRoleArn** *(string) --* 

            The ARN of the provisioning role specified in the environment blueprint configuration.

            
          

          - **environmentRolePermissionBoundary** *(string) --* 

            The environment role permission boundary.

            
          

          - **manageAccessRoleArn** *(string) --* 

            The ARN of the manage access role specified in the environment blueprint configuration.

            
          

          - **enabledRegions** *(list) --* 

            The enabled Amazon Web Services Regions specified in a blueprint configuration.

            
            

            - *(string) --* 
        
          

          - **regionalParameters** *(dict) --* 

            The regional parameters of the environment blueprint.

            
            

            - *(string) --* 
              

              - *(dict) --* 
                

                - *(string) --* 
                  

                  - *(string) --* 
            
          
        
      
          

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

            The timestamp of when an environment blueprint was created.

            
          

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

            The timestamp of when the environment blueprint was updated.

            
          

          - **provisioningConfigurations** *(list) --* 

            The provisioning configuration of a blueprint.

            
            

            - *(dict) --* 

              The provisioning configuration of the blueprint.

              .. note::    This is a Tagged Union structure. Only one of the     following top level keys will be set: ``lakeFormationConfiguration``.     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'}


            
              

              - **lakeFormationConfiguration** *(dict) --* 

                The Lake Formation configuration of the Data Lake blueprint.

                
                

                - **locationRegistrationRole** *(string) --* 

                  The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for Data Lake using Amazon Web Services Lake Formation hybrid access mode.

                  
                

                - **locationRegistrationExcludeS3Locations** *(list) --* 

                  Specifies certain Amazon S3 locations if you do not want Amazon DataZone to automatically register them in hybrid mode.

                  
                  

                  - *(string) --* 
              
            
          
        
      
    
      

      - **nextToken** *(string) --* 

        When the number of blueprint configurations 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 configurations, the response includes a pagination token named ``NextToken``. You can specify this ``NextToken`` value in a subsequent call to ``ListEnvironmentBlueprintConfigurations`` to list the next set of configurations.

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

  