Module Values.PermissionConditionSource

Defines a condition that restricts when a permission is effective. Conditions allow you to control access based on specific attributes of the request.

Sourcetype nonrec t = {
  1. conditionOperator : PermissionConditionOperator.t;
    (*

    The operator to use for the condition evaluation. This determines how the condition values are compared.

    *)
  2. conditionKey : PermissionConditionKey.t;
    (*

    The key for the condition. This identifies the attribute that the condition applies to.

    *)
  3. conditionValues : PermissionConditionValues.t;
    (*

    The values to compare against using the specified condition operator.

    *)
}
Sourceval context_ : string
Sourceval make : conditionOperator:PermissionConditionOperator.t -> conditionKey:PermissionConditionKey.t -> conditionValues:PermissionConditionValues.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of PermissionConditionValue.t ] list | `String of PermissionConditionKey.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