List Imported Models
| bedrock_list_imported_models | R Documentation |
Returns a list of models you've imported¶
Description¶
Returns a list of models you've imported. You can filter the results to return based on one or more criteria. For more information, see Import a customized model in the Amazon Bedrock User Guide.
Usage¶
bedrock_list_imported_models(creationTimeBefore, creationTimeAfter,
nameContains, maxResults, nextToken, sortBy, sortOrder)
Arguments¶
creationTimeBeforeReturn imported models that created before the specified time.
creationTimeAfterReturn imported models that were created after the specified time.
nameContainsReturn imported models only if the model name contains these characters.
maxResultsThe maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the
nextTokenfield when making another request to return the next batch of results.nextTokenIf the total number of results is greater than the
maxResultsvalue provided in the request, enter the token returned in thenextTokenfield in the response in this field to return the next batch of results.sortByThe field to sort by in the returned list of imported models.
sortOrderSpecifies whetehr to sort the results in ascending or descending order.
Value¶
A list with the following syntax:
list(
nextToken = "string",
modelSummaries = list(
list(
modelArn = "string",
modelName = "string",
creationTime = as.POSIXct(
"2015-01-01"
)
)
)
)