interface AttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTFleetWise.CfnSignalCatalogPropsMixin.AttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotfleetwise#CfnSignalCatalogPropsMixin_AttributeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotfleetwise.CfnSignalCatalogPropsMixin.AttributeProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotfleetwise.CfnSignalCatalogPropsMixin.AttributeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotfleetwise » 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 { aws_iotfleetwise as iotfleetwise } from '@aws-cdk/cfn-property-mixins';
const attributeProperty: iotfleetwise.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