SageMaker / Client / list_data_quality_job_definitions
list_data_quality_job_definitions#
- SageMaker.Client.list_data_quality_job_definitions(**kwargs)#
Lists the data quality job definitions in your account.
See also: AWS API Documentation
Request Syntax
response = client.list_data_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) )
- Parameters:
EndpointName (string) – A filter that lists the data quality job definitions associated with the specified endpoint.
SortBy (string) – The field to sort results by. The default is
CreationTime
.SortOrder (string) – Whether to sort the results in
Ascending
orDescending
order. The default isDescending
.NextToken (string) – If the result of the previous
ListDataQualityJobDefinitions
request was truncated, the response includes aNextToken
. To retrieve the next set of transform jobs, use the token in the next request.>MaxResults (integer) – The maximum number of data quality monitoring job definitions to return in the response.
NameContains (string) – A string in the data quality monitoring job definition name. This filter returns only data quality monitoring job definitions whose name contains the specified string.
CreationTimeBefore (datetime) – A filter that returns only data quality monitoring job definitions created before the specified time.
CreationTimeAfter (datetime) – A filter that returns only data quality monitoring job definitions created after the 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 list of data 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 result of the previous
ListDataQualityJobDefinitions
request was truncated, the response includes aNextToken
. To retrieve the next set of data quality monitoring job definitions, use the token in the next request.