:doc:`LicenseManager <../../license-manager>` / Client / list_license_manager_report_generators

**************************************
list_license_manager_report_generators
**************************************



.. py:method:: LicenseManager.Client.list_license_manager_report_generators(**kwargs)

  

  Lists the report generators for your account.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ListLicenseManagerReportGenerators>`_  


  **Request Syntax**
  ::

    response = client.list_license_manager_report_generators(
        Filters=[
            {
                'Name': 'string',
                'Values': [
                    'string',
                ]
            },
        ],
        NextToken='string',
        MaxResults=123
    )
    
  :type Filters: list
  :param Filters: 

    Filters to scope the results. The following filters are supported:

     

    
    * ``LicenseConfigurationArn``
    

    

  
    - *(dict) --* 

      A filter name and value pair that is used to return more specific results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as tags, attributes, or IDs.

      

    
      - **Name** *(string) --* 

        Name of the filter. Filter names are case-sensitive.

        

      
      - **Values** *(list) --* 

        The value of the filter, which is case-sensitive. You can only specify one value for the filter.

        

      
        - *(string) --* 

        
    
    

  :type NextToken: string
  :param NextToken: 

    Token for the next set of results.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    Maximum number of results to return in a single call.

    

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

    
    ::

      {
          'ReportGenerators': [
              {
                  'ReportGeneratorName': 'string',
                  'ReportType': [
                      'LicenseConfigurationSummaryReport'|'LicenseConfigurationUsageReport'|'LicenseAssetGroupUsageReport',
                  ],
                  'ReportContext': {
                      'licenseConfigurationArns': [
                          'string',
                      ],
                      'licenseAssetGroupArns': [
                          'string',
                      ],
                      'reportStartDate': datetime(2015, 1, 1),
                      'reportEndDate': datetime(2015, 1, 1)
                  },
                  'ReportFrequency': {
                      'value': 123,
                      'period': 'DAY'|'WEEK'|'MONTH'|'ONE_TIME'
                  },
                  'LicenseManagerReportGeneratorArn': 'string',
                  'LastRunStatus': 'string',
                  'LastRunFailureReason': 'string',
                  'LastReportGenerationTime': 'string',
                  'ReportCreatorAccount': 'string',
                  'Description': 'string',
                  'S3Location': {
                      'bucket': 'string',
                      'keyPrefix': 'string'
                  },
                  'CreateTime': 'string',
                  'Tags': [
                      {
                          'Key': 'string',
                          'Value': 'string'
                      },
                  ]
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ReportGenerators** *(list) --* 

        A report generator that creates periodic reports about your license configurations.

        
        

        - *(dict) --* 

          Describe the details of a report generator.

          
          

          - **ReportGeneratorName** *(string) --* 

            Name of the report generator.

            
          

          - **ReportType** *(list) --* 

            Type of reports that are generated.

            
            

            - *(string) --* 
        
          

          - **ReportContext** *(dict) --* 

            License configuration type for this generator.

            
            

            - **licenseConfigurationArns** *(list) --* 

              Amazon Resource Name (ARN) of the license configuration that this generator reports on.

              
              

              - *(string) --* 
          
            

            - **licenseAssetGroupArns** *(list) --* 

              Amazon Resource Names (ARNs) of the license asset groups to include in the report.

              
              

              - *(string) --* 
          
            

            - **reportStartDate** *(datetime) --* 

              Start date for the report data collection period.

              
            

            - **reportEndDate** *(datetime) --* 

              End date for the report data collection period.

              
        
          

          - **ReportFrequency** *(dict) --* 

            Details about how frequently reports are generated.

            
            

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

              Number of times within the frequency period that a report is generated. The only supported value is ``1``.

              
            

            - **period** *(string) --* 

              Time period between each report. The period can be daily, weekly, or monthly.

              
        
          

          - **LicenseManagerReportGeneratorArn** *(string) --* 

            Amazon Resource Name (ARN) of the report generator.

            
          

          - **LastRunStatus** *(string) --* 

            Status of the last report generation attempt.

            
          

          - **LastRunFailureReason** *(string) --* 

            Failure message for the last report generation attempt.

            
          

          - **LastReportGenerationTime** *(string) --* 

            Time the last report was generated at.

            
          

          - **ReportCreatorAccount** *(string) --* 

            The Amazon Web Services account ID used to create the report generator.

            
          

          - **Description** *(string) --* 

            Description of the report generator.

            
          

          - **S3Location** *(dict) --* 

            Details of the S3 bucket that report generator reports are published to.

            
            

            - **bucket** *(string) --* 

              Name of the S3 bucket reports are published to.

              
            

            - **keyPrefix** *(string) --* 

              Prefix of the S3 bucket reports are published to.

              
        
          

          - **CreateTime** *(string) --* 

            Time the report was created.

            
          

          - **Tags** *(list) --* 

            Tags associated with the report generator.

            
            

            - *(dict) --* 

              Details about the tags for a resource. For more information about tagging support in License Manager, see the `TagResource <https://docs.aws.amazon.com/license-manager/latest/APIReference/API_TagResource.html>`__ operation.

              
              

              - **Key** *(string) --* 

                The tag key.

                
              

              - **Value** *(string) --* 

                The tag value.

                
          
        
      
    
      

      - **NextToken** *(string) --* 

        Token for the next set of results.

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

  
  *   :py:class:`LicenseManager.Client.exceptions.InvalidParameterValueException`

  
  *   :py:class:`LicenseManager.Client.exceptions.ResourceLimitExceededException`

  
  *   :py:class:`LicenseManager.Client.exceptions.ServerInternalException`

  
  *   :py:class:`LicenseManager.Client.exceptions.AuthorizationException`

  
  *   :py:class:`LicenseManager.Client.exceptions.RateLimitExceededException`

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

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

  