DeadlineCloud / Client / list_monitors
list_monitors#
- DeadlineCloud.Client.list_monitors(**kwargs)#
Gets a list of your monitors in Deadline Cloud.
See also: AWS API Documentation
Request Syntax
response = client.list_monitors( maxResults=123, nextToken='string' )
- Parameters:
maxResults (integer) – The maximum number of results to return. Use this parameter with
NextToken
to get results as a set of sequential pages.nextToken (string) – The token for the next set of results, or
null
to start from the beginning.
- 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
MonitorSummary
objects 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) –
If Deadline Cloud returns
nextToken
, then there are more results available. The value ofnextToken
is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, thennextToken
is set tonull
. Each pagination token expires after 24 hours. If you provide a token that isn’t valid, then you receive an HTTP 400ValidationException
error.
Exceptions
DeadlineCloud.Client.exceptions.AccessDeniedException
DeadlineCloud.Client.exceptions.InternalServerErrorException
DeadlineCloud.Client.exceptions.ThrottlingException
DeadlineCloud.Client.exceptions.ValidationException