Values.DatasetParameterSourceRepresents a dataset parameter that defines type and conditions for a parameter in the Amazon S3 path of the dataset.
type nonrec t = {name : PathParameterName.t;The name of the parameter that is used in the dataset's Amazon S3 path.
*)type_ : ParameterType.t;The type of the dataset parameter, can be one of a 'String', 'Number' or 'Datetime'.
*)datetimeOptions : DatetimeOptions.t option;Additional parameter options such as a format and a timezone. Required for datetime parameters.
*)createColumn : CreateColumn.t option;Optional boolean value that defines whether the captured value of this parameter should be used to create a new column in a dataset.
*)filter : FilterExpression.t option;The optional filter expression structure to apply additional matching criteria to the parameter.
*)}val make :
?datetimeOptions:??? ->
?createColumn:??? ->
?filter:??? ->
name:PathParameterName.t ->
type_:ParameterType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of CreateColumn.t
| `Enum of string
| `String of PathParameterName.t
| `Structure of
(string
* [> `Map of
([> `String of ValueReference.t ]
* [> `String of ConditionValue.t ])
list
| `String of DatetimeFormat.t ])
list ])
list ]