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

.NET
Go
Java
Python
TypeScript