Module Values.ChangeProgressDetailsSource

Container for information about a configuration change happening on a domain.

Sourcetype nonrec t = {
  1. changeId : GUID.t option;
    (*

    The ID of the configuration change.

    *)
  2. message : Message.t option;
    (*

    A message corresponding to the status of the configuration change.

    *)
  3. configChangeStatus : ConfigChangeStatus.t option;
    (*

    The current status of the configuration change.

    *)
  4. initiatedBy : InitiatedBy.t option;
    (*

    The IAM principal who initiated the configuration change.

    *)
  5. startTime : UpdateTimestamp.t option;
    (*

    The time that the configuration change was initiated, in Universal Coordinated Time (UTC).

    *)
  6. lastUpdatedTime : UpdateTimestamp.t option;
    (*

    The last time that the configuration change was updated.

    *)
}
Sourceval make : ?changeId:??? -> ?message:??? -> ?configChangeStatus:??? -> ?initiatedBy:??? -> ?startTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GUID.t | `Timestamp of UpdateTimestamp.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