Module Values.UpdateQuotaShareRequestSource

Updates a quota share.

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

    The Amazon Resource Name (ARN) of the quota share to update.

    *)
  2. capacityLimits : QuotaShareCapacityLimits.t option;
    (*

    A list that specifies the quantity and type of compute capacity allocated to the quota share.

    *)
  3. resourceSharingConfiguration : QuotaShareResourceSharingConfiguration.t option;
    (*

    Specifies whether a quota share reserves, lends, or both lends and borrows idle compute capacity.

    *)
  4. preemptionConfiguration : QuotaSharePreemptionConfiguration.t option;
    (*

    Specifies the preemption behavior for jobs in a quota share.

    *)
  5. state : QuotaShareState.t option;
    (*

    The state of the quota share. If the quota share is ENABLED, it is able to accept jobs. If the quota share is DISABLED, new jobs won't be accepted but jobs already submitted can finish.

    *)
}
Sourceval context_ : string
Sourceval make : ?capacityLimits:??? -> ?resourceSharingConfiguration:??? -> ?preemptionConfiguration:??? -> ?state:??? -> quotaShareArn:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t ]) 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