Module Values_2.MlflowAppSummarySource

The summary of the Mlflow App to list.

Sourcetype nonrec t = {
  1. arn : Values_1.MlflowAppArn.t option;
    (*

    The ARN of a listed MLflow App.

    *)
  2. name : Values_1.MlflowAppName.t option;
    (*

    The name of the MLflow App.

    *)
  3. status : Values_1.MlflowAppStatus.t option;
    (*

    The status of the MLflow App.

    *)
  4. creationTime : Values_0.Timestamp.t option;
    (*

    The creation time of a listed MLflow App.

    *)
  5. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The last modified time of a listed MLflow App.

    *)
  6. mlflowVersion : Values_1.MlflowVersion.t option;
    (*

    The version of a listed MLflow App.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?status:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?mlflowVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.MlflowAppArn.t | `Timestamp of Values_0.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