Module Values.RecommendationSource

An Amazon Redshift Advisor recommended action on the Amazon Redshift cluster.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    A unique identifier of the Advisor recommendation.

    *)
  2. clusterIdentifier : String_.t option;
    (*

    The unique identifier of the cluster for which the recommendation is returned.

    *)
  3. namespaceArn : String_.t option;
    (*

    The Amazon Redshift cluster namespace ARN for which the recommendations is returned.

    *)
  4. createdAt : TStamp.t option;
    (*

    The date and time (UTC) that the recommendation was created.

    *)
  5. recommendationType : String_.t option;
    (*

    The type of Advisor recommendation.

    *)
  6. title : String_.t option;
    (*

    The title of the recommendation.

    *)
  7. description : String_.t option;
    (*

    The description of the recommendation.

    *)
  8. observation : String_.t option;
    (*

    The description of what was observed about your cluster.

    *)
  9. impactRanking : ImpactRankingType.t option;
    (*

    The scale of the impact that the Advisor recommendation has to the performance and cost of the cluster.

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

    The description of the recommendation.

    *)
  11. recommendedActions : RecommendedActionList.t option;
    (*

    List of Amazon Redshift recommended actions.

    *)
}
Sourceval make : ?id:??? -> ?clusterIdentifier:??? -> ?namespaceArn:??? -> ?createdAt:??? -> ?recommendationType:??? -> ?title:??? -> ?description:??? -> ?observation:??? -> ?impactRanking:??? -> ?recommendationText:??? -> ?recommendedActions:??? -> ?referenceLinks:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `String of String_.t | `Timestamp of TStamp.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