Module Values_1.ViewRepresentationInputSource

A structure containing details of a representation to update or create a Lake Formation view.

Sourcetype nonrec t = {
  1. dialect : ViewDialect.t option;
    (*

    A parameter that specifies the engine type of a specific representation.

    *)
  2. dialectVersion : ViewDialectVersionString.t option;
    (*

    A parameter that specifies the version of the engine of a specific representation.

    *)
  3. viewOriginalText : ViewTextString.t option;
    (*

    A string that represents the original SQL query that describes the view.

    *)
  4. validationConnection : Values_0.NameString.t option;
    (*

    The name of the connection to be used to validate the specific representation of the view.

    *)
  5. viewExpandedText : ViewTextString.t option;
    (*

    A string that represents the SQL query that describes the view with expanded resource ARNs

    *)
}
Sourceval make : ?dialect:??? -> ?dialectVersion:??? -> ?viewOriginalText:??? -> ?validationConnection:??? -> ?viewExpandedText:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ViewDialectVersionString.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