Module GuardDuty.IPSet

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html

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

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-ipset-tagitem.html

type properties = {
  1. format : string;
  2. activate : bool option;
  3. detector_id : string option;
  4. tags : tag_item list option;
  5. name : string option;
  6. location : string;
}

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

val make_properties : format:string -> ?activate:bool -> ?detector_id:string -> ?tags:tag_item list -> ?name:string -> location:string -> unit -> properties
val make_tag_item : value:string -> key:string -> unit -> tag_item
val yojson_of_tag_item : tag_item -> [> `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