Module Values.ImportedModelSummarySource

Information about the imported model.

Sourcetype nonrec t = {
  1. modelArn : ImportedModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the imported model.

    *)
  2. modelName : ImportedModelName.t option;
    (*

    Name of the imported model.

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

    Creation time of the imported model.

    *)
  4. instructSupported : InstructSupported.t option;
    (*

    Specifies if the imported model supports converse.

    *)
  5. modelArchitecture : ModelArchitecture.t option;
    (*

    The architecture of the imported model.

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