:doc:`SageMaker <../../sagemaker>` / Client / list_model_quality_job_definitions

**********************************
list_model_quality_job_definitions
**********************************



.. py:method:: SageMaker.Client.list_model_quality_job_definitions(**kwargs)

  

  Gets a list of model quality monitoring job definitions in your account.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListModelQualityJobDefinitions>`_  


  **Request Syntax**
  ::

    response = client.list_model_quality_job_definitions(
        EndpointName='string',
        SortBy='Name'|'CreationTime',
        SortOrder='Ascending'|'Descending',
        NextToken='string',
        MaxResults=123,
        NameContains='string',
        CreationTimeBefore=datetime(2015, 1, 1),
        CreationTimeAfter=datetime(2015, 1, 1)
    )
    
  :type EndpointName: string
  :param EndpointName: 

    A filter that returns only model quality monitoring job definitions that are associated with the specified endpoint.

    

  
  :type SortBy: string
  :param SortBy: 

    The field to sort results by. The default is ``CreationTime``.

    

  
  :type SortOrder: string
  :param SortOrder: 

    Whether to sort the results in ``Ascending`` or ``Descending`` order. The default is ``Descending``.

    

  
  :type NextToken: string
  :param NextToken: 

    If the result of the previous ``ListModelQualityJobDefinitions`` request was truncated, the response includes a ``NextToken``. To retrieve the next set of model quality monitoring job definitions, use the token in the next request.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return in a call to ``ListModelQualityJobDefinitions``.

    

  
  :type NameContains: string
  :param NameContains: 

    A string in the transform job name. This filter returns only model quality monitoring job definitions whose name contains the specified string.

    

  
  :type CreationTimeBefore: datetime
  :param CreationTimeBefore: 

    A filter that returns only model quality monitoring job definitions created before the specified time.

    

  
  :type CreationTimeAfter: datetime
  :param CreationTimeAfter: 

    A filter that returns only model quality monitoring job definitions created after the specified time.

    

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

    
    ::

      {
          'JobDefinitionSummaries': [
              {
                  'MonitoringJobDefinitionName': 'string',
                  'MonitoringJobDefinitionArn': 'string',
                  'CreationTime': datetime(2015, 1, 1),
                  'EndpointName': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **JobDefinitionSummaries** *(list) --* 

        A list of summaries of model quality monitoring job definitions.

        
        

        - *(dict) --* 

          Summary information about a monitoring job.

          
          

          - **MonitoringJobDefinitionName** *(string) --* 

            The name of the monitoring job.

            
          

          - **MonitoringJobDefinitionArn** *(string) --* 

            The Amazon Resource Name (ARN) of the monitoring job.

            
          

          - **CreationTime** *(datetime) --* 

            The time that the monitoring job was created.

            
          

          - **EndpointName** *(string) --* 

            The name of the endpoint that the job monitors.

            
      
    
      

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

        If the response is truncated, Amazon SageMaker AI returns this token. To retrieve the next set of model quality monitoring job definitions, use it in the next request.

        
  