interface VehicleReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTFleetWise.VehicleReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiotfleetwise#VehicleReference |
Java | software.amazon.awscdk.interfaces.iotfleetwise.VehicleReference |
Python | aws_cdk.interfaces.aws_iotfleetwise.VehicleReference |
TypeScript | aws-cdk-lib » interfaces » aws_iotfleetwise » VehicleReference |
A reference to a Vehicle 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_iotfleetwise } from 'aws-cdk-lib/interfaces';
const vehicleReference: interfaces_iotfleetwise.VehicleReference = {
vehicleArn: 'vehicleArn',
vehicleName: 'vehicleName',
};
Properties
| Name | Type | Description |
|---|---|---|
| vehicle | string | The ARN of the Vehicle resource. |
| vehicle | string | The Name of the Vehicle resource. |
vehicleArn
Type:
string
The ARN of the Vehicle resource.
vehicleName
Type:
string
The Name of the Vehicle resource.

.NET
Go
Java
Python
TypeScript