Module Values.ConfiguredModelAlgorithmSummarySource

Provides summary information about a configured model algorithm.

Sourcetype nonrec t = {
  1. createTime : SyntheticTimestamp_date_time.t option;
    (*

    The time at which the configured model algorithm was created.

    *)
  2. updateTime : SyntheticTimestamp_date_time.t option;
    (*

    The most recent time at which the configured model algorithm was updated.

    *)
  3. configuredModelAlgorithmArn : ConfiguredModelAlgorithmArn.t option;
    (*

    The Amazon Resource Name (ARN) of the configured model algorithm.

    *)
  4. name : NameString.t option;
    (*

    The name of the configured model algorithm.

    *)
  5. description : ResourceDescription.t option;
    (*

    The description of the configured model algorithm.

    *)
}
Sourceval make : ?createTime:??? -> ?updateTime:??? -> ?configuredModelAlgorithmArn:??? -> ?name:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ConfiguredModelAlgorithmArn.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