Module Values.UpdateMonitorRequestSource

Modifies the settings for a Deadline Cloud monitor. You can modify one or all of the settings when you call UpdateMonitor.

Sourcetype nonrec t = {
  1. monitorId : MonitorId.t;
    (*

    The unique identifier of the monitor to update.

    *)
  2. subdomain : Subdomain.t option;
    (*

    The new value of the subdomain to use when forming the monitor URL.

    *)
  3. displayName : ResourceName.t option;
    (*

    The new value to use for the monitor's display name. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  4. roleArn : IamRoleArn.t option;
    (*

    The Amazon Resource Name of the new IAM role to use with the monitor.

    *)
}
Sourceval context_ : string
Sourceval make : ?subdomain:??? -> ?displayName:??? -> ?roleArn:??? -> monitorId:MonitorId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MonitorId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t