AWSDeadlineCloud

2026/04/13 - AWSDeadlineCloud - 2 new api methods

Changes  Adds GetMonitorSettings and UpdateMonitorSettings APIs to Deadline Cloud. Enables reading and writing monitor settings as key-value pairs (up to 64 keys per monitor). UpdateMonitorSettings supports upsert and delete (via empty value) semantics and is idempotent.

GetMonitorSettings (new) Link ¶

Gets the settings for a Deadline Cloud monitor.

See also: AWS API Documentation

Request Syntax

client.get_monitor_settings(
    monitorId='string'
)
type monitorId:

string

param monitorId:

[REQUIRED]

The unique identifier of the monitor. This ID is returned by the CreateMonitor operation, and is included in the response to the GetMonitor operation.

rtype:

dict

returns:

Response Syntax

{
    'settings': {
        'string': 'string'
    }
}

Response Structure

  • (dict) --

    • settings (dict) --

      Monitor settings as key-value pairs.

      • (string) --

        • (string) --

UpdateMonitorSettings (new) Link ¶

Updates the settings for a Deadline Cloud monitor. Keys present in the request are upserted; keys absent are left unchanged. Send an empty string value to delete a key.

See also: AWS API Documentation

Request Syntax

client.update_monitor_settings(
    monitorId='string',
    settings={
        'string': 'string'
    }
)
type monitorId:

string

param monitorId:

[REQUIRED]

The unique identifier of the monitor to update settings for.

type settings:

dict

param settings:

[REQUIRED]

Monitor settings as key-value pairs. Keys present in the request are upserted; keys absent are left unchanged. Send an empty string value to delete a key.

  • (string) --

    • (string) --

rtype:

dict

returns:

Response Syntax

{}

Response Structure

  • (dict) --