List Inference Recommendations Jobs
| sagemaker_list_inference_recommendations_jobs | R Documentation |
Lists recommendation jobs that satisfy various filters¶
Description¶
Lists recommendation jobs that satisfy various filters.
Usage¶
sagemaker_list_inference_recommendations_jobs(CreationTimeAfter,
CreationTimeBefore, LastModifiedTimeAfter, LastModifiedTimeBefore,
NameContains, StatusEquals, SortBy, SortOrder, NextToken, MaxResults,
ModelNameEquals, ModelPackageVersionArnEquals)
Arguments¶
CreationTimeAfterA filter that returns only jobs created after the specified time (timestamp).
CreationTimeBeforeA filter that returns only jobs created before the specified time (timestamp).
LastModifiedTimeAfterA filter that returns only jobs that were last modified after the specified time (timestamp).
LastModifiedTimeBeforeA filter that returns only jobs that were last modified before the specified time (timestamp).
NameContainsA string in the job name. This filter returns only recommendations whose name contains the specified string.
StatusEqualsA filter that retrieves only inference recommendations jobs with a specific status.
SortByThe parameter by which to sort the results.
SortOrderThe sort order for the results.
NextTokenIf the response to a previous
ListInferenceRecommendationsJobsRequestrequest was truncated, the response includes aNextToken. To retrieve the next set of recommendations, use the token in the next request.MaxResultsThe maximum number of recommendations to return in the response.
ModelNameEqualsA filter that returns only jobs that were created for this model.
ModelPackageVersionArnEqualsA filter that returns only jobs that were created for this versioned model package.
Value¶
A list with the following syntax:
list(
InferenceRecommendationsJobs = list(
list(
JobName = "string",
JobDescription = "string",
JobType = "Default"|"Advanced",
JobArn = "string",
Status = "PENDING"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|"STOPPING"|"STOPPED"|"DELETING"|"DELETED",
CreationTime = as.POSIXct(
"2015-01-01"
),
CompletionTime = as.POSIXct(
"2015-01-01"
),
RoleArn = "string",
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
FailureReason = "string",
ModelName = "string",
SamplePayloadUrl = "string",
ModelPackageVersionArn = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_inference_recommendations_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 = "PENDING"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|"STOPPING"|"STOPPED"|"DELETING"|"DELETED",
SortBy = "Name"|"CreationTime"|"Status",
SortOrder = "Ascending"|"Descending",
NextToken = "string",
MaxResults = 123,
ModelNameEquals = "string",
ModelPackageVersionArnEquals = "string"
)