CfnModelManifestProps

class aws_cdk.aws_iotfleetwise.CfnModelManifestProps(*, name, signal_catalog_arn, description=None, nodes=None, status=None, tags=None)

Bases: object

Properties 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]) – (Optional) A brief description of the vehicle model.

  • nodes (Optional[Sequence[str]]) – (Optional) A list of nodes, which are a general abstraction of signals.

  • status (Optional[str]) – (Optional) The state of the vehicle model. If the status is ACTIVE , the vehicle model can’t be edited. If the status is DRAFT , you can edit the vehicle model.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – (Optional) Metadata that can be used to manage the vehicle model.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.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

(Optional) A brief description of the vehicle model.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-description

name

The name of the vehicle model.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-name

nodes

(Optional) A list of nodes, which are a general abstraction of signals.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-nodes

signal_catalog_arn

The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-signalcatalogarn

status

(Optional) The state of the vehicle model.

If the status is ACTIVE , the vehicle model can’t be edited. If the status is DRAFT , you can edit the vehicle model.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-status

tags

(Optional) Metadata that can be used to manage the vehicle model.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-tags