DeadlineCloud / Paginator / ListMonitors
ListMonitors#
- class DeadlineCloud.Paginator.ListMonitors#
- paginator = client.get_paginator('list_monitors') - paginate(**kwargs)#
- Creates an iterator that will paginate through responses from - DeadlineCloud.Client.list_monitors().- 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- { 'monitors': [ { 'createdAt': datetime(2015, 1, 1), 'createdBy': 'string', 'displayName': 'string', 'identityCenterApplicationArn': 'string', 'identityCenterInstanceArn': 'string', 'monitorId': 'string', 'roleArn': 'string', 'subdomain': 'string', 'updatedAt': datetime(2015, 1, 1), 'updatedBy': 'string', 'url': 'string' }, ], 'NextToken': 'string' } - Response Structure- (dict) – - monitors (list) – - A list of - MonitorSummaryobjects that describe your monitors in the Deadline Cloud.- (dict) – - Provides information about a monitor in Deadline Cloud. - createdAt (datetime) – - The UNIX timestamp of the date and time that the monitor was created. 
- createdBy (string) – - The user name of the person that created the monitor. 
- displayName (string) – - The name of the monitor that displays on the Deadline Cloud console. 
- identityCenterApplicationArn (string) – - The Amazon Resource Name (ARN) that the IAM Identity Center assigned to the monitor when it was created. 
- identityCenterInstanceArn (string) – - The Amazon Resource Name (ARN) of the IAM Identity Center instance responsible for authenticating monitor users. 
- monitorId (string) – - The unique identifier for the monitor. 
- roleArn (string) – - The Amazon Resource Name (ARN) of the IAM role for the monitor. Users of the monitor use this role to access Deadline Cloud resources. 
- subdomain (string) – - The subdomain used for the monitor URL. The full URL of the monitor is subdomain.Region.deadlinecloud.amazonaws.com. 
- updatedAt (datetime) – - The UNIX timestamp of the date and time that the monitor was last updated. 
- updatedBy (string) – - The user name of the person that last updated the monitor. 
- url (string) – - The complete URL of the monitor. The full URL of the monitor is subdomain.Region.deadlinecloud.amazonaws.com. 
 
 
- NextToken (string) – - A token to resume pagination.