interface CfnSignalCatalogMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnSignalCatalogMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnSignalCatalogMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnSignalCatalogMixinProps |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnSignalCatalogMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnSignalCatalogMixinProps |
Properties for CfnSignalCatalogPropsMixin.
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 cfnSignalCatalogMixinProps: iotfleetwise_mixins.CfnSignalCatalogMixinProps = {
description: 'description',
name: 'name',
nodeCounts: {
totalActuators: 123,
totalAttributes: 123,
totalBranches: 123,
totalNodes: 123,
totalSensors: 123,
},
nodes: [{
actuator: {
allowedValues: ['allowedValues'],
assignedValue: 'assignedValue',
dataType: 'dataType',
description: 'description',
fullyQualifiedName: 'fullyQualifiedName',
max: 123,
min: 123,
unit: 'unit',
},
attribute: {
allowedValues: ['allowedValues'],
assignedValue: 'assignedValue',
dataType: 'dataType',
defaultValue: 'defaultValue',
description: 'description',
fullyQualifiedName: 'fullyQualifiedName',
max: 123,
min: 123,
unit: 'unit',
},
branch: {
description: 'description',
fullyQualifiedName: 'fullyQualifiedName',
},
sensor: {
allowedValues: ['allowedValues'],
dataType: 'dataType',
description: 'description',
fullyQualifiedName: 'fullyQualifiedName',
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.

.NET
Go
Java
Python
TypeScript