Module Values.PipeTargetTimestreamParametersSource

The parameters for using a Timestream for LiveAnalytics table as a target.

Sourcetype nonrec t = {
  1. timeValue : TimeValue.t;
    (*

    Dynamic path to the source data field that represents the time value for your data.

    *)
  2. epochTimeUnit : EpochTimeUnit.t option;
    (*

    The granularity of the time units used. Default is MILLISECONDS. Required if TimeFieldType is specified as EPOCH.

    *)
  3. timeFieldType : TimeFieldType.t option;
    (*

    The type of time value used. The default is EPOCH.

    *)
  4. timestampFormat : TimestampFormat.t option;
    (*

    How to format the timestamps. For example, yyyy-MM-dd'T'HH:mm:ss'Z'. Required if TimeFieldType is specified as TIMESTAMP_FORMAT.

    *)
  5. versionValue : VersionValue.t;
    (*

    64 bit version value or source data field that represents the version value for your data. Write requests with a higher version number will update the existing measure values of the record and version. In cases where the measure value is the same, the version will still be updated. Default value is 1. Timestream for LiveAnalytics does not support updating partial measure values in a record. Write requests for duplicate data with a higher version number will update the existing measure value and version. In cases where the measure value is the same, Version will still be updated. Default value is 1. Version must be 1 or greater, or you will receive a ValidationException error.

    *)
  6. dimensionMappings : DimensionMappings.t;
    (*

    Map source data to dimensions in the target Timestream for LiveAnalytics table. For more information, see Amazon Timestream for LiveAnalytics concepts

    *)
  7. singleMeasureMappings : SingleMeasureMappings.t option;
    (*

    Mappings of single source data fields to individual records in the specified Timestream for LiveAnalytics table.

    *)
  8. multiMeasureMappings : MultiMeasureMappings.t option;
    (*

    Maps multiple measures from the source event to the same record in the specified Timestream for LiveAnalytics table.

    *)
}
Sourceval context_ : string
Sourceval make : ?epochTimeUnit:??? -> ?timeFieldType:??? -> ?timestampFormat:??? -> ?singleMeasureMappings:??? -> ?multiMeasureMappings:??? -> timeValue:TimeValue.t -> versionValue:VersionValue.t -> dimensionMappings:DimensionMappings.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of MeasureValue.t ]) list ] list | `String of DimensionValue.t ]) list ] list | `String of TimeValue.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