interface AttributeProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.IoTFleetWise.CfnSignalCatalog.AttributeProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnSignalCatalog_AttributeProperty |
![]() | software.amazon.awscdk.services.iotfleetwise.CfnSignalCatalog.AttributeProperty |
![]() | aws_cdk.aws_iotfleetwise.CfnSignalCatalog.AttributeProperty |
![]() | aws-cdk-lib » aws_iotfleetwise » CfnSignalCatalog » AttributeProperty |
A signal that represents static information about the vehicle, such as engine type or manufacturing date.
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 attributeProperty: iotfleetwise.CfnSignalCatalog.AttributeProperty = {
dataType: 'dataType',
fullyQualifiedName: 'fullyQualifiedName',
// the properties below are optional
allowedValues: ['allowedValues'],
assignedValue: 'assignedValue',
defaultValue: 'defaultValue',
description: 'description',
max: 123,
min: 123,
unit: 'unit',
};
Properties
Name | Type | Description |
---|---|---|
data | string | The specified data type of the attribute. |
fully | string | The fully qualified name of the attribute. |
allowed | string[] | A list of possible values an attribute can be assigned. |
assigned | string | A specified value for the attribute. |
default | string | The default value of the attribute. |
description? | string | A brief description of the attribute. |
max? | number | The specified possible maximum value of the attribute. |
min? | number | The specified possible minimum value of the attribute. |
unit? | string | The scientific unit for the attribute. |
dataType
Type:
string
The specified data type of the attribute.
fullyQualifiedName
Type:
string
The fully qualified name of the attribute.
For example, the fully qualified name of an attribute might be Vehicle.Body.Engine.Type
.
allowedValues?
Type:
string[]
(optional)
A list of possible values an attribute can be assigned.
assignedValue?
Type:
string
(optional)
A specified value for the attribute.
defaultValue?
Type:
string
(optional)
The default value of the attribute.
description?
Type:
string
(optional)
A brief description of the attribute.
max?
Type:
number
(optional)
The specified possible maximum value of the attribute.
min?
Type:
number
(optional)
The specified possible minimum value of the attribute.
unit?
Type:
string
(optional)
The scientific unit for the attribute.