Module Values.SchedulingPolicyDetailSource

An object that represents a scheduling policy.

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

    The name of the fair-share scheduling policy.

    *)
  2. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the scheduling policy. An example is arn:aws:batch:us-east-1:123456789012:scheduling-policy/HighPriority .

    *)
  3. quotaSharePolicy : QuotaSharePolicy.t option;
    (*

    The quota share scheduling policy details.

    *)
  4. fairsharePolicy : FairsharePolicy.t option;
    (*

    The fair-share scheduling policy details.

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

    The tags that you apply to the fair-share scheduling policy to categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging Amazon Web Services resources in Amazon Web Services General Reference.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?quotaSharePolicy:??? -> ?fairsharePolicy:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of String_.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t | `List of [> `Structure of (string * [> `Float of Float_.t | `String of String_.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