:doc:`AmplifyUIBuilder <../../amplifyuibuilder>` / Client / list_codegen_jobs

*****************
list_codegen_jobs
*****************



.. py:method:: AmplifyUIBuilder.Client.list_codegen_jobs(**kwargs)

  

  Retrieves a list of code generation jobs for a specified Amplify app and backend environment.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/amplifyuibuilder-2021-08-11/ListCodegenJobs>`_  


  **Request Syntax**
  ::

    response = client.list_codegen_jobs(
        appId='string',
        environmentName='string',
        nextToken='string',
        maxResults=123
    )
    
  :type appId: string
  :param appId: **[REQUIRED]** 

    The unique ID for the Amplify app.

    

  
  :type environmentName: string
  :param environmentName: **[REQUIRED]** 

    The name of the backend environment that is a part of the Amplify app.

    

  
  :type nextToken: string
  :param nextToken: 

    The token to request the next page of results.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of jobs to retrieve.

    

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

    
    ::

      {
          'entities': [
              {
                  'appId': 'string',
                  'environmentName': 'string',
                  'id': 'string',
                  'createdAt': datetime(2015, 1, 1),
                  'modifiedAt': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **entities** *(list) --* 

        The list of code generation jobs for the Amplify app.

        
        

        - *(dict) --* 

          A summary of the basic information about the code generation job.

          
          

          - **appId** *(string) --* 

            The unique ID of the Amplify app associated with the code generation job.

            
          

          - **environmentName** *(string) --* 

            The name of the backend environment associated with the code generation job.

            
          

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

            The unique ID for the code generation job summary.

            
          

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

            The time that the code generation job summary was created.

            
          

          - **modifiedAt** *(datetime) --* 

            The time that the code generation job summary was modified.

            
      
    
      

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

        The pagination token that's included if more results are available.

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

  
  *   :py:class:`AmplifyUIBuilder.Client.exceptions.InvalidParameterException`

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

  