List Trained Model Inference Jobs
cleanroomsml_list_trained_model_inference_jobs | R Documentation |
Returns a list of trained model inference jobs that match the request parameters¶
Description¶
Returns a list of trained model inference jobs that match the request parameters.
Usage¶
cleanroomsml_list_trained_model_inference_jobs(nextToken, maxResults,
membershipIdentifier, trainedModelArn)
Arguments¶
nextToken
The token value retrieved from a previous call to access the next page of results.
maxResults
The maximum size of the results that is returned per call.
membershipIdentifier
[required] The membership
trainedModelArn
The Amazon Resource Name (ARN) of a trained model that was used to create the trained model inference jobs that you are interested in.
Value¶
A list with the following syntax:
list(
nextToken = "string",
trainedModelInferenceJobs = list(
list(
trainedModelInferenceJobArn = "string",
configuredModelAlgorithmAssociationArn = "string",
membershipIdentifier = "string",
trainedModelArn = "string",
collaborationIdentifier = "string",
status = "CREATE_PENDING"|"CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|"CANCEL_PENDING"|"CANCEL_IN_PROGRESS"|"CANCEL_FAILED"|"INACTIVE",
outputConfiguration = list(
accept = "string",
members = list(
list(
accountId = "string"
)
)
),
name = "string",
description = "string",
metricsStatus = "PUBLISH_SUCCEEDED"|"PUBLISH_FAILED",
metricsStatusDetails = "string",
logsStatus = "PUBLISH_SUCCEEDED"|"PUBLISH_FAILED",
logsStatusDetails = "string",
createTime = as.POSIXct(
"2015-01-01"
),
updateTime = as.POSIXct(
"2015-01-01"
)
)
)
)