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.Actuator

Description

 
Synopsis

Documentation

data Actuator Source #

A signal that represents a vehicle device such as the engine, heater, and door locks. Data from an actuator reports the state of a certain vehicle device.

Updating actuator data can change the state of a device. For example, you can turn on or off the heater by updating its actuator data.

See: newActuator smart constructor.

Constructors

Actuator' 

Fields

Instances

Instances details
FromJSON Actuator Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Actuator

ToJSON Actuator Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Actuator

Generic Actuator Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Actuator

Associated Types

type Rep Actuator :: Type -> Type #

Methods

from :: Actuator -> Rep Actuator x #

to :: Rep Actuator x -> Actuator #

Read Actuator Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Actuator

Show Actuator Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Actuator

NFData Actuator Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Actuator

Methods

rnf :: Actuator -> () #

Eq Actuator Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Actuator

Hashable Actuator Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Actuator

Methods

hashWithSalt :: Int -> Actuator -> Int #

hash :: Actuator -> Int #

type Rep Actuator Source # 
Instance details

Defined in Amazonka.IoTFleetWise.Types.Actuator

newActuator Source #

Create a value of Actuator 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:Actuator', actuator_allowedValues - A list of possible values an actuator can take.

$sel:assignedValue:Actuator', actuator_assignedValue - A specified value for the actuator.

$sel:description:Actuator', actuator_description - A brief description of the actuator.

$sel:max:Actuator', actuator_max - The specified possible maximum value of an actuator.

$sel:min:Actuator', actuator_min - The specified possible minimum value of an actuator.

$sel:unit:Actuator', actuator_unit - The scientific unit for the actuator.

$sel:fullyQualifiedName:Actuator', actuator_fullyQualifiedName - The fully qualified name of the actuator. For example, the fully qualified name of an actuator might be Vehicle.Front.Left.Door.Lock.

$sel:dataType:Actuator', actuator_dataType - The specified data type of the actuator.

actuator_allowedValues :: Lens' Actuator (Maybe [Text]) Source #

A list of possible values an actuator can take.

actuator_assignedValue :: Lens' Actuator (Maybe Text) Source #

A specified value for the actuator.

actuator_description :: Lens' Actuator (Maybe Text) Source #

A brief description of the actuator.

actuator_max :: Lens' Actuator (Maybe Double) Source #

The specified possible maximum value of an actuator.

actuator_min :: Lens' Actuator (Maybe Double) Source #

The specified possible minimum value of an actuator.

actuator_unit :: Lens' Actuator (Maybe Text) Source #

The scientific unit for the actuator.

actuator_fullyQualifiedName :: Lens' Actuator Text Source #

The fully qualified name of the actuator. For example, the fully qualified name of an actuator might be Vehicle.Front.Left.Door.Lock.

actuator_dataType :: Lens' Actuator NodeDataType Source #

The specified data type of the actuator.