interface AttributeProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnSignalCatalog.AttributeProperty |
Java | software.amazon.awscdk.services.iotfleetwise.CfnSignalCatalog.AttributeProperty |
Python | aws_cdk.aws_iotfleetwise.CfnSignalCatalog.AttributeProperty |
TypeScript | @aws-cdk/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 * as iotfleetwise from '@aws-cdk/aws-iotfleetwise';
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[] | (Optional) A list of possible values an attribute can be assigned. |
assigned | string | (Optional) A specified value for the attribute. |
default | string | (Optional) The default value of the attribute. |
description? | string | (Optional) A brief description of the attribute. |
max? | number | (Optional) The specified possible maximum value of the attribute. |
min? | number | (Optional) The specified possible minimum value of the attribute. |
unit? | string | (Optional) 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)
(Optional) A list of possible values an attribute can be assigned.
assignedValue?
Type:
string
(optional)
(Optional) A specified value for the attribute.
defaultValue?
Type:
string
(optional)
(Optional) The default value of the attribute.
description?
Type:
string
(optional)
(Optional) A brief description of the attribute.
max?
Type:
number
(optional)
(Optional) The specified possible maximum value of the attribute.
min?
Type:
number
(optional)
(Optional) The specified possible minimum value of the attribute.
unit?
Type:
string
(optional)
(Optional) The scientific unit for the attribute.