SageMaker.Paginator.
ListModelMetadata
¶paginator = client.get_paginator('list_model_metadata')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from SageMaker.Client.list_model_metadata()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
SearchExpression={
'Filters': [
{
'Name': 'Domain'|'Framework'|'Task'|'FrameworkVersion',
'Value': 'string'
},
]
},
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
One or more filters that searches for the specified resource or resources in a search. All resource objects that satisfy the expression's condition are included in the search results. Specify the Framework, FrameworkVersion, Domain or Task to filter supported. Filter names and values are case-sensitive.
A list of filter objects.
Part of the search expression. You can specify the name and value (domain, task, framework, framework version, task, and model).
The name of the of the model to filter by.
The value to filter the model metadata.
A dictionary that provides parameters to control pagination.
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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
dict
Response Syntax
{
'ModelMetadataSummaries': [
{
'Domain': 'string',
'Framework': 'string',
'Task': 'string',
'Model': 'string',
'FrameworkVersion': 'string'
},
],
}
Response Structure
(dict) --
ModelMetadataSummaries (list) --
A structure that holds model metadata.
(dict) --
A summary of the model metadata.
Domain (string) --
The machine learning domain of the model.
Framework (string) --
The machine learning framework of the model.
Task (string) --
The machine learning task of the model.
Model (string) --
The name of the model.
FrameworkVersion (string) --
The framework version of the model.