Module CleanRooms.AnalysisTemplate

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-analysistemplate.html

type analysis_source = {
  1. text : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysissource.html

and tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and analysis_parameter = {
  1. default_value : string option;
  2. type_ : string;
  3. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysisparameter.html

and analysis_schema = {
  1. referenced_tables : string list;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysisschema.html

type properties = {
  1. membership_identifier : string;
  2. description : string option;
  3. format : string;
  4. analysis_parameters : analysis_parameter list option;
  5. source : analysis_source;
  6. tags : tag list option;
  7. 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 ]
type attributes = {
  1. ref_ : string;
  2. collaboration_identifier : string;
  3. schema__referenced_tables : string list;
  4. membership_arn : string;
  5. arn : string;
  6. collaboration_arn : string;
  7. analysis_template_identifier : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string