Class: Aws::IoTFleetWise::Types::SignalInformation
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::SignalInformation
- Defined in:
- gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb
Overview
Information about a signal.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_sample_count ⇒ Integer
The maximum number of samples to collect.
-
#minimum_sampling_interval_ms ⇒ Integer
The minimum duration of time (in milliseconds) between two triggering events to collect data.
-
#name ⇒ String
The name of the signal.
Instance Attribute Details
#max_sample_count ⇒ Integer
The maximum number of samples to collect.
3551 3552 3553 3554 3555 3556 3557 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 3551 class SignalInformation < Struct.new( :name, :max_sample_count, :minimum_sampling_interval_ms) SENSITIVE = [] include Aws::Structure end |
#minimum_sampling_interval_ms ⇒ Integer
The minimum duration of time (in milliseconds) between two triggering events to collect data.
3551 3552 3553 3554 3555 3556 3557 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 3551 class SignalInformation < Struct.new( :name, :max_sample_count, :minimum_sampling_interval_ms) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the signal.
3551 3552 3553 3554 3555 3556 3557 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 3551 class SignalInformation < Struct.new( :name, :max_sample_count, :minimum_sampling_interval_ms) SENSITIVE = [] include Aws::Structure end |