Select your cookie preferences

We use cookies and similar tools to enhance your experience, provide our services, deliver relevant advertising, and make improvements. Approved third parties also use these tools to help us deliver advertising and provide certain site features.

ListModelQualityJobDefinitions

class SageMaker.Paginator.ListModelQualityJobDefinitions
paginator = client.get_paginator('list_model_quality_job_definitions')
paginate(**kwargs)

Creates an iterator that will paginate through responses from SageMaker.Client.list_model_quality_job_definitions().

See also: AWS API Documentation

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'
    }
)
Parameters
  • EndpointName (string) -- A filter that returns only model quality monitoring job definitions that are associated with the specified endpoint.
  • SortBy (string) -- The field to sort results by. The default is CreationTime .
  • SortOrder (string) -- The sort order for results. The default is Descending .
  • NameContains (string) -- A string in the transform job name. This filter returns only model quality monitoring job definitions whose name contains the specified string.
  • CreationTimeBefore (datetime) -- A filter that returns only model quality monitoring job definitions created before the specified time.
  • CreationTimeAfter (datetime) -- A filter that returns only model quality monitoring job definitions created after the specified time.
  • PaginationConfig (dict) --

    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.

Return type

dict

Returns

Response Syntax

{
    'JobDefinitionSummaries': [
        {
            'MonitoringJobDefinitionName': 'string',
            'MonitoringJobDefinitionArn': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'EndpointName': '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.