Module Values_0.IntegerValueWhenUnsetConfigurationSource

A parameter declaration for the Integer data type. This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

Sourcetype nonrec t = {
  1. valueWhenUnsetOption : ValueWhenUnsetOption.t option;
    (*

    The built-in options for default values. The value can be one of the following: RECOMMENDED: The recommended value. NULL: The NULL value.

    *)
  2. customValue : SensitiveLong.t option;
    (*

    A custom value that's used when the value of a parameter isn't set.

    *)
}
Sourceval make : ?valueWhenUnsetOption:??? -> ?customValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of SensitiveLong.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