CleanRoomsML / Paginator / ListTrainedModelInferenceJobs
ListTrainedModelInferenceJobs#
- class CleanRoomsML.Paginator.ListTrainedModelInferenceJobs#
paginator = client.get_paginator('list_trained_model_inference_jobs')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
CleanRoomsML.Client.list_trained_model_inference_jobs()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( membershipIdentifier='string', trainedModelArn='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
membershipIdentifier (string) –
[REQUIRED]
The membership
trainedModelArn (string) – The Amazon Resource Name (ARN) of a trained model that was used to create the trained model inference jobs that you are interested in.
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
{ 'trainedModelInferenceJobs': [ { 'trainedModelInferenceJobArn': 'string', 'configuredModelAlgorithmAssociationArn': 'string', 'membershipIdentifier': 'string', 'trainedModelArn': 'string', 'collaborationIdentifier': 'string', 'status': 'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'ACTIVE'|'CANCEL_PENDING'|'CANCEL_IN_PROGRESS'|'CANCEL_FAILED'|'INACTIVE', 'outputConfiguration': { 'accept': 'string', 'members': [ { 'accountId': 'string' }, ] }, 'name': 'string', 'description': 'string', 'metricsStatus': 'PUBLISH_SUCCEEDED'|'PUBLISH_FAILED', 'metricsStatusDetails': 'string', 'logsStatus': 'PUBLISH_SUCCEEDED'|'PUBLISH_FAILED', 'logsStatusDetails': 'string', 'createTime': datetime(2015, 1, 1), 'updateTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
trainedModelInferenceJobs (list) –
Returns the requested trained model inference jobs.
(dict) –
Provides information about the trained model inference job.
trainedModelInferenceJobArn (string) –
The Amazon Resource Name (ARN) of the trained model inference job.
configuredModelAlgorithmAssociationArn (string) –
The Amazon Resource Name (ARN) of the configured model algorithm association that is used for the trained model inference job.
membershipIdentifier (string) –
The membership ID of the membership that contains the trained model inference job.
trainedModelArn (string) –
The Amazon Resource Name (ARN) of the trained model that is used for the trained model inference job.
collaborationIdentifier (string) –
The collaboration ID of the collaboration that contains the trained model inference job.
status (string) –
The status of the trained model inference job.
outputConfiguration (dict) –
The output configuration information of the trained model job.
accept (string) –
The MIME type used to specify the output data.
members (list) –
Defines the members that can receive inference output.
(dict) –
Defines who will receive inference results.
accountId (string) –
The account ID of the member that can receive inference results.
name (string) –
The name of the trained model inference job.
description (string) –
The description of the trained model inference job.
metricsStatus (string) –
The metric status of the trained model inference job.
metricsStatusDetails (string) –
Details about the metrics status for the trained model inference job.
logsStatus (string) –
The log status of the trained model inference job.
logsStatusDetails (string) –
Details about the log status for the trained model inference job.
createTime (datetime) –
The time at which the trained model inference job was created.
updateTime (datetime) –
The most recent time at which the trained model inference job was updated.
NextToken (string) –
A token to resume pagination.