Module Values.RecipeSource

Provides information about a recipe. Each recipe provides an algorithm that Amazon Personalize uses in model training when you use the CreateSolution operation.

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

    The name of the recipe.

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

    The Amazon Resource Name (ARN) of the recipe.

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

    The Amazon Resource Name (ARN) of the algorithm that Amazon Personalize uses to train the model.

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

    The ARN of the FeatureTransformation object.

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

    The status of the recipe.

    *)
  6. description : Description.t option;
    (*

    The description of the recipe.

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

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

    *)
  8. recipeType : RecipeType.t option;
    (*

    One of the following values: PERSONALIZED_RANKING RELATED_ITEMS USER_PERSONALIZATION

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

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

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