:doc:`SageMaker <../../sagemaker>` / Paginator / ListModelBiasJobDefinitions

***************************
ListModelBiasJobDefinitions
***************************



.. py:class:: SageMaker.Paginator.ListModelBiasJobDefinitions

  ::

    
    paginator = client.get_paginator('list_model_bias_job_definitions')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`SageMaker.Client.list_model_bias_job_definitions`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          EndpointName='string',
          SortBy='Name'|'CreationTime',
          SortOrder='Ascending'|'Descending',
          NameContains='string',
          CreationTimeBefore=datetime(2015, 1, 1),
          CreationTimeAfter=datetime(2015, 1, 1),
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type EndpointName: string
    :param EndpointName: 

      Name of the endpoint to monitor for model bias.

      

    
    :type SortBy: string
    :param SortBy: 

      Whether to sort results by the ``Name`` or ``CreationTime`` field. The default is ``CreationTime``.

      

    
    :type SortOrder: string
    :param SortOrder: 

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

      

    
    :type NameContains: string
    :param NameContains: 

      Filter for model bias jobs whose name contains a specified string.

      

    
    :type CreationTimeBefore: datetime
    :param CreationTimeBefore: 

      A filter that returns only model bias jobs created before a specified time.

      

    
    :type CreationTimeAfter: datetime
    :param CreationTimeAfter: 

      A filter that returns only model bias jobs created after a specified time.

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

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

      

      - *(dict) --* 
        

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

          A JSON array in which each element is a summary for a model bias jobs.

          
          

          - *(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.

              
        
      
    