CfnModelManifestMixinProps
- class aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnModelManifestMixinProps(*, description=None, name=None, nodes=None, signal_catalog_arn=None, status=None, tags=None)
Bases:
objectProperties for CfnModelManifestPropsMixin.
- Parameters:
description (
Optional[str]) – A brief description of the vehicle model.name (
Optional[str]) – The name of the vehicle model.nodes (
Optional[Sequence[str]]) – A list of nodes, which are a general abstraction of signals.signal_catalog_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model.status (
Optional[str]) – The state of the vehicle model. If the status isACTIVE, the vehicle model can’t be edited. If the status isDRAFT, you can edit the vehicle model. Default: - “DRAFT”tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Metadata that can be used to manage the vehicle model.
- 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_model_manifest_mixin_props = iotfleetwise_mixins.CfnModelManifestMixinProps( description="description", name="name", nodes=["nodes"], signal_catalog_arn="signalCatalogArn", status="status", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A brief description of the vehicle model.
- name
The name of the vehicle model.
- nodes
A list of nodes, which are a general abstraction of signals.
- signal_catalog_arn
The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model.
- status
The state of the vehicle model.
If the status is
ACTIVE, the vehicle model can’t be edited. If the status isDRAFT, you can edit the vehicle model.
- tags
Metadata that can be used to manage the vehicle model.