Module Values.CreateMonitorRequestSource

Creates an Amazon Web Services Deadline Cloud monitor that you can use to view your farms, queues, and fleets. After you submit a job, you can track the progress of the tasks and steps that make up the job, and then download the job's results.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    The unique token which the server uses to recognize retries of the same request.

    *)
  2. displayName : ResourceName.t;
    (*

    The name that you give the monitor that is displayed in the Deadline Cloud console. 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.

    *)
  3. identityCenterInstanceArn : IdentityCenterInstanceArn.t;
    (*

    The Amazon Resource Name of the IAM Identity Center instance that authenticates monitor users.

    *)
  4. identityCenterRegion : Region.t option;
    (*

    The AWS Region where IAM Identity Center is enabled. Required when IAM Identity Center is in a different Region than the monitor.

    *)
  5. subdomain : Subdomain.t;
    (*

    The subdomain to use when creating the monitor URL. The full URL of the monitor is subdomain.Region.deadlinecloud.amazonaws.com.

    *)
  6. roleArn : IamRoleArn.t;
    (*

    The Amazon Resource Name of the IAM role that the monitor uses to connect to Deadline Cloud. Every user that signs in to the monitor using IAM Identity Center uses this role to access Deadline Cloud resources.

    *)
  7. tags : Tags.t option;
    (*

    The tags to add to your monitor. Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?identityCenterRegion:??? -> ?tags:??? -> displayName:ResourceName.t -> identityCenterInstanceArn:IdentityCenterInstanceArn.t -> subdomain:Subdomain.t -> roleArn:IamRoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of ClientToken.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