Module Values.IPRangeSource

Describes an IP range used in a security group.

Sourcetype nonrec t = {
  1. status : String_.t option;
    (*

    The status of the IP range, for example, "authorized".

    *)
  2. cIDRIP : String_.t option;
    (*

    The IP range in Classless Inter-Domain Routing (CIDR) notation.

    *)
  3. tags : TagList.t option;
    (*

    The list of tags for the IP range.

    *)
}
Sourceval make : ?status:??? -> ?cIDRIP:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t