Module Values.QueueFleetAssociationSummarySource

The details of a queue-fleet association.

Sourcetype nonrec t = {
  1. queueId : QueueId.t option;
    (*

    The queue ID.

    *)
  2. fleetId : FleetId.t option;
    (*

    The fleet ID.

    *)
  3. status : QueueFleetAssociationStatus.t option;
    (*

    The status of task scheduling in the queue-fleet association. ACTIVE–Association is active. STOP_SCHEDULING_AND_COMPLETE_TASKS–Association has stopped scheduling new tasks and is completing current tasks. STOP_SCHEDULING_AND_CANCEL_TASKS–Association has stopped scheduling new tasks and is canceling current tasks. STOPPED–Association has been stopped.

    *)
  4. createdAt : CreatedAt.t option;
    (*

    The date and time the resource was created.

    *)
  5. createdBy : CreatedBy.t option;
    (*

    The user or system that created this resource.

    *)
  6. updatedAt : UpdatedAt.t option;
    (*

    The date and time the resource was updated.

    *)
  7. updatedBy : UpdatedBy.t option;
    (*

    The user or system that updated this resource.

    *)
}
Sourceval make : ?queueId:??? -> ?fleetId:??? -> ?status:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of QueueId.t | `Timestamp of CreatedAt.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