SageMaker.Paginator.
ListModelCardExportJobs
¶paginator = client.get_paginator('list_model_card_export_jobs')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from SageMaker.Client.list_model_card_export_jobs()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
ModelCardName='string',
ModelCardVersion=123,
CreationTimeAfter=datetime(2015, 1, 1),
CreationTimeBefore=datetime(2015, 1, 1),
ModelCardExportJobNameContains='string',
StatusEquals='InProgress'|'Completed'|'Failed',
SortBy='Name'|'CreationTime'|'Status',
SortOrder='Ascending'|'Descending',
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
[REQUIRED]
List export jobs for the model card with the specified name.
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
{
'ModelCardExportJobSummaries': [
{
'ModelCardExportJobName': 'string',
'ModelCardExportJobArn': 'string',
'Status': 'InProgress'|'Completed'|'Failed',
'ModelCardName': 'string',
'ModelCardVersion': 123,
'CreatedAt': datetime(2015, 1, 1),
'LastModifiedAt': datetime(2015, 1, 1)
},
],
}
Response Structure
(dict) --
ModelCardExportJobSummaries (list) --
The summaries of the listed model card export jobs.
(dict) --
The summary of the Amazon SageMaker Model Card export job.
ModelCardExportJobName (string) --
The name of the model card export job.
ModelCardExportJobArn (string) --
The Amazon Resource Name (ARN) of the model card export job.
Status (string) --
The completion status of the model card export job.
ModelCardName (string) --
The name of the model card that the export job exports.
ModelCardVersion (integer) --
The version of the model card that the export job exports.
CreatedAt (datetime) --
The date and time that the model card export job was created.
LastModifiedAt (datetime) --
The date and time that the model card export job was last modified..