Module CodeStarNotifications.NotificationRule

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarnotifications-notificationrule.html

type target = {
  1. target_type : string;
  2. target_address : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codestarnotifications-notificationrule-target.html

type properties = {
  1. event_type_ids : string list;
  2. status : string option;
  3. created_by : string option;
  4. detail_type : string;
  5. resource : string;
  6. event_type_id : string option;
  7. target_address : string option;
  8. targets : target list;
  9. tags : string Stdlib__Map.Make(Stdlib.String).t option;
  10. name : string;
}

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

val make_properties : event_type_ids:string list -> ?status:string -> ?created_by:string -> detail_type:string -> resource:string -> ?event_type_id:string -> ?target_address:string -> targets:target list -> ?tags:string Stdlib__Map.Make(Stdlib.String).t -> name:string -> unit -> properties
val make_target : target_type:string -> target_address:string -> unit -> target
val yojson_of_target : target -> [> `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. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string