Interface CfnSignalCatalogPropsMixin.SensorProperty

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

@Stability(Stable) public static interface CfnSignalCatalogPropsMixin.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.cfnpropertymixins.services.iotfleetwise.*;
 SensorProperty sensorProperty = SensorProperty.builder()
         .allowedValues(List.of("allowedValues"))
         .dataType("dataType")
         .description("description")
         .fullyQualifiedName("fullyQualifiedName")
         .max(123)
         .min(123)
         .unit("unit")
         .build();
 

See Also: