Backup.Frameworksee http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-framework.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-backup-framework-controlinputparameter.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-framework-controlscope.html
and framework_control = {control_name : string;control_input_parameters : control_input_parameter list option;control_scope : control_scope option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-framework-frameworkcontrol.html
type properties = {framework_controls : framework_control list;framework_name : string option;framework_description : string option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-framework.html;
val make_properties :
framework_controls:framework_control list ->
?framework_name:string ->
?framework_tags:tag list ->
?framework_description:string ->
unit ->
propertiesval make_tag : value:string -> key:string -> unit -> tagval make_control_input_parameter :
parameter_value:string ->
parameter_name:string ->
unit ->
control_input_parameterval make_control_scope :
?compliance_resource_types:string list ->
?tags:tag list ->
?compliance_resource_ids:string list ->
unit ->
control_scopeval make_framework_control :
control_name:string ->
?control_input_parameters:control_input_parameter list ->
?control_scope:control_scope ->
unit ->
framework_controlval yojson_of_tag : tag -> Yojson.Safe.tval yojson_of_control_input_parameter :
control_input_parameter ->
Yojson.Safe.tval yojson_of_control_scope : control_scope -> Yojson.Safe.tval yojson_of_framework_control :
framework_control ->
[> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]val create_attributes : string -> attributes