Module Values.TrafficPolicySource

The structure of a traffic policy resource which is a container for policy statements.

Sourcetype nonrec t = {
  1. trafficPolicyName : TrafficPolicyName.t option;
    (*

    A user-friendly name of the traffic policy resource.

    *)
  2. trafficPolicyId : TrafficPolicyId.t option;
    (*

    The identifier of the traffic policy resource.

    *)
  3. defaultAction : AcceptAction.t option;
    (*

    Default action instructs the traffic policy to either Allow or Deny (block) messages that fall outside of (or not addressed by) the conditions of your policy statements

    *)
}
Sourceval make : ?trafficPolicyName:??? -> ?trafficPolicyId:??? -> ?defaultAction:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of TrafficPolicyName.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