Module Values.LocationAttributesSource

Details about a location in a multi-location fleet.

Sourcetype nonrec t = {
  1. locationState : LocationState.t option;
    (*

    A fleet location and its current life-cycle state.

    *)
  2. stoppedActions : FleetActionList.t option;
    (*

    A list of fleet actions that have been suspended in the fleet location.

    *)
  3. updateStatus : LocationUpdateStatus.t option;
    (*

    The status of fleet activity updates to the location. The status PENDING_UPDATE indicates that StopFleetActions or StartFleetActions has been requested but the update has not yet been completed for the location.

    *)
}
Sourceval make : ?locationState:??? -> ?stoppedActions:??? -> ?updateStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Structure of (string * [> `Enum of string | `String of LocationStringModel.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