Module Values.RecommendedActionSource

The recommended action from the Amazon Redshift Advisor recommendation.

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

    The specific instruction about the command.

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

    The database name to perform the action on. Only applicable if the type of command is SQL.

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

    The command to run.

    *)
  4. type_ : RecommendedActionType.t option;
    (*

    The type of command.

    *)
}
Sourceval make : ?text:??? -> ?database:??? -> ?command:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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