Module Values.PolicyParameterSource

Contains information about a policy parameter used to customize delegated permissions.

Sourcetype nonrec t = {
  1. name : PolicyParameterNameType.t option;
    (*

    The name of the policy parameter.

    *)
  2. values : PolicyParameterValuesListType.t option;
    (*

    The allowed values for the policy parameter.

    *)
  3. type_ : PolicyParameterTypeEnum.t option;
    (*

    The data type of the policy parameter value.

    *)
}
Sourceval make : ?name:??? -> ?values:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of PolicyParameterValueType.t ] list | `String of PolicyParameterNameType.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