SageMaker / Client / list_model_bias_job_definitions

list_model_bias_job_definitions#

SageMaker.Client.list_model_bias_job_definitions(**kwargs)#

Lists model bias jobs definitions that satisfy various filters.

See also: AWS API Documentation

Request Syntax

response = client.list_model_bias_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)
)
Parameters:
  • EndpointName (string) – Name of the endpoint to monitor for model bias.

  • SortBy (string) – Whether to sort results by the Name or CreationTime field. The default is CreationTime.

  • SortOrder (string) – Whether to sort the results in Ascending or Descending order. The default is Descending.

  • NextToken (string) – The token returned if the response is truncated. To retrieve the next set of job executions, use it in the next request.

  • MaxResults (integer) – The maximum number of model bias jobs to return in the response. The default value is 10.

  • NameContains (string) – Filter for model bias jobs whose name contains a specified string.

  • CreationTimeBefore (datetime) – A filter that returns only model bias jobs created before a specified time.

  • CreationTimeAfter (datetime) – A filter that returns only model bias jobs created after a specified time.

Return type:

dict

Returns:

Response Syntax

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

    • NextToken (string) –

      The token returned if the response is truncated. To retrieve the next set of job executions, use it in the next request.