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

.NET
Go
Java
Python
TypeScript