Skip to content

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, trainedModelVersionIdentifier)

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.

trainedModelVersionIdentifier

The version identifier of the trained model to filter inference jobs by. When specified, only inference jobs that used this specific version of the trained model are returned.

Value

A list with the following syntax:

list(
  nextToken = "string",
  trainedModelInferenceJobs = list(
    list(
      trainedModelInferenceJobArn = "string",
      configuredModelAlgorithmAssociationArn = "string",
      membershipIdentifier = "string",
      trainedModelArn = "string",
      trainedModelVersionIdentifier = "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",
      mlModelInferencePayerAccountId = "string",
      createTime = as.POSIXct(
        "2015-01-01"
      ),
      updateTime = as.POSIXct(
        "2015-01-01"
      )
    )
  )
)

Request syntax

svc$list_trained_model_inference_jobs(
  nextToken = "string",
  maxResults = 123,
  membershipIdentifier = "string",
  trainedModelArn = "string",
  trainedModelVersionIdentifier = "string"
)