List Trained Models
cleanroomsml_list_trained_models | R Documentation |
Returns a list of trained models¶
Description¶
Returns a list of trained models.
Usage¶
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 ID of the member that created the trained models you are interested in.
Value¶
A list with the following syntax:
list(
nextToken = "string",
trainedModels = 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"
)
)
)