interface CfnModelManifestProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnModelManifestProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnModelManifestProps |
Java | software.amazon.awscdk.services.iotfleetwise.CfnModelManifestProps |
Python | aws_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
| Name | Type | Description |
|---|---|---|
| name | string | The name of the vehicle model. |
| signal | string | The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model. |
| description? | string | A brief description of the vehicle model. |
| nodes? | string[] | A list of nodes, which are a general abstraction of signals. |
| status? | string | The state of the vehicle model. |
| tags? | Cfn[] | 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)
A brief description of the vehicle model.
nodes?
Type:
string[]
(optional)
A list of nodes, which are a general abstraction of signals.
status?
Type:
string
(optional, default: "DRAFT")
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:
Cfn[]
(optional)
Metadata that can be used to manage the vehicle model.

.NET
Go
Java
Python
TypeScript