Module Values_0.DateTimeParameterDeclarationSource

A parameter declaration for the DateTime data type.

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

    The name of the parameter that is being declared.

    *)
  2. defaultValues : DateTimeDefaultValues.t option;
    (*

    The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.

    *)
  3. timeGranularity : TimeGranularity.t option;
    (*

    The level of time precision that is used to aggregate DateTime values.

    *)
  4. valueWhenUnset : DateTimeValueWhenUnsetConfiguration.t option;
    (*

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

    *)
  5. mappedDataSetParameters : MappedDataSetParameters.t option;
}
Sourceval context_ : string
Sourceval make : ?defaultValues:??? -> ?timeGranularity:??? -> ?valueWhenUnset:??? -> ?mappedDataSetParameters:??? -> name:ParameterName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of DataSetIdentifier.t ]) list ] list | `String of ParameterName.t | `Structure of (string * [> `Enum of string | `List of [> `Timestamp of SensitiveTimestamp.t ] list | `Structure of (string * [> `String of DataSetIdentifier.t | `Structure of (string * [> `String of DataSetIdentifier.t ]) list ]) list | `Timestamp of SensitiveTimestamp.t ]) list ]) 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