Module Values.ConsumableResourceSummarySource

Current information about a consumable resource.

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

    The Amazon Resource Name (ARN) of the consumable resource.

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

    The name of the consumable resource.

    *)
  3. totalQuantity : Long.t option;
    (*

    The total amount of the consumable resource that is available.

    *)
  4. inUseQuantity : Long.t option;
    (*

    The amount of the consumable resource that is currently in use.

    *)
  5. resourceType : String_.t option;
    (*

    Indicates whether the resource is available to be re-used after a job completes. Can be one of: REPLENISHABLE NON_REPLENISHABLE

    *)
}
Sourceval make : ?consumableResourceArn:??? -> ?consumableResourceName:??? -> ?totalQuantity:??? -> ?inUseQuantity:??? -> ?resourceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of String_.t ]) 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