Module Values.WorkerSearchSummarySource

The details of a worker search.

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

    The fleet ID.

    *)
  2. workerId : WorkerId.t option;
    (*

    The worker ID.

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

    The status of the worker search.

    *)
  4. hostProperties : HostPropertiesResponse.t option;
    (*

    Provides the Amazon EC2 instance properties of the worker host.

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

    The user or system that created this resource.

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

    The date and time the resource was created.

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

    The user or system that updated this resource.

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

    The date and time the resource was updated.

    *)
}
Sourceval make : ?fleetId:??? -> ?workerId:??? -> ?status:??? -> ?hostProperties:??? -> ?createdBy:??? -> ?createdAt:??? -> ?updatedBy:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FleetId.t | `Structure of (string * [> `String of HostName.t | `Structure of (string * [> `List of [> `String of IpV4Address.t ] 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