Module Values.RecommenderSummarySource

Provides a summary of the properties of the recommender.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the recommender.

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

    The Amazon Resource Name (ARN) of the recommender.

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

    The Amazon Resource Name (ARN) of the Domain dataset group that contains 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. 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

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

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

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

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

    *)
}
Sourceval make : ?name:??? -> ?recommenderArn:??? -> ?datasetGroupArn:??? -> ?recipeArn:??? -> ?recommenderConfig:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.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