Module Values.PolicyConditionSource

The email traffic filtering conditions which are contained in a traffic policy resource.

Sourcetype nonrec t = {
  1. stringExpression : IngressStringExpression.t option;
    (*

    This represents a string based condition matching on the incoming mail. It performs the string operation configured in 'Operator' and evaluates the 'Protocol' object against the 'Value'.

    *)
  2. ipExpression : IngressIpv4Expression.t option;
    (*

    This represents an IP based condition matching on the incoming mail. It performs the operation configured in 'Operator' and evaluates the 'Protocol' object against the 'Value'.

    *)
  3. ipv6Expression : IngressIpv6Expression.t option;
    (*

    This represents an IPv6 based condition matching on the incoming mail. It performs the operation configured in 'Operator' and evaluates the 'Protocol' object against the 'Value'.

    *)
  4. tlsExpression : IngressTlsProtocolExpression.t option;
    (*

    This represents a TLS based condition matching on the incoming mail. It performs the operation configured in 'Operator' and evaluates the 'Protocol' object against the 'Value'.

    *)
  5. booleanExpression : IngressBooleanExpression.t option;
    (*

    This represents a boolean type condition matching on the incoming mail. It performs the boolean operation configured in 'Operator' and evaluates the 'Protocol' object against the 'Value'.

    *)
}
Sourceval make : ?stringExpression:??? -> ?ipExpression:??? -> ?ipv6Expression:??? -> ?tlsExpression:??? -> ?booleanExpression:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `List of [> `String of AddressListArn.t ] list | `String of AnalyzerArn.t ]) list ]) list ]) 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