Module Values.SdkConfigurationPropertySource

A configuration property of an SDK type.

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

    The name of a an SdkType configuration property.

    *)
  2. friendlyName : String_.t option;
    (*

    The user-friendly name of an SdkType configuration property.

    *)
  3. description : String_.t option;
    (*

    The description of an SdkType configuration property.

    *)
  4. required : Boolean.t option;
    (*

    A boolean flag of an SdkType configuration property to indicate if the associated SDK configuration property is required (true) or not (false).

    *)
  5. defaultValue : String_.t option;
    (*

    The default value of an SdkType configuration property.

    *)
}
Sourceval make : ?name:??? -> ?friendlyName:??? -> ?description:??? -> ?required:??? -> ?defaultValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.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