Bedrock / Paginator / ListMarketplaceModelEndpoints
ListMarketplaceModelEndpoints#
- class Bedrock.Paginator.ListMarketplaceModelEndpoints#
paginator = client.get_paginator('list_marketplace_model_endpoints')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
Bedrock.Client.list_marketplace_model_endpoints()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( modelSourceEquals='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
modelSourceEquals (string) – If specified, only endpoints for the given model source identifier are returned.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextToken
will be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'marketplaceModelEndpoints': [ { 'endpointArn': 'string', 'modelSourceIdentifier': 'string', 'status': 'REGISTERED'|'INCOMPATIBLE_ENDPOINT', 'statusMessage': 'string', 'createdAt': datetime(2015, 1, 1), 'updatedAt': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
marketplaceModelEndpoints (list) –
An array of endpoint summaries.
(dict) –
Provides a summary of an endpoint for a model from Amazon Bedrock Marketplace.
endpointArn (string) –
The Amazon Resource Name (ARN) of the endpoint.
modelSourceIdentifier (string) –
The ARN of the model from Amazon Bedrock Marketplace that is deployed on this endpoint.
status (string) –
The overall status of the endpoint in Amazon Bedrock Marketplace.
statusMessage (string) –
Additional information about the overall status, if available.
createdAt (datetime) –
The timestamp when the endpoint was created.
updatedAt (datetime) –
The timestamp when the endpoint was last updated.
NextToken (string) –
A token to resume pagination.