Interface CfnSignalCatalog.SensorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSignalCatalog.SensorProperty.Jsii$Proxy
Enclosing class:
CfnSignalCatalog

@Stability(Stable) public static interface CfnSignalCatalog.SensorProperty extends software.amazon.jsii.JsiiSerializable
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.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iotfleetwise.*;
 SensorProperty sensorProperty = SensorProperty.builder()
         .dataType("dataType")
         .fullyQualifiedName("fullyQualifiedName")
         // the properties below are optional
         .allowedValues(List.of("allowedValues"))
         .description("description")
         .max(123)
         .min(123)
         .unit("unit")
         .build();
 

See Also: