Module SSM.MaintenanceWindowTarget

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

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

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

type properties = {
  1. owner_information : string option;
  2. description : string option;
  3. window_id : string;
  4. resource_type : string;
  5. targets : targets list;
  6. name : string option;
}

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

val make_properties : ?owner_information:string -> ?description:string -> window_id:string -> resource_type:string -> targets:targets list -> ?name:string -> unit -> properties
val make_targets : values:string list -> key:string -> unit -> targets
val yojson_of_targets : targets -> [> `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