Module Values.RecommenderSource

Describes a recommendation generator for a Domain dataset group. You create a recommender in a Domain dataset group for a specific domain use case (domain recipe), and specify the recommender in a GetRecommendations request.

Sourcetype nonrec t = {
  1. recommenderArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the recommender.

    *)
  2. datasetGroupArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the Domain dataset group that contains the recommender.

    *)
  3. name : Name.t option;
    (*

    The name of the recommender.

    *)
  4. recipeArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the recipe (Domain dataset group use case) that the recommender was created for.

    *)
  5. recommenderConfig : RecommenderConfig.t option;
    (*

    The configuration details of the recommender.

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

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

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

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

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

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

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

    If a recommender fails, the reason behind the failure.

    *)
  10. latestRecommenderUpdate : RecommenderUpdateSummary.t option;
    (*

    Provides a summary of the latest updates to the recommender.

    *)
  11. modelMetrics : Metrics.t option;
    (*

    Provides evaluation metrics that help you determine the performance of a recommender. For more information, see Evaluating a recommender.

    *)
}
Sourceval make : ?recommenderArn:??? -> ?datasetGroupArn:??? -> ?name:??? -> ?recipeArn:??? -> ?recommenderConfig:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?status:??? -> ?failureReason:??? -> ?latestRecommenderUpdate:??? -> ?modelMetrics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of MetricName.t ] * [> `Double of MetricValue.t ]) list | `String of Arn.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of TransactionsPerSecond.t | `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of Status.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of TransactionsPerSecond.t | `Map of ([> `String of DatasetType.t ] * [> `List of [> `String of ColumnName.t ] list | `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 | `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