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: object

Properties 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 is ACTIVE , the vehicle model can’t be edited. If the status is DRAFT , 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:

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.
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.

See:

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

name

The name of the vehicle model.

See:

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

nodes

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

See:

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.

See:

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

status

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.

Default:
  • “DRAFT”

See:

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

tags

Metadata that can be used to manage the vehicle model.

See:

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