CodeBuild.ReportGroupsee http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
and s3_report_export_config = {path : string option;bucket : string;packaging : string option;encryption_key : string option;bucket_owner : string option;encryption_disabled : bool option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html
and report_export_config = {s3_destination : s3_report_export_config option;export_config_type : string;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html
type properties = {type_ : string;export_config : report_export_config;delete_reports : bool option;name : string option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html;
val make_properties :
type_:string ->
export_config:report_export_config ->
?delete_reports:bool ->
?tags:tag list ->
?name:string ->
unit ->
propertiesval make_tag : key:string -> value:string -> unit -> tagval make_s3_report_export_config :
?path:string ->
bucket:string ->
?packaging:string ->
?encryption_key:string ->
?bucket_owner:string ->
?encryption_disabled:bool ->
unit ->
s3_report_export_configval make_report_export_config :
?s3_destination:s3_report_export_config ->
export_config_type:string ->
unit ->
report_export_configval yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_s3_report_export_config :
s3_report_export_config ->
Yojson.Safe.tval yojson_of_report_export_config :
report_export_config ->
[> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]val create_attributes : string -> attributes