Module Values.UpdateQueueFleetAssociationRequestSource

Identifier mixin for queue-fleet association operations. Composes QueueIdentifierMixin (farmId + queueId) and adds fleetId.

Sourcetype nonrec t = {
  1. farmId : FarmId.t;
    (*

    The farm ID to update.

    *)
  2. queueId : QueueId.t;
    (*

    The queue ID to update.

    *)
  3. fleetId : FleetId.t;
    (*

    The fleet ID to update.

    *)
  4. status : UpdateQueueFleetAssociationStatus.t;
    (*

    The status to update.

    *)
}
Sourceval context_ : string
Sourceval make : farmId:FarmId.t -> queueId:QueueId.t -> fleetId:FleetId.t -> status:UpdateQueueFleetAssociationStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FarmId.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