CfnSignalCatalogMixinProps
- class aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnSignalCatalogMixinProps(*, description=None, name=None, node_counts=None, nodes=None, tags=None)
Bases:
objectProperties for CfnSignalCatalogPropsMixin.
- Parameters:
description (
Optional[str]) – A brief description of the signal catalog.name (
Optional[str]) – The name of the signal catalog.node_counts (
Union[IResolvable,NodeCountsProperty,Dict[str,Any],None]) – Information about the number of nodes and node types in a vehicle network.nodes (
Union[IResolvable,Sequence[Union[IResolvable,NodeProperty,Dict[str,Any]]],None]) – A list of information about nodes, which are a general abstraction of signals.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Metadata that can be used to manage the signal catalog.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_iotfleetwise import mixins as iotfleetwise_mixins cfn_signal_catalog_mixin_props = iotfleetwise_mixins.CfnSignalCatalogMixinProps( description="description", name="name", node_counts=iotfleetwise_mixins.CfnSignalCatalogPropsMixin.NodeCountsProperty( total_actuators=123, total_attributes=123, total_branches=123, total_nodes=123, total_sensors=123 ), nodes=[iotfleetwise_mixins.CfnSignalCatalogPropsMixin.NodeProperty( actuator=iotfleetwise_mixins.CfnSignalCatalogPropsMixin.ActuatorProperty( allowed_values=["allowedValues"], assigned_value="assignedValue", data_type="dataType", description="description", fully_qualified_name="fullyQualifiedName", max=123, min=123, unit="unit" ), attribute=iotfleetwise_mixins.CfnSignalCatalogPropsMixin.AttributeProperty( allowed_values=["allowedValues"], assigned_value="assignedValue", data_type="dataType", default_value="defaultValue", description="description", fully_qualified_name="fullyQualifiedName", max=123, min=123, unit="unit" ), branch=iotfleetwise_mixins.CfnSignalCatalogPropsMixin.BranchProperty( description="description", fully_qualified_name="fullyQualifiedName" ), sensor=iotfleetwise_mixins.CfnSignalCatalogPropsMixin.SensorProperty( allowed_values=["allowedValues"], data_type="dataType", description="description", fully_qualified_name="fullyQualifiedName", max=123, min=123, unit="unit" ) )], tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A brief description of the signal catalog.
- name
The name of the signal catalog.
- node_counts
Information about the number of nodes and node types in a vehicle network.
- nodes
A list of information about nodes, which are a general abstraction of signals.
- tags
Metadata that can be used to manage the signal catalog.