CfnModelManifestProps
- class aws_cdk.aws_iotfleetwise.CfnModelManifestProps(*, name, signal_catalog_arn, description=None, nodes=None, status=None, tags=None)
Bases:
objectProperties for defining a
CfnModelManifest.- Parameters:
name (
str) – The name of the vehicle model.signal_catalog_arn (
str) – The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model.description (
Optional[str]) – A brief description of the vehicle model.nodes (
Optional[Sequence[str]]) – A list of nodes, which are a general abstraction of signals.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 import aws_iotfleetwise as iotfleetwise cfn_model_manifest_props = iotfleetwise.CfnModelManifestProps( name="name", signal_catalog_arn="signalCatalogArn", # the properties below are optional description="description", nodes=["nodes"], 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.