Module Values_1.PacketHeaderStatementRequestSource

Describes a packet header statement.

Sourcetype nonrec t = {
  1. sourceAddresses : Values_0.ValueStringList.t option;
    (*

    The source addresses.

    *)
  2. destinationAddresses : Values_0.ValueStringList.t option;
    (*

    The destination addresses.

    *)
  3. sourcePorts : Values_0.ValueStringList.t option;
    (*

    The source ports.

    *)
  4. destinationPorts : Values_0.ValueStringList.t option;
    (*

    The destination ports.

    *)
  5. sourcePrefixLists : Values_0.ValueStringList.t option;
    (*

    The source prefix lists.

    *)
  6. destinationPrefixLists : Values_0.ValueStringList.t option;
    (*

    The destination prefix lists.

    *)
  7. protocols : Values_0.ProtocolList.t option;
    (*

    The protocols.

    *)
}
Sourceval make : ?sourceAddresses:??? -> ?destinationAddresses:??? -> ?sourcePorts:??? -> ?destinationPorts:??? -> ?sourcePrefixLists:??? -> ?destinationPrefixLists:??? -> ?protocols:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `String of string ] 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