Module SSM.PatchBaseline

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html

type patch_filter = {
  1. values : string list option;
  2. key : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfilter.html

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

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

and patch_source = {
  1. products : string list option;
  2. configuration : string option;
  3. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchsource.html

and patch_filter_group = {
  1. patch_filters : patch_filter list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfiltergroup.html

and rule = {
  1. approve_until_date : string option;
  2. enable_non_security : bool option;
  3. patch_filter_group : patch_filter_group option;
  4. approve_after_days : int option;
  5. compliance_level : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-rule.html

and rule_group = {
  1. patch_rules : rule list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-rulegroup.html

type properties = {
  1. operating_system : string option;
  2. description : string option;
  3. approval_rules : rule_group option;
  4. sources : patch_source list option;
  5. name : string;
  6. rejected_patches : string list option;
  7. approved_patches : string list option;
  8. rejected_patches_action : string option;
  9. patch_groups : string list option;
  10. approved_patches_compliance_level : string option;
  11. approved_patches_enable_non_security : bool option;
  12. default_baseline : bool option;
  13. global_filters : patch_filter_group option;
  14. tags : tag list option;
}

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

val make_properties : ?operating_system:string -> ?description:string -> ?approval_rules:rule_group -> ?sources:patch_source list -> name:string -> ?rejected_patches:string list -> ?approved_patches:string list -> ?rejected_patches_action:string -> ?patch_groups:string list -> ?approved_patches_compliance_level:string -> ?approved_patches_enable_non_security:bool -> ?default_baseline:bool -> ?global_filters:patch_filter_group -> ?tags:tag list -> unit -> properties
val make_patch_filter : ?values:string list -> ?key:string -> unit -> patch_filter
val make_tag : value:string -> key:string -> unit -> tag
val make_patch_source : ?products:string list -> ?configuration:string -> ?name:string -> unit -> patch_source
val make_patch_filter_group : ?patch_filters:patch_filter list -> unit -> patch_filter_group
val make_rule : ?approve_until_date:string -> ?enable_non_security:bool -> ?patch_filter_group:patch_filter_group -> ?approve_after_days:int -> ?compliance_level:string -> unit -> rule
val make_rule_group : ?patch_rules:rule list -> unit -> rule_group
val yojson_of_patch_filter : patch_filter -> Yojson.Safe.t
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_patch_source : patch_source -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_patch_filter_group : patch_filter_group -> Yojson.Safe.t
val yojson_of_rule : rule -> Yojson.Safe.t
val yojson_of_rule_group : rule_group -> [> `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. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string