Module Values.CreateSchedulingPolicyRequestSource

Contains the parameters for CreateSchedulingPolicy.

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

    The name of the fair-share scheduling policy. It can be up to 128 letters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).

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

    The quota share scheduling policy details. Only one of fairsharePolicy or quotaSharePolicy can be set. Once set, this policy type cannot be removed or changed to a fairSharePolicy.

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

    The fair-share scheduling policy details. Only one of fairsharePolicy or quotaSharePolicy can be set. Once set, this policy type cannot be removed or changed to a quotaSharePolicy.

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

    The tags that you apply to the scheduling policy to help you 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. These tags can be updated or removed using the TagResource and UntagResource API operations.

    *)
}
Sourceval context_ : string
Sourceval make : ?quotaSharePolicy:??? -> ?fairsharePolicy:??? -> ?tags:??? -> name:String_.t -> 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