Module Values.ProtectedQuerySQLParametersSource

The parameters for the SQL type Protected Query.

Sourcetype nonrec t = {
  1. queryString : ProtectedQuerySQLParametersQueryStringString.t option;
    (*

    The query string to be submitted.

    *)
  2. analysisTemplateArn : AnalysisTemplateArn.t option;
    (*

    The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.

    *)
  3. parameters : ParameterMap.t option;
    (*

    The protected query SQL parameters.

    *)
}
Sourceval make : ?queryString:??? -> ?analysisTemplateArn:??? -> ?parameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of ParameterName.t ] * [> `String of ParameterValue.t ]) list | `String of ProtectedQuerySQLParametersQueryStringString.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