Module Values_0.CreateClusterSchedulerConfigRequestSource

Create cluster policy configuration. This policy is used for task prioritization and fair-share allocation of idle compute. This helps prioritize critical workloads and distributes idle compute across entities.

Sourcetype nonrec t = {
  1. name : EntityName.t;
    (*

    Name for the cluster policy.

    *)
  2. clusterArn : ClusterArn.t;
    (*

    ARN of the cluster.

    *)
  3. schedulerConfig : SchedulerConfig.t;
    (*

    Configuration about the monitoring schedule.

    *)
  4. description : EntityDescription.t option;
    (*

    Description of the cluster policy.

    *)
  5. tags : TagList.t option;
    (*

    Tags of the cluster policy.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> name:EntityName.t -> clusterArn:ClusterArn.t -> schedulerConfig:SchedulerConfig.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of EntityName.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of PriorityWeight.t | `String of ClusterSchedulerPriorityClassName.t ]) list ] list ]) list ]) 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