Module Values.RecommenderSummarySource

Provides a summary of a recommender's configuration and current state.

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

    The name of the recommender.

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

    The name of the recipe used by this recommender.

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

    The name of the recommender schema associated with this recommender.

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

    The configuration settings applied to this recommender.

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

    The timestamp when the recommender was created.

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

    A description of the recommender's purpose and characteristics.

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

    The current operational status of the recommender.

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

    The timestamp of when the recommender was edited.

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

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

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

    If the recommender is in a failed state, provides the reason for the failure.

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

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

    *)
}
Sourceval make : ?recommenderName:??? -> ?recipeName:??? -> ?recommenderSchemaName:??? -> ?recommenderConfig:??? -> ?createdAt:??? -> ?description:??? -> ?status:??? -> ?lastUpdatedAt:??? -> ?tags:??? -> ?failureReason:??? -> ?latestRecommenderUpdate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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