List Auto Ml Jobs
sagemaker_list_auto_ml_jobs | R Documentation |
Request a list of jobs¶
Description¶
Request a list of jobs.
Usage¶
sagemaker_list_auto_ml_jobs(CreationTimeAfter, CreationTimeBefore,
LastModifiedTimeAfter, LastModifiedTimeBefore, NameContains,
StatusEquals, SortOrder, SortBy, MaxResults, NextToken)
Arguments¶
CreationTimeAfter
Request a list of jobs, using a filter for time.
CreationTimeBefore
Request a list of jobs, using a filter for time.
LastModifiedTimeAfter
Request a list of jobs, using a filter for time.
LastModifiedTimeBefore
Request a list of jobs, using a filter for time.
NameContains
Request a list of jobs, using a search filter for name.
StatusEquals
Request a list of jobs, using a filter for status.
SortOrder
The sort order for the results. The default is
Descending
.SortBy
The parameter by which to sort the results. The default is
Name
.MaxResults
Request a list of jobs up to a specified limit.
NextToken
If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.
Value¶
A list with the following syntax:
list(
AutoMLJobSummaries = list(
list(
AutoMLJobName = "string",
AutoMLJobArn = "string",
AutoMLJobStatus = "Completed"|"InProgress"|"Failed"|"Stopped"|"Stopping",
AutoMLJobSecondaryStatus = "Starting"|"MaxCandidatesReached"|"Failed"|"Stopped"|"MaxAutoMLJobRuntimeReached"|"Stopping"|"CandidateDefinitionsGenerated"|"Completed"|"ExplainabilityError"|"DeployingModel"|"ModelDeploymentError"|"GeneratingModelInsightsReport"|"ModelInsightsError"|"AnalyzingData"|"FeatureEngineering"|"ModelTuning"|"GeneratingExplainabilityReport"|"TrainingModels"|"PreTraining",
CreationTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
FailureReason = "string",
PartialFailureReasons = list(
list(
PartialFailureMessage = "string"
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_auto_ml_jobs(
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeAfter = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeBefore = as.POSIXct(
"2015-01-01"
),
NameContains = "string",
StatusEquals = "Completed"|"InProgress"|"Failed"|"Stopped"|"Stopping",
SortOrder = "Ascending"|"Descending",
SortBy = "Name"|"CreationTime"|"Status",
MaxResults = 123,
NextToken = "string"
)