CleanRooms.AnalysisTemplate
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissource.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysisparameter.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysisschema.html
type properties = {
membership_identifier : string;
description : string option;
format : string;
analysis_parameters : analysis_parameter list option;
source : analysis_source;
name : string;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html;
val make_properties :
membership_identifier:string ->
?description:string ->
format:string ->
?analysis_parameters:analysis_parameter list ->
source:analysis_source ->
?tags:tag list ->
name:string ->
unit ->
properties
val make_analysis_source : text:string -> unit -> analysis_source
val make_tag : value:string -> key:string -> unit -> tag
val make_analysis_parameter :
?default_value:string ->
type_:string ->
name:string ->
unit ->
analysis_parameter
val make_analysis_schema :
referenced_tables:string list ->
unit ->
analysis_schema
val yojson_of_analysis_source :
analysis_source ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_analysis_parameter :
analysis_parameter ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_analysis_schema :
analysis_schema ->
[> `Assoc of (string * [> `List of Yojson.Safe.t list ]) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes