Module RDS.DBSecurityGroup

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html

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

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

and ingress = {
  1. cidrip : string option;
  2. e_c2_security_group_id : string option;
  3. e_c2_security_group_name : string option;
  4. e_c2_security_group_owner_id : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group-rule.html

type properties = {
  1. db_security_group_ingress : ingress list;
  2. e_c2_vpc_id : string option;
  3. group_description : string;
  4. tags : tag list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html;

val make_properties : db_security_group_ingress:ingress list -> ?e_c2_vpc_id:string -> group_description:string -> ?tags:tag list -> unit -> properties
val make_tag : key:string -> value:string -> unit -> tag
val make_ingress : ?cidrip:string -> ?e_c2_security_group_id:string -> ?e_c2_security_group_name:string -> ?e_c2_security_group_owner_id:string -> unit -> ingress
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_ingress : ingress -> [> `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