Module Values.GetRecommenderResponseSource

Retrieves a recommender.

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

    The name of the recommender.

    *)
  2. recommenderRecipeName : RecommenderRecipeName.t option;
    (*

    The name of the recipe used by the recommender to generate recommendations.

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

    The name of the recommender schema associated with this recommender.

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

    The configuration settings for the recommender, including parameters and settings that define its behavior.

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

    A detailed description of the recommender providing information about its purpose and functionality.

    *)
  6. status : RecommenderStatus.t option;
    (*

    The current status of the recommender, indicating whether it is active, creating, updating, or in another state.

    *)
  7. lastUpdatedAt : Timestamp.t option;
    (*

    The timestamp of when the recommender was edited.

    *)
  8. createdAt : Timestamp.t option;
    (*

    The timestamp of when the recommender was created.

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

    If the recommender fails, provides the reason for the failure.

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

    Information about the most recent update performed on the recommender, including status and timestamp.

    *)
  11. trainingMetrics : TrainingMetricsList.t option;
    (*

    A set of metrics that provide information about the recommender's training performance and accuracy.

    *)
  12. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?recommenderName:??? -> ?recommenderRecipeName:??? -> ?recommenderSchemaName:??? -> ?recommenderConfig:??? -> ?description:??? -> ?status:??? -> ?lastUpdatedAt:??? -> ?createdAt:??? -> ?failureReason:??? -> ?latestRecommenderUpdate:??? -> ?trainingMetrics:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Map of ([> `Enum of string ] * [> `Double of Double.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Name.t | `Structure of (string * [> `Enum of string | `Integer of RecommenderConfigTrainingFrequencyInteger.t | `Map of ([> `String of String_.t ] * [> `List of [> `String of Text.t ] list ]) list | `String of String_.t | `Structure of (string * [> `Integer of InferenceConfigMinProvisionedTPSInteger.t | `List of [> `Structure of (string * [> `Double of Double.t | `String of EventParametersEventTypeString.t ]) list ] list | `Map of ([> `String of String_.t ] * [> `List of [> `String of Text.t ] list ]) list | `Structure of (string * [> `Integer of InferenceConfigMinProvisionedTPSInteger.t | `List of [> `Structure of (string * [> `Double of Double.t | `String of EventParametersEventTypeString.t ]) list ] list ]) list ]) list | `Timestamp of Timestamp.t ]) list | `Timestamp of Timestamp.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