Module Values.FleetSummarySource

The details of a fleet.

Sourcetype nonrec t = {
  1. fleetId : FleetId.t option;
    (*

    The fleet ID.

    *)
  2. farmId : FarmId.t option;
    (*

    The farm ID.

    *)
  3. displayName : ResourceName.t option;
    (*

    The display name of the fleet summary to update. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  4. status : FleetStatus.t option;
    (*

    The status of the fleet.

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

    A message that communicates a suspended status of the fleet.

    *)
  6. autoScalingStatus : AutoScalingStatus.t option;
    (*

    The Auto Scaling status of a fleet.

    *)
  7. targetWorkerCount : Integer.t option;
    (*

    The target number of workers in a fleet.

    *)
  8. workerCount : Integer.t option;
    (*

    The number of workers in the fleet summary.

    *)
  9. minWorkerCount : MinZeroMaxInteger.t option;
    (*

    The minimum number of workers in the fleet.

    *)
  10. maxWorkerCount : MinZeroMaxInteger.t option;
    (*

    The maximum number of workers specified in the fleet.

    *)
  11. configuration : FleetConfiguration.t option;
    (*

    The configuration details for the fleet.

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

    The date and time the resource was created.

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

    The user or system that created this resource.

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

    The date and time the resource was updated.

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

    The user or system that updated this resource.

    *)
}
Sourceval make : ?fleetId:??? -> ?farmId:??? -> ?displayName:??? -> ?status:??? -> ?statusMessage:??? -> ?autoScalingStatus:??? -> ?targetWorkerCount:??? -> ?workerCount:??? -> ?minWorkerCount:??? -> ?maxWorkerCount:??? -> ?configuration:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of FleetId.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of StorageProfileId.t | `Structure of (string * [> `Enum of string | `Integer of MinZeroMaxInteger.t | `List of [> `Enum of string | `String of InstanceType.t | `Structure of (string * [> `Float of Float_.t | `List of [> `String of AttributeCapabilityValue.t ] list | `String of AmountCapabilityName.t ]) list ] list | `Structure of (string * [> `Integer of MinOneMaxTenThousand.t | `List of [> `Structure of (string * [> `Enum of string | `String of AcceleratorRuntime.t ]) list ] list | `Structure of (string * [> `Integer of MinZeroMaxInteger.t ]) list ]) list ]) list ]) list ]) list | `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