aws-cdk-lib.aws_iotfleetwise.CfnModelManifestProps

interface CfnModelManifestProps

LanguageType name
.NETAmazon.CDK.AWS.IoTFleetWise.CfnModelManifestProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnModelManifestProps
Javasoftware.amazon.awscdk.services.iotfleetwise.CfnModelManifestProps
Pythonaws_cdk.aws_iotfleetwise.CfnModelManifestProps
TypeScript aws-cdk-lib » aws_iotfleetwise » CfnModelManifestProps

Properties for defining a CfnModelManifest.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
const cfnModelManifestProps: iotfleetwise.CfnModelManifestProps = {
  name: 'name',
  signalCatalogArn: 'signalCatalogArn',

  // the properties below are optional
  description: 'description',
  nodes: ['nodes'],
  status: 'status',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
namestringThe name of the vehicle model.
signalCatalogArnstringThe Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model.
description?string(Optional) A brief description of the vehicle model.
nodes?string[](Optional) A list of nodes, which are a general abstraction of signals.
status?string(Optional) The state of the vehicle model.
tags?CfnTag[](Optional) Metadata that can be used to manage the vehicle model.

name

Type: string

The name of the vehicle model.


signalCatalogArn

Type: string

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


description?

Type: string (optional)

(Optional) A brief description of the vehicle model.


nodes?

Type: string[] (optional)

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


status?

Type: string (optional)

(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?

Type: CfnTag[] (optional)

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