Module Values_0.AnalysisSecurityGroupRuleSource

Describes a security group rule.

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

    The IPv4 address range, in CIDR notation.

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

    The direction. The following are the possible values: egress ingress

    *)
  3. securityGroupId : String_.t option;
    (*

    The security group ID.

    *)
  4. portRange : PortRange.t option;
    (*

    The port range.

    *)
  5. prefixListId : String_.t option;
    (*

    The prefix list ID.

    *)
  6. protocol : String_.t option;
    (*

    The protocol name.

    *)
}
Sourceval make : ?cidr:??? -> ?direction:??? -> ?securityGroupId:??? -> ?portRange:??? -> ?prefixListId:??? -> ?protocol:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) 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