Class: Aws::IoTFleetWise::Types::TimeBasedCollectionScheme
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::TimeBasedCollectionScheme
- Includes:
- Structure
- Defined in:
- 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.
4553 4554 4555 4556 4557 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 4553 class TimeBasedCollectionScheme < Struct.new( :period_ms) SENSITIVE = [] include Aws::Structure end |