Module Values.AssetRevisionSource

The revision of an inventory asset.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
    (*

    The Amazon DataZone user who created the inventory asset.

    *)
  2. id : AssetId.t option;
    (*

    The identifier of the inventory asset revision.

    *)
  3. revision : Revision.t option;
    (*

    The revision details of the inventory asset.

    *)
  4. createdBy : CreatedBy.t option;
    (*

    The Amazon DataZone user who created the asset revision.

    *)
  5. createdAt : CreatedAt.t option;
    (*

    The timestamp of when an inventory asset revison was created.

    *)
}
Sourceval make : ?domainId:??? -> ?id:??? -> ?revision:??? -> ?createdBy:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainId.t | `Timestamp of CreatedAt.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