/AWS1/CL_IOSENRCHMNTTRIMSTGS¶
Time range settings for extracting a specific window of video time-series data to process.
Trim settings define the time bounds for enrichment and must satisfy:
- Start and end times must be within the dataset's time bounds
- Trim settings retrieve fully contained data segments within the specified time range
- endTime must be greater than startTime
- Both times should represent valid data ranges in the dataset
Trim settings are required to:
- Prevent accidentally analyzing unbounded datasets
- Ensure predictable processing time and costs
- Allow focused analysis on specific time periods of interest
CONSTRUCTOR¶
IMPORTING¶
Required arguments:¶
io_starttime TYPE REF TO /AWS1/CL_IOSTIMEINNANOS /AWS1/CL_IOSTIMEINNANOS¶
Start time for the video analysis time range in nanoseconds since Unix epoch (TimeInNanos format). Data segments at or after this time are included in the enrichment. Must be within the dataset's time bounds.
Example (JavaScript): Date.parse('2024-01-01T00:00:00Z') * 1000000 Example (Python): int(datetime.timestamp() * 1e9)
io_endtime TYPE REF TO /AWS1/CL_IOSTIMEINNANOS /AWS1/CL_IOSTIMEINNANOS¶
End time for the video analysis time range in nanoseconds since Unix epoch (TimeInNanos format). Data segments at or before this time are included in the enrichment. Must be greater than startTime and within the dataset's time bounds.
Queryable Attributes¶
startTime¶
Start time for the video analysis time range in nanoseconds since Unix epoch (TimeInNanos format). Data segments at or after this time are included in the enrichment. Must be within the dataset's time bounds.
Example (JavaScript): Date.parse('2024-01-01T00:00:00Z') * 1000000 Example (Python): int(datetime.timestamp() * 1e9)
Accessible with the following methods¶
| Method | Description |
|---|---|
GET_STARTTIME() |
Getter for STARTTIME |
endTime¶
End time for the video analysis time range in nanoseconds since Unix epoch (TimeInNanos format). Data segments at or before this time are included in the enrichment. Must be greater than startTime and within the dataset's time bounds.
Accessible with the following methods¶
| Method | Description |
|---|---|
GET_ENDTIME() |
Getter for ENDTIME |