interface ModelManifestReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTFleetWise.ModelManifestReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiotfleetwise#ModelManifestReference |
Java | software.amazon.awscdk.interfaces.iotfleetwise.ModelManifestReference |
Python | aws_cdk.interfaces.aws_iotfleetwise.ModelManifestReference |
TypeScript | aws-cdk-lib » interfaces » aws_iotfleetwise » ModelManifestReference |
A reference to a ModelManifest resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotfleetwise as interfaces_aws_iotfleetwise } from 'aws-cdk-lib/interfaces';
const modelManifestReference: interfaces_aws_iotfleetwise.ModelManifestReference = {
modelManifestArn: 'modelManifestArn',
modelManifestName: 'modelManifestName',
};
Properties
| Name | Type | Description |
|---|---|---|
| model | string | The ARN of the ModelManifest resource. |
| model | string | The Name of the ModelManifest resource. |
modelManifestArn
Type:
string
The ARN of the ModelManifest resource.
modelManifestName
Type:
string
The Name of the ModelManifest resource.

.NET
Go
Java
Python
TypeScript