Module Values_1.ConfigurationObjectSource

Specifies the values that an admin sets for each job or session parameter configured in a Glue usage profile.

Sourcetype nonrec t = {
  1. defaultValue : Values_0.ConfigValueString.t option;
    (*

    A default value for the parameter.

    *)
  2. allowedValues : Values_0.AllowedValuesStringList.t option;
    (*

    A list of allowed values for the parameter.

    *)
  3. minValue : Values_0.ConfigValueString.t option;
    (*

    A minimum allowed value for the parameter.

    *)
  4. maxValue : Values_0.ConfigValueString.t option;
    (*

    A maximum allowed value for the parameter.

    *)
}
Sourceval make : ?defaultValue:??? -> ?allowedValues:??? -> ?minValue:??? -> ?maxValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string ] list | `String of Values_0.ConfigValueString.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