Module SSM.MaintenanceWindow

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

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

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

type properties = {
  1. start_date : string option;
  2. description : string option;
  3. allow_unassociated_targets : bool;
  4. cutoff : int;
  5. schedule : string;
  6. duration : int;
  7. schedule_offset : int option;
  8. end_date : string option;
  9. tags : tag list option;
  10. name : string;
  11. schedule_timezone : string option;
}

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

val make_properties : ?start_date:string -> ?description:string -> allow_unassociated_targets:bool -> cutoff:int -> schedule:string -> duration:int -> ?schedule_offset:int -> ?end_date:string -> ?tags:tag list -> name:string -> ?schedule_timezone:string -> unit -> properties
val make_tag : key:string -> value:string -> unit -> tag
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string