Module Backup.ReportPlan

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-reportplan.html

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

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

and report_delivery_channel = {
  1. s3_key_prefix : string option;
  2. formats : string list option;
  3. s3_bucket_name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-reportplan-reportdeliverychannel.html

and report_setting = {
  1. framework_arns : string list option;
  2. report_template : string;
  3. organization_units : string list option;
  4. regions : string list option;
  5. accounts : string list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-reportplan-reportsetting.html

type properties = {
  1. report_setting : report_setting;
  2. report_plan_description : string option;
  3. report_plan_name : string option;
  4. report_delivery_channel : report_delivery_channel;
  5. report_plan_tags : tag list option;
}

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

val make_properties : report_setting:report_setting -> ?report_plan_description:string -> ?report_plan_name:string -> report_delivery_channel:report_delivery_channel -> ?report_plan_tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_report_delivery_channel : ?s3_key_prefix:string -> ?formats:string list -> s3_bucket_name:string -> unit -> report_delivery_channel
val make_report_setting : ?framework_arns:string list -> report_template:string -> ?organization_units:string list -> ?regions:string list -> ?accounts:string list -> unit -> report_setting
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_report_delivery_channel : report_delivery_channel -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_report_setting : report_setting -> [> `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. report_plan_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string