Bedrock / Client / list_marketplace_model_endpoints

list_marketplace_model_endpoints#

Bedrock.Client.list_marketplace_model_endpoints(**kwargs)#

Lists the endpoints for models from Amazon Bedrock Marketplace in your Amazon Web Services account.

See also: AWS API Documentation

Request Syntax

response = client.list_marketplace_model_endpoints(
    maxResults=123,
    nextToken='string',
    modelSourceEquals='string'
)
Parameters:
  • maxResults (integer) – The maximum number of results to return in a single call. If more results are available, the operation returns a NextToken value.

  • nextToken (string) – The token for the next set of results. You receive this token from a previous ListMarketplaceModelEndpoints call.

  • modelSourceEquals (string) – If specified, only endpoints for the given model source identifier are returned.

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) –

      The token for the next set of results. Use this token to get the next set of results.

Exceptions