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

.NET
Go
Java
Python
TypeScript