Module Values.HybridUpdateInfoEntrySource

Contains detailed information about a specific update activity for a hybrid directory component.

Sourcetype nonrec t = {
  1. status : UpdateStatus.t option;
    (*

    The current status of the update activity. Valid values include UPDATED, UPDATING, and UPDATE_FAILED.

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

    A human-readable description of the update status, including any error details or progress information.

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

    Specifies if the update was initiated by the customer or Amazon Web Services.

    *)
  4. newValue : HybridUpdateValue.t option;
    (*

    The new configuration values being applied in this update.

    *)
  5. previousValue : HybridUpdateValue.t option;
    (*

    The previous configuration values before this update was applied.

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

    The date and time when the update activity was initiated.

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

    The date and time when the update activity status was last updated.

    *)
  8. assessmentId : AssessmentId.t option;
    (*

    The identifier of the assessment performed to validate this update configuration.

    *)
}
Sourceval make : ?status:??? -> ?statusReason:??? -> ?initiatedBy:??? -> ?newValue:??? -> ?previousValue:??? -> ?startTime:??? -> ?lastUpdatedDateTime:??? -> ?assessmentId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UpdateStatusReason.t | `Structure of (string * [> `List of [> `String of AssessmentInstanceId.t ] 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