Skip to content

List Collaboration Trained Models

cleanroomsml_list_collaboration_trained_models R Documentation

Returns a list of the trained models in a collaboration

Description

Returns a list of the trained models in a collaboration.

Usage

cleanroomsml_list_collaboration_trained_models(nextToken, maxResults,
  collaborationIdentifier)

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.

collaborationIdentifier

[required] The collaboration ID of the collaboration that contains the trained models you are interested in.

Value

A list with the following syntax:

list(
  nextToken = "string",
  collaborationTrainedModels = list(
    list(
      createTime = as.POSIXct(
        "2015-01-01"
      ),
      updateTime = as.POSIXct(
        "2015-01-01"
      ),
      trainedModelArn = "string",
      name = "string",
      description = "string",
      membershipIdentifier = "string",
      collaborationIdentifier = "string",
      status = "CREATE_PENDING"|"CREATE_IN_PROGRESS"|"CREATE_FAILED"|"ACTIVE"|"DELETE_PENDING"|"DELETE_IN_PROGRESS"|"DELETE_FAILED"|"INACTIVE"|"CANCEL_PENDING"|"CANCEL_IN_PROGRESS"|"CANCEL_FAILED",
      configuredModelAlgorithmAssociationArn = "string",
      creatorAccountId = "string"
    )
  )
)

Request syntax

svc$list_collaboration_trained_models(
  nextToken = "string",
  maxResults = 123,
  collaborationIdentifier = "string"
)