:doc:`CodeBuild <../../codebuild>` / Client / list_curated_environment_images

*******************************
list_curated_environment_images
*******************************



.. py:method:: CodeBuild.Client.list_curated_environment_images()

  

  Gets information about Docker images that are managed by CodeBuild.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/codebuild-2016-10-06/ListCuratedEnvironmentImages>`_  


  **Request Syntax**
  ::

    response = client.list_curated_environment_images()
    
    
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'platforms': [
              {
                  'platform': 'DEBIAN'|'AMAZON_LINUX'|'UBUNTU'|'WINDOWS_SERVER',
                  'languages': [
                      {
                          'language': 'JAVA'|'PYTHON'|'NODE_JS'|'RUBY'|'GOLANG'|'DOCKER'|'ANDROID'|'DOTNET'|'BASE'|'PHP',
                          'images': [
                              {
                                  'name': 'string',
                                  'description': 'string',
                                  'versions': [
                                      'string',
                                  ]
                              },
                          ]
                      },
                  ]
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **platforms** *(list) --* 

        Information about supported platforms for Docker images that are managed by CodeBuild.

        
        

        - *(dict) --* 

          A set of Docker images that are related by platform and are managed by CodeBuild.

          
          

          - **platform** *(string) --* 

            The platform's name.

            
          

          - **languages** *(list) --* 

            The list of programming languages that are available for the specified platform.

            
            

            - *(dict) --* 

              A set of Docker images that are related by programming language and are managed by CodeBuild.

              
              

              - **language** *(string) --* 

                The programming language for the Docker images.

                
              

              - **images** *(list) --* 

                The list of Docker images that are related by the specified programming language.

                
                

                - *(dict) --* 

                  Information about a Docker image that is managed by CodeBuild.

                  
                  

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

                    The name of the Docker image.

                    
                  

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

                    The description of the Docker image.

                    
                  

                  - **versions** *(list) --* 

                    A list of environment image versions.

                    
                    

                    - *(string) --* 
                
              
            
          
        
      
    
  