Lists custom model deployments in your account
Source:R/bedrock_operations.R
bedrock_list_custom_model_deployments.RdLists custom model deployments in your account. You can filter the results by creation time, name, status, and associated model. Use this operation to manage and monitor your custom model deployments.
See https://www.paws-r-sdk.com/docs/bedrock_list_custom_model_deployments/ for full documentation.
Usage
bedrock_list_custom_model_deployments(
createdBefore = NULL,
createdAfter = NULL,
nameContains = NULL,
maxResults = NULL,
nextToken = NULL,
sortBy = NULL,
sortOrder = NULL,
statusEquals = NULL,
modelArnEquals = NULL
)Arguments
- createdBefore
Filters deployments created before the specified date and time.
- createdAfter
Filters deployments created after the specified date and time.
- nameContains
Filters deployments whose names contain the specified string.
- maxResults
The maximum number of results to return in a single call.
- nextToken
The token for the next set of results. Use this token to retrieve additional results when the response is truncated.
- sortBy
The field to sort the results by. The only supported value is
CreationTime.- sortOrder
The sort order for the results. Valid values are
AscendingandDescending. Default isDescending.- statusEquals
Filters deployments by status. Valid values are
CREATING,ACTIVE, andFAILED.- modelArnEquals
Filters deployments by the Amazon Resource Name (ARN) of the associated custom model.