Class: Aws::IoTFleetWise::Types::SignalFetchConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::SignalFetchConfig
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-iotfleetwise/types.rb
Overview
SignalFetchConfig is a union - when making an API calls you must set exactly one of the members.
SignalFetchConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SignalFetchConfig corresponding to the set member.
The configuration of the signal fetch operation.
Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see [Amazon Web Services Region and feature availability] in the *Amazon Web Services IoT FleetWise Developer Guide*.
[1]: docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html
Direct Known Subclasses
Defined Under Namespace
Classes: ConditionBased, TimeBased, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#condition_based ⇒ Types::ConditionBasedSignalFetchConfig
The configuration of a condition-based signal fetch operation.
-
#time_based ⇒ Types::TimeBasedSignalFetchConfig
The configuration of a time-based signal fetch operation.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#condition_based ⇒ Types::ConditionBasedSignalFetchConfig
The configuration of a condition-based signal fetch operation.
4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 4113 class SignalFetchConfig < Struct.new( :time_based, :condition_based, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class TimeBased < SignalFetchConfig; end class ConditionBased < SignalFetchConfig; end class Unknown < SignalFetchConfig; end end |
#time_based ⇒ Types::TimeBasedSignalFetchConfig
The configuration of a time-based signal fetch operation.
4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 4113 class SignalFetchConfig < Struct.new( :time_based, :condition_based, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class TimeBased < SignalFetchConfig; end class ConditionBased < SignalFetchConfig; end class Unknown < SignalFetchConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4113 4114 4115 |
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 4113 def unknown @unknown end |