Module Values_0.StringValueWhenUnsetConfigurationSource

The configuration that defines the default value of a String parameter when a value has not been set.

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 : SensitiveString.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 | `String of SensitiveString.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