Module Values.WorkerConfigurationSummarySource

The summary of a worker configuration.

Sourcetype nonrec t = {
  1. creationTime : string option;
    (*

    The time that a worker configuration was created.

    *)
  2. description : string option;
    (*

    The description of a worker configuration.

    *)
  3. latestRevision : WorkerConfigurationRevisionSummary.t option;
    (*

    The latest revision of a worker configuration.

    *)
  4. name : string option;
    (*

    The name of the worker configuration.

    *)
  5. workerConfigurationArn : string option;
    (*

    The Amazon Resource Name (ARN) of the worker configuration.

    *)
  6. workerConfigurationState : WorkerConfigurationState.t option;
    (*

    The state of the worker configuration.

    *)
}
Sourceval make : ?creationTime:??? -> ?description:??? -> ?latestRevision:??? -> ?name:??? -> ?workerConfigurationArn:??? -> ?workerConfigurationState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string | `Structure of (string * [> `Long of Awso.Import.Int64.t | `String of string | `Timestamp of string ]) list | `Timestamp of string ]) 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