Module Values.ChangeInfoSource

A complex type that describes change information about changes made to your hosted zone.

Sourcetype nonrec t = {
  1. id : ResourceId.t option;
    (*

    This element contains an ID that you use when performing a GetChange action to get detailed information about the change.

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

    The current state of the request. PENDING indicates that this request has not yet been applied to all Amazon Route 53 DNS servers.

    *)
  3. submittedAt : TimeStamp.t option;
    (*

    The date and time that the change request was submitted in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2017-03-27T17:48:16.751Z represents March 27, 2017 at 17:48:16.751 UTC.

    *)
  4. comment : ResourceDescription.t option;
    (*

    A comment you can provide.

    *)
}
Sourceval make : ?id:??? -> ?status:??? -> ?submittedAt:??? -> ?comment:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceId.t | `Timestamp of TimeStamp.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