interface CfnModelManifestMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnModelManifestMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnModelManifestMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnModelManifestMixinProps |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnModelManifestMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnModelManifestMixinProps |
Properties for CfnModelManifestPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const cfnModelManifestMixinProps: iotfleetwise_mixins.CfnModelManifestMixinProps = {
description: 'description',
name: 'name',
nodes: ['nodes'],
signalCatalogArn: 'signalCatalogArn',
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A brief description of the vehicle model. |
| name? | string | The name of the vehicle model. |
| nodes? | string[] | A list of nodes, which are a general abstraction of signals. |
| signal | string | The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model. |
| status? | string | The state of the vehicle model. |
| tags? | Cfn[] | Metadata that can be used to manage the vehicle model. |
description?
Type:
string
(optional)
A brief description of the vehicle model.
name?
Type:
string
(optional)
The name of the vehicle model.
nodes?
Type:
string[]
(optional)
A list of nodes, which are a general abstraction of signals.
signalCatalogArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model.
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