amazonka-iotfleetwise-2.0: Amazon IoT FleetWise SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.IoTFleetWise.Types.Sensor

Description

 
Synopsis

Documentation

data Sensor Source #

An input component that reports the environmental condition of a vehicle.

You can collect data about fluid levels, temperatures, vibrations, or battery voltage from sensors.

See: newSensor smart constructor.

Constructors

Sensor' 

Fields

Instances

Instances details
FromJSON Sensor Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Sensor

ToJSON Sensor Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Sensor

Generic Sensor Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Sensor

Associated Types

type Rep Sensor :: Type -> Type #

Methods

from :: Sensor -> Rep Sensor x #

to :: Rep Sensor x -> Sensor #

Read Sensor Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Sensor

Show Sensor Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Sensor

NFData Sensor Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Sensor

Methods

rnf :: Sensor -> () #

Eq Sensor Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Sensor

Methods

(==) :: Sensor -> Sensor -> Bool #

(/=) :: Sensor -> Sensor -> Bool #

Hashable Sensor Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Sensor

Methods

hashWithSalt :: Int -> Sensor -> Int #

hash :: Sensor -> Int #

type Rep Sensor Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Sensor

newSensor Source #

Create a value of Sensor with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:allowedValues:Sensor', sensor_allowedValues - A list of possible values a sensor can take.

$sel:description:Sensor', sensor_description - A brief description of a sensor.

$sel:max:Sensor', sensor_max - The specified possible maximum value of the sensor.

$sel:min:Sensor', sensor_min - The specified possible minimum value of the sensor.

$sel:unit:Sensor', sensor_unit - The scientific unit of measurement for data collected by the sensor.

$sel:fullyQualifiedName:Sensor', sensor_fullyQualifiedName - The fully qualified name of the sensor. For example, the fully qualified name of a sensor might be Vehicle.Body.Engine.Battery.

$sel:dataType:Sensor', sensor_dataType - The specified data type of the sensor.

sensor_allowedValues :: Lens' Sensor (Maybe [Text]) Source #

A list of possible values a sensor can take.

sensor_description :: Lens' Sensor (Maybe Text) Source #

A brief description of a sensor.

sensor_max :: Lens' Sensor (Maybe Double) Source #

The specified possible maximum value of the sensor.

sensor_min :: Lens' Sensor (Maybe Double) Source #

The specified possible minimum value of the sensor.

sensor_unit :: Lens' Sensor (Maybe Text) Source #

The scientific unit of measurement for data collected by the sensor.

sensor_fullyQualifiedName :: Lens' Sensor Text Source #

The fully qualified name of the sensor. For example, the fully qualified name of a sensor might be Vehicle.Body.Engine.Battery.

sensor_dataType :: Lens' Sensor NodeDataType Source #

The specified data type of the sensor.