List Data Quality Job Definitions
| sagemaker_list_data_quality_job_definitions | R Documentation |
Lists the data quality job definitions in your account¶
Description¶
Lists the data quality job definitions in your account.
Usage¶
sagemaker_list_data_quality_job_definitions(EndpointName, SortBy,
SortOrder, NextToken, MaxResults, NameContains, CreationTimeBefore,
CreationTimeAfter)
Arguments¶
EndpointNameA filter that lists the data quality job definitions associated with the specified endpoint.
SortByThe field to sort results by. The default is
CreationTime.SortOrderWhether to sort the results in
AscendingorDescendingorder. The default isDescending.NextTokenIf the result of the previous
list_data_quality_job_definitionsrequest was truncated, the response includes aNextToken. To retrieve the next set of transform jobs, use the token in the next request.\>MaxResultsThe maximum number of data quality monitoring job definitions to return in the response.
NameContainsA string in the data quality monitoring job definition name. This filter returns only data quality monitoring job definitions whose name contains the specified string.
CreationTimeBeforeA filter that returns only data quality monitoring job definitions created before the specified time.
CreationTimeAfterA filter that returns only data quality monitoring job definitions created after the specified time.
Value¶
A list with the following syntax:
list(
JobDefinitionSummaries = list(
list(
MonitoringJobDefinitionName = "string",
MonitoringJobDefinitionArn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
EndpointName = "string"
)
),
NextToken = "string"
)