List Marketplace Model Endpoints
bedrock_list_marketplace_model_endpoints | R Documentation |
Lists the endpoints for models from Amazon Bedrock Marketplace in your Amazon Web Services account¶
Description¶
Lists the endpoints for models from Amazon Bedrock Marketplace in your Amazon Web Services account.
Usage¶
bedrock_list_marketplace_model_endpoints(maxResults, nextToken,
modelSourceEquals)
Arguments¶
maxResults |
The maximum number of results to return in a single call. If more
results are available, the operation returns a |
nextToken |
The token for the next set of results. You receive this token
from a previous |
modelSourceEquals |
If specified, only endpoints for the given model source identifier are returned. |
Value¶
A list with the following syntax:
list(
marketplaceModelEndpoints = list(
list(
endpointArn = "string",
modelSourceIdentifier = "string",
status = "REGISTERED"|"INCOMPATIBLE_ENDPOINT",
statusMessage = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_marketplace_model_endpoints(
maxResults = 123,
nextToken = "string",
modelSourceEquals = "string"
)