Class: Aws::IoTFleetWise::Types::SignalFetchConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-iotfleetwise/types.rb

Overview

Note:

SignalFetchConfig is a union - when making an API calls you must set exactly one of the members.

Note:

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

ConditionBased, TimeBased, Unknown

Defined Under Namespace

Classes: ConditionBased, TimeBased, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#condition_basedTypes::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_basedTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4113
4114
4115
# File 'lib/aws-sdk-iotfleetwise/types.rb', line 4113

def unknown
  @unknown
end