Module Values_2.ModelSummarySource

Provides summary information about a model.

Sourcetype nonrec t = {
  1. modelName : Values_0.ModelName.t option;
    (*

    The name of the model that you want a summary for.

    *)
  2. modelArn : Values_1.ModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the model.

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

    A timestamp that indicates when the model was created.

    *)
}
Sourceval make : ?modelName:??? -> ?modelArn:??? -> ?creationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.ModelName.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