CleanRoomsML / Paginator / ListConfiguredModelAlgorithms
ListConfiguredModelAlgorithms#
- class CleanRoomsML.Paginator.ListConfiguredModelAlgorithms#
- paginator = client.get_paginator('list_configured_model_algorithms') - paginate(**kwargs)#
- Creates an iterator that will paginate through responses from - CleanRoomsML.Client.list_configured_model_algorithms().- See also: AWS API Documentation - Request Syntax- response_iterator = paginator.paginate( PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) - Parameters:
- 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 - NextTokenwill 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 - NextTokenfrom a previous response.
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'configuredModelAlgorithms': [ { 'createTime': datetime(2015, 1, 1), 'updateTime': datetime(2015, 1, 1), 'configuredModelAlgorithmArn': 'string', 'name': 'string', 'description': 'string' }, ], 'NextToken': 'string' } - Response Structure- (dict) – - configuredModelAlgorithms (list) – - The list of configured model algorithms. - (dict) – - Provides summary information about a configured model algorithm. - createTime (datetime) – - The time at which the configured model algorithm was created. 
- updateTime (datetime) – - The most recent time at which the configured model algorithm was updated. 
- configuredModelAlgorithmArn (string) – - The Amazon Resource Name (ARN) of the configured model algorithm. 
- name (string) – - The name of the configured model algorithm. 
- description (string) – - The description of the configured model algorithm. 
 
 
- NextToken (string) – - A token to resume pagination.