:doc:`AuditManager <../../auditmanager>` / Client / list_assessment_frameworks

**************************
list_assessment_frameworks
**************************



.. py:method:: AuditManager.Client.list_assessment_frameworks(**kwargs)

  

  Returns a list of the frameworks that are available in the Audit Manager framework library.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/auditmanager-2017-07-25/ListAssessmentFrameworks>`_  


  **Request Syntax**
  ::

    response = client.list_assessment_frameworks(
        frameworkType='Standard'|'Custom',
        nextToken='string',
        maxResults=123
    )
    
  :type frameworkType: string
  :param frameworkType: **[REQUIRED]** 

    The type of framework, such as a standard framework or a custom framework.

    

  
  :type nextToken: string
  :param nextToken: 

    The pagination token that's used to fetch the next set of results.

    

  
  :type maxResults: integer
  :param maxResults: 

    Represents the maximum number of results on a page or for an API request call.

    

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

    
    ::

      {
          'frameworkMetadataList': [
              {
                  'arn': 'string',
                  'id': 'string',
                  'type': 'Standard'|'Custom',
                  'name': 'string',
                  'description': 'string',
                  'logo': 'string',
                  'complianceType': 'string',
                  'controlsCount': 123,
                  'controlSetsCount': 123,
                  'createdAt': datetime(2015, 1, 1),
                  'lastUpdatedAt': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **frameworkMetadataList** *(list) --* 

        A list of metadata that the ``ListAssessmentFrameworks`` API returns for each framework.

        
        

        - *(dict) --* 

          The metadata that's associated with a standard framework or a custom framework.

          
          

          - **arn** *(string) --* 

            The Amazon Resource Name (ARN) of the framework.

            
          

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

            The unique identifier for the framework.

            
          

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

            The framework type, such as a standard framework or a custom framework.

            
          

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

            The name of the framework.

            
          

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

            The description of the framework.

            
          

          - **logo** *(string) --* 

            The logo that's associated with the framework.

            
          

          - **complianceType** *(string) --* 

            The compliance type that the new custom framework supports, such as CIS or HIPAA.

            
          

          - **controlsCount** *(integer) --* 

            The number of controls that are associated with the framework.

            
          

          - **controlSetsCount** *(integer) --* 

            The number of control sets that are associated with the framework.

            
          

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

            The time when the framework was created.

            
          

          - **lastUpdatedAt** *(datetime) --* 

            The time when the framework was most recently updated.

            
      
    
      

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

        The pagination token that's used to fetch the next set of results.

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

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

  
  *   :py:class:`AuditManager.Client.exceptions.InternalServerException`

  