Module Athena.NamedQuery

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html

type properties = {
  1. work_group : string option;
  2. description : string option;
  3. query_string : string;
  4. database : string;
  5. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html;

val make_properties : ?work_group:string -> ?description:string -> query_string:string -> database:string -> ?name:string -> unit -> properties
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. named_query_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string