:doc:`CleanRoomsML <../../cleanroomsml>` / Client / list_audience_export_jobs

*************************
list_audience_export_jobs
*************************



.. py:method:: CleanRoomsML.Client.list_audience_export_jobs(**kwargs)

  

  Returns a list of the audience export jobs.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/cleanroomsml-2023-09-06/ListAudienceExportJobs>`_  


  **Request Syntax**
  ::

    response = client.list_audience_export_jobs(
        nextToken='string',
        maxResults=123,
        audienceGenerationJobArn='string'
    )
    
  :type nextToken: string
  :param nextToken: 

    The token value retrieved from a previous call to access the next page of results.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum size of the results that is returned per call.

    

  
  :type audienceGenerationJobArn: string
  :param audienceGenerationJobArn: 

    The Amazon Resource Name (ARN) of the audience generation job that you are interested in.

    

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

    
    ::

      {
          'nextToken': 'string',
          'audienceExportJobs': [
              {
                  'createTime': datetime(2015, 1, 1),
                  'updateTime': datetime(2015, 1, 1),
                  'name': 'string',
                  'audienceGenerationJobArn': 'string',
                  'audienceSize': {
                      'type': 'ABSOLUTE'|'PERCENTAGE',
                      'value': 123
                  },
                  'description': 'string',
                  'status': 'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'ACTIVE',
                  'statusDetails': {
                      'statusCode': 'string',
                      'message': 'string'
                  },
                  'outputLocation': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The token value used to access the next page of results.

        
      

      - **audienceExportJobs** *(list) --* 

        The audience export jobs that match the request.

        
        

        - *(dict) --* 

          Provides information about the audience export job.

          
          

          - **createTime** *(datetime) --* 

            The time at which the audience export job was created.

            
          

          - **updateTime** *(datetime) --* 

            The most recent time at which the audience export job was updated.

            
          

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

            The name of the audience export job.

            
          

          - **audienceGenerationJobArn** *(string) --* 

            The Amazon Resource Name (ARN) of the audience generation job that was exported.

            
          

          - **audienceSize** *(dict) --* 

            The size of the generated audience. Must match one of the sizes in the configured audience model.

            
            

            - **type** *(string) --* 

              Whether the audience size is defined in absolute terms or as a percentage. You can use the ``ABSOLUTE``  AudienceSize to configure out audience sizes using the count of identifiers in the output. You can use the ``Percentage``  AudienceSize to configure sizes in the range 1-100 percent.

              
            

            - **value** *(integer) --* 

              Specify an audience size value.

              
        
          

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

            The description of the audience export job.

            
          

          - **status** *(string) --* 

            The status of the audience export job.

            
          

          - **statusDetails** *(dict) --* 

            Details about the status of a resource.

            
            

            - **statusCode** *(string) --* 

              The status code that was returned. The status code is intended for programmatic error handling. Clean Rooms ML will not change the status code for existing error conditions.

              
            

            - **message** *(string) --* 

              The error message that was returned. The message is intended for human consumption and can change at any time. Use the ``statusCode`` for programmatic error handling.

              
        
          

          - **outputLocation** *(string) --* 

            The Amazon S3 bucket where the audience export is stored.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`CleanRoomsML.Client.exceptions.ValidationException`

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

  