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.
4618 4619 4620 4621 4622 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 4618 class TimeBasedCollectionScheme < Struct.new( :period_ms) SENSITIVE = [] include Aws::Structure end |