Module Values.RecommenderUpdateSummarySource

Provides a summary of the properties of a recommender update. For a complete listing, call the DescribeRecommender API.

Sourcetype nonrec t = {
  1. recommenderConfig : RecommenderConfig.t option;
    (*

    The configuration details of the recommender update.

    *)
  2. creationDateTime : Date.t option;
    (*

    The date and time (in Unix format) that the recommender update was created.

    *)
  3. lastUpdatedDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the recommender update was last updated.

    *)
  4. status : Status.t option;
    (*

    The status of the recommender update. A recommender update can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

    *)
  5. failureReason : FailureReason.t option;
    (*

    If a recommender update fails, the reason behind the failure.

    *)
}
Sourceval make : ?recommenderConfig:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?status:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Status.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of TransactionsPerSecond.t | `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `Structure of (string * [> `Map of ([> `String of DatasetType.t ] * [> `List of [> `String of ColumnName.t ] list ]) list ]) list ]) list | `Timestamp of Date.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