interface CfnModelManifestProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnModelManifestProps |
Java | software.amazon.awscdk.services.iotfleetwise.CfnModelManifestProps |
Python | aws_cdk.aws_iotfleetwise.CfnModelManifestProps |
TypeScript | @aws-cdk/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 * as iotfleetwise from '@aws-cdk/aws-iotfleetwise';
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 | (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? | Cfn[] | (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:
Cfn[]
(optional)
(Optional) Metadata that can be used to manage the vehicle model.

.NET
Java
Python
TypeScript