aws-cdk-lib.aws_iotfleetwise.CfnSignalCatalog.AttributeProperty

interface AttributeProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTFleetWise.CfnSignalCatalog.AttributeProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnSignalCatalog_AttributeProperty
Javasoftware.amazon.awscdk.services.iotfleetwise.CfnSignalCatalog.AttributeProperty
Pythonaws_cdk.aws_iotfleetwise.CfnSignalCatalog.AttributeProperty
TypeScript 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

NameTypeDescription
dataTypestringThe specified data type of the attribute.
fullyQualifiedNamestringThe fully qualified name of the attribute.
allowedValues?string[](Optional) A list of possible values an attribute can be assigned.
assignedValue?string(Optional) A specified value for the attribute.
defaultValue?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.