Module Values.CodegenJobSummarySource

A summary of the basic information about the code generation job.

Sourcetype nonrec t = {
  1. appId : AppId.t option;
    (*

    The unique ID of the Amplify app associated with the code generation job.

    *)
  2. environmentName : String_.t option;
    (*

    The name of the backend environment associated with the code generation job.

    *)
  3. id : Uuid.t option;
    (*

    The unique ID for the code generation job summary.

    *)
  4. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The time that the code generation job summary was created.

    *)
  5. modifiedAt : SyntheticTimestamp_date_time.t option;
    (*

    The time that the code generation job summary was modified.

    *)
}
Sourceval make : ?appId:??? -> ?environmentName:??? -> ?id:??? -> ?createdAt:??? -> ?modifiedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AppId.t | `Timestamp of SyntheticTimestamp_date_time.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