aws-cdk-lib.aws_iotfleetwise.CfnSignalCatalog.ActuatorProperty

interface ActuatorProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTFleetWise.CfnSignalCatalog.ActuatorProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnSignalCatalog_ActuatorProperty
Javasoftware.amazon.awscdk.services.iotfleetwise.CfnSignalCatalog.ActuatorProperty
Pythonaws_cdk.aws_iotfleetwise.CfnSignalCatalog.ActuatorProperty
TypeScript aws-cdk-lib » aws_iotfleetwise » CfnSignalCatalog » ActuatorProperty

A signal that represents a vehicle device such as the engine, heater, and door locks.

Data from an actuator reports the state of a certain vehicle device.

Updating actuator data can change the state of a device. For example, you can turn on or off the heater by updating its actuator data.

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 actuatorProperty: iotfleetwise.CfnSignalCatalog.ActuatorProperty = {
  dataType: 'dataType',
  fullyQualifiedName: 'fullyQualifiedName',

  // the properties below are optional
  allowedValues: ['allowedValues'],
  assignedValue: 'assignedValue',
  description: 'description',
  max: 123,
  min: 123,
  unit: 'unit',
};

Properties

NameTypeDescription
dataTypestringThe specified data type of the actuator.
fullyQualifiedNamestringThe fully qualified name of the actuator.
allowedValues?string[](Optional) A list of possible values an actuator can take.
assignedValue?string(Optional) A specified value for the actuator.
description?string(Optional) A brief description of the actuator.
max?number(Optional) The specified possible maximum value of an actuator.
min?number(Optional) The specified possible minimum value of an actuator.
unit?string(Optional) The scientific unit for the actuator.

dataType

Type: string

The specified data type of the actuator.


fullyQualifiedName

Type: string

The fully qualified name of the actuator.

For example, the fully qualified name of an actuator might be Vehicle.Front.Left.Door.Lock .


allowedValues?

Type: string[] (optional)

(Optional) A list of possible values an actuator can take.


assignedValue?

Type: string (optional)

(Optional) A specified value for the actuator.


description?

Type: string (optional)

(Optional) A brief description of the actuator.


max?

Type: number (optional)

(Optional) The specified possible maximum value of an actuator.


min?

Type: number (optional)

(Optional) The specified possible minimum value of an actuator.


unit?

Type: string (optional)

(Optional) The scientific unit for the actuator.