List Model Versions
| lookoutequipment_list_model_versions | R Documentation |
Generates a list of all model versions for a given model, including the model version, model version ARN, and status¶
Description¶
Generates a list of all model versions for a given model, including the
model version, model version ARN, and status. To list a subset of
versions, use the MaxModelVersion and MinModelVersion fields.
Usage¶
lookoutequipment_list_model_versions(ModelName, NextToken, MaxResults,
Status, SourceType, CreatedAtEndTime, CreatedAtStartTime,
MaxModelVersion, MinModelVersion)
Arguments¶
ModelName[required] Then name of the machine learning model for which the model versions are to be listed.
NextTokenIf the total number of results exceeds the limit that the response can display, the response returns an opaque pagination token indicating where to continue the listing of machine learning model versions. Use this token in the
NextTokenfield in the request to list the next page of results.MaxResultsSpecifies the maximum number of machine learning model versions to list.
StatusFilter the results based on the current status of the model version.
SourceTypeFilter the results based on the way the model version was generated.
CreatedAtEndTimeFilter results to return all the model versions created before this time.
CreatedAtStartTimeFilter results to return all the model versions created after this time.
MaxModelVersionSpecifies the highest version of the model to return in the list.
MinModelVersionSpecifies the lowest version of the model to return in the list.
Value¶
A list with the following syntax:
list(
NextToken = "string",
ModelVersionSummaries = list(
list(
ModelName = "string",
ModelArn = "string",
ModelVersion = 123,
ModelVersionArn = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
Status = "IN_PROGRESS"|"SUCCESS"|"FAILED"|"IMPORT_IN_PROGRESS"|"CANCELED",
SourceType = "TRAINING"|"RETRAINING"|"IMPORT",
ModelQuality = "QUALITY_THRESHOLD_MET"|"CANNOT_DETERMINE_QUALITY"|"POOR_QUALITY_DETECTED"
)
)
)
Request syntax¶
svc$list_model_versions(
ModelName = "string",
NextToken = "string",
MaxResults = 123,
Status = "IN_PROGRESS"|"SUCCESS"|"FAILED"|"IMPORT_IN_PROGRESS"|"CANCELED",
SourceType = "TRAINING"|"RETRAINING"|"IMPORT",
CreatedAtEndTime = as.POSIXct(
"2015-01-01"
),
CreatedAtStartTime = as.POSIXct(
"2015-01-01"
),
MaxModelVersion = 123,
MinModelVersion = 123
)