Values.EndpointSettingSourceEndpoint settings.
type nonrec t = {name : String_.t option;The name that you want to give the endpoint settings.
*)type_ : EndpointSettingTypeValue.t option;The type of endpoint. Valid values are source and target.
*)enumValues : EndpointSettingEnumValues.t option;Enumerated values to use for this endpoint.
*)sensitive : BooleanOptional.t option;A value that marks this endpoint setting as sensitive.
*)units : String_.t option;The unit of measure for this endpoint setting.
*)applicability : String_.t option;The relevance or validity of an endpoint setting for an engine name and its endpoint type.
*)intValueMin : IntegerOptional.t option;The minimum value of an endpoint setting that is of type int.
*)intValueMax : IntegerOptional.t option;The maximum value of an endpoint setting that is of type int.
*)defaultValue : String_.t option;The default value of the endpoint setting if no value is specified using CreateEndpoint or ModifyEndpoint.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanOptional.t
| `Enum of string
| `Integer of IntegerOptional.t
| `List of [> `String of String_.t ] list
| `String of String_.t ])
list ]