Module Values.ChangeProgressStatusDetailsSource

The progress details of a specific domain configuration change.

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

    The unique change identifier associated with a specific domain configuration change.

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

    The time at which the configuration change is made on the domain.

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

    The overall status of the domain configuration change. This field can take the following values: PENDING, PROCESSING, COMPLETED and FAILED

    *)
  4. pendingProperties : StringList.t option;
    (*

    The list of properties involved in the domain configuration change that are still in pending.

    *)
  5. completedProperties : StringList.t option;
    (*

    The list of properties involved in the domain configuration change that are completed.

    *)
  6. totalNumberOfStages : TotalNumberOfStages.t option;
    (*

    The total number of stages required for the configuration change.

    *)
  7. changeProgressStages : ChangeProgressStageList.t option;
    (*

    The specific stages that the domain is going through to perform the configuration change.

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

    The current status of the configuration change.

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

    The last time that the status of the configuration change was updated.

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

    The IAM principal who initiated the configuration change.

    *)
}
Sourceval make : ?changeId:??? -> ?startTime:??? -> ?status:??? -> ?pendingProperties:??? -> ?completedProperties:??? -> ?totalNumberOfStages:??? -> ?changeProgressStages:??? -> ?configChangeStatus:??? -> ?lastUpdatedTime:??? -> ?initiatedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of TotalNumberOfStages.t | `List of [> `String of String_.t | `Structure of (string * [> `String of ChangeProgressStageName.t | `Timestamp of LastUpdated.t ]) list ] list | `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