Module Values.QuotaShareDetailSource

Detailed information about a quota share, including its configuration, state, and capacity limits.

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

    The name of the quota share.

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

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

    *)
  3. jobQueueArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the job queue associated with the quota share.

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

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

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

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

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

    Specifies the preemption behavior for jobs in a quota share.

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

    The state of the quota share.

    *)
  8. status : QuotaShareStatus.t option;
    (*

    The current status of the quota share.

    *)
}
Sourceval make : ?quotaShareName:??? -> ?quotaShareArn:??? -> ?jobQueueArn:??? -> ?capacityLimits:??? -> ?resourceSharingConfiguration:??? -> ?preemptionConfiguration:??? -> ?state:??? -> ?status:??? -> 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