interface CfnSignalCatalogProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.IoTFleetWise.CfnSignalCatalogProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnSignalCatalogProps |
![]() | software.amazon.awscdk.services.iotfleetwise.CfnSignalCatalogProps |
![]() | aws_cdk.aws_iotfleetwise.CfnSignalCatalogProps |
![]() | aws-cdk-lib » aws_iotfleetwise » CfnSignalCatalogProps |
Properties for defining a CfnSignalCatalog
.
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 cfnSignalCatalogProps: iotfleetwise.CfnSignalCatalogProps = {
description: 'description',
name: 'name',
nodeCounts: {
totalActuators: 123,
totalAttributes: 123,
totalBranches: 123,
totalNodes: 123,
totalSensors: 123,
},
nodes: [{
actuator: {
dataType: 'dataType',
fullyQualifiedName: 'fullyQualifiedName',
// the properties below are optional
allowedValues: ['allowedValues'],
assignedValue: 'assignedValue',
description: 'description',
max: 123,
min: 123,
unit: 'unit',
},
attribute: {
dataType: 'dataType',
fullyQualifiedName: 'fullyQualifiedName',
// the properties below are optional
allowedValues: ['allowedValues'],
assignedValue: 'assignedValue',
defaultValue: 'defaultValue',
description: 'description',
max: 123,
min: 123,
unit: 'unit',
},
branch: {
fullyQualifiedName: 'fullyQualifiedName',
// the properties below are optional
description: 'description',
},
sensor: {
dataType: 'dataType',
fullyQualifiedName: 'fullyQualifiedName',
// the properties below are optional
allowedValues: ['allowedValues'],
description: 'description',
max: 123,
min: 123,
unit: 'unit',
},
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
description? | string | A brief description of the signal catalog. |
name? | string | The name of the signal catalog. |
node | IResolvable | Node | Information about the number of nodes and node types in a vehicle network. |
nodes? | IResolvable | IResolvable | Node [] | A list of information about nodes, which are a general abstraction of signals. |
tags? | Cfn [] | Metadata that can be used to manage the signal catalog. |
description?
Type:
string
(optional)
A brief description of the signal catalog.
name?
Type:
string
(optional)
The name of the signal catalog.
nodeCounts?
Type:
IResolvable
|
Node
(optional)
Information about the number of nodes and node types in a vehicle network.
nodes?
Type:
IResolvable
|
IResolvable
|
Node
[]
(optional)
A list of information about nodes, which are a general abstraction of signals.
tags?
Type:
Cfn
[]
(optional)
Metadata that can be used to manage the signal catalog.