aws-cdk-lib.aws_iotfleetwise.CfnSignalCatalog.SensorProperty

interface SensorProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTFleetWise.CfnSignalCatalog.SensorProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnSignalCatalog_SensorProperty
Javasoftware.amazon.awscdk.services.iotfleetwise.CfnSignalCatalog.SensorProperty
Pythonaws_cdk.aws_iotfleetwise.CfnSignalCatalog.SensorProperty
TypeScript aws-cdk-lib » 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 { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
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

NameTypeDescription
dataTypestringThe specified data type of the sensor.
fullyQualifiedNamestringThe fully qualified name of the sensor.
allowedValues?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.