Module Values.UpdateInfoEntrySource

An entry of update information related to a requested update type.

Sourcetype nonrec t = {
  1. region : RegionName.t option;
    (*

    The name of the Region.

    *)
  2. status : UpdateStatus.t option;
    (*

    The status of the update performed on the directory.

    *)
  3. statusReason : UpdateStatusReason.t option;
    (*

    The reason for the current status of the update type activity.

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

    This specifies if the update was initiated by the customer or by the service team.

    *)
  5. newValue : UpdateValue.t option;
    (*

    The new value of the target setting.

    *)
  6. previousValue : UpdateValue.t option;
    (*

    The old value of the target setting.

    *)
  7. startTime : StartDateTime.t option;
    (*

    The start time of the UpdateDirectorySetup for the particular type.

    *)
  8. lastUpdatedDateTime : LastUpdatedDateTime.t option;
    (*

    The last updated date and time of a particular directory setting.

    *)
}
Sourceval make : ?region:??? -> ?status:??? -> ?statusReason:??? -> ?initiatedBy:??? -> ?newValue:??? -> ?previousValue:??? -> ?startTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RegionName.t | `Structure of (string * [> `Structure of (string * [> `Enum of string ]) list ]) list | `Timestamp of StartDateTime.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