Module CodeBuild.ReportGroup

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-reportgroup.html

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

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

and s3_report_export_config = {
  1. path : string option;
  2. bucket : string;
  3. packaging : string option;
  4. encryption_key : string option;
  5. bucket_owner : string option;
  6. encryption_disabled : bool option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-s3reportexportconfig.html

and report_export_config = {
  1. s3_destination : s3_report_export_config option;
  2. export_config_type : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-reportgroup-reportexportconfig.html

type properties = {
  1. type_ : string;
  2. export_config : report_export_config;
  3. delete_reports : bool option;
  4. tags : tag list option;
  5. 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 -> properties
val make_tag : key:string -> value:string -> unit -> tag
val make_s3_report_export_config : ?path:string -> bucket:string -> ?packaging:string -> ?encryption_key:string -> ?bucket_owner:string -> ?encryption_disabled:bool -> unit -> s3_report_export_config
val make_report_export_config : ?s3_destination:s3_report_export_config -> export_config_type:string -> unit -> report_export_config
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_s3_report_export_config : s3_report_export_config -> Yojson.Safe.t
val 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 ]
type attributes = {
  1. ref_ : string;
  2. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string