Module Values.TimeSeriesSummarySource

Contains a summary of a time series (data stream).

Sourcetype nonrec t = {
  1. assetId : ID.t option;
    (*

    The ID of the asset in which the asset property was created.

    *)
  2. propertyId : ID.t option;
    (*

    The ID of the asset property, in UUID format.

    *)
  3. alias : PropertyAlias.t option;
    (*

    The alias that identifies the time series.

    *)
  4. timeSeriesId : TimeSeriesId.t option;
    (*

    The ID of the time series.

    *)
  5. dataType : PropertyDataType.t option;
    (*

    The data type of the time series. If you specify STRUCT, you must also specify dataTypeSpec to identify the type of the structure for this time series.

    *)
  6. dataTypeSpec : Name.t option;
    (*

    The data type of the structure for this time series. This parameter is required for time series that have the STRUCT data type. The options for this parameter depend on the type of the composite model in which you created the asset property that is associated with your time series. Use AWS/ALARM_STATE for alarm state in alarm composite models.

    *)
  7. timeSeriesCreationDate : Timestamp.t option;
    (*

    The date that the time series was created, in Unix epoch time.

    *)
  8. timeSeriesLastUpdateDate : Timestamp.t option;
    (*

    The date that the time series was last updated, in Unix epoch time.

    *)
  9. timeSeriesArn : ARN.t option;
    (*

    The ARN of the time series, which has the following format. arn:${Partition}:iotsitewise:${Region}:${Account}:time-series/${TimeSeriesId}

    *)
}
Sourceval make : ?assetId:??? -> ?propertyId:??? -> ?alias:??? -> ?timeSeriesId:??? -> ?dataType:??? -> ?dataTypeSpec:??? -> ?timeSeriesCreationDate:??? -> ?timeSeriesLastUpdateDate:??? -> ?timeSeriesArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ID.t | `Timestamp of Timestamp.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