interface SensorProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnSignalCatalog.SensorProperty |
Java | software.amazon.awscdk.services.iotfleetwise.CfnSignalCatalog.SensorProperty |
Python | aws_cdk.aws_iotfleetwise.CfnSignalCatalog.SensorProperty |
TypeScript | @aws-cdk/aws-iotfleetwise » CfnSignalCatalog » SensorProperty |
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 * as iotfleetwise from '@aws-cdk/aws-iotfleetwise';
const sensorProperty: iotfleetwise.CfnSignalCatalog.SensorProperty = {
dataType: 'dataType',
fullyQualifiedName: 'fullyQualifiedName',
// the properties below are optional
allowedValues: ['allowedValues'],
description: 'description',
max: 123,
min: 123,
unit: 'unit',
};
Properties
Name | Type | Description |
---|---|---|
data | string | The specified data type of the sensor. |
fully | string | The fully qualified name of the sensor. |
allowed | string[] | (Optional) A list of possible values a sensor can take. |
description? | string | (Optional) A brief description of a sensor. |
max? | number | (Optional) The specified possible maximum value of the sensor. |
min? | number | (Optional) The specified possible minimum value of the sensor. |
unit? | string | (Optional) The scientific unit of measurement for data collected by the sensor. |
dataType
Type:
string
The specified data type of the sensor.
fullyQualifiedName
Type:
string
The fully qualified name of the sensor.
For example, the fully qualified name of a sensor might be Vehicle.Body.Engine.Battery
.
allowedValues?
Type:
string[]
(optional)
(Optional) A list of possible values a sensor can take.
description?
Type:
string
(optional)
(Optional) A brief description of a sensor.
max?
Type:
number
(optional)
(Optional) The specified possible maximum value of the sensor.
min?
Type:
number
(optional)
(Optional) The specified possible minimum value of the sensor.
unit?
Type:
string
(optional)
(Optional) The scientific unit of measurement for data collected by the sensor.