Class: Aws::IoTFleetWise::Types::TimeBasedCollectionScheme
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::TimeBasedCollectionScheme
- Defined in:
- gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb
Overview
Information about a collection scheme that uses a time period to decide how often to collect data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#period_ms ⇒ Integer
The time period (in milliseconds) to decide how often to collect data.
Instance Attribute Details
#period_ms ⇒ Integer
The time period (in milliseconds) to decide how often to collect
data. For example, if the time period is 60000
, the Edge Agent
software collects data once every minute.
3712 3713 3714 3715 3716 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 3712 class TimeBasedCollectionScheme < Struct.new( :period_ms) SENSITIVE = [] include Aws::Structure end |