aws-cdk-lib.aws_iotfleetwise.CfnVehicleProps

interface CfnVehicleProps

LanguageType name
.NETAmazon.CDK.AWS.IoTFleetWise.CfnVehicleProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnVehicleProps
Javasoftware.amazon.awscdk.services.iotfleetwise.CfnVehicleProps
Pythonaws_cdk.aws_iotfleetwise.CfnVehicleProps
TypeScript aws-cdk-lib » aws_iotfleetwise » CfnVehicleProps

Properties for defining a CfnVehicle.

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 cfnVehicleProps: iotfleetwise.CfnVehicleProps = {
  decoderManifestArn: 'decoderManifestArn',
  modelManifestArn: 'modelManifestArn',
  name: 'name',

  // the properties below are optional
  associationBehavior: 'associationBehavior',
  attributes: {
    attributesKey: 'attributes',
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
decoderManifestArnstringThe Amazon Resource Name (ARN) of a decoder manifest associated with the vehicle to create.
modelManifestArnstringThe Amazon Resource Name (ARN) of the vehicle model (model manifest) to create the vehicle from.
namestringThe unique ID of the vehicle.
associationBehavior?string(Optional) An option to create a new AWS IoT thing when creating a vehicle, or to validate an existing thing as a vehicle.
attributes?IResolvable | { [string]: string }(Optional) Static information about a vehicle in a key-value pair.
tags?CfnTag[](Optional) Metadata which can be used to manage the vehicle.

decoderManifestArn

Type: string

The Amazon Resource Name (ARN) of a decoder manifest associated with the vehicle to create.


modelManifestArn

Type: string

The Amazon Resource Name (ARN) of the vehicle model (model manifest) to create the vehicle from.


name

Type: string

The unique ID of the vehicle.


associationBehavior?

Type: string (optional)

(Optional) An option to create a new AWS IoT thing when creating a vehicle, or to validate an existing thing as a vehicle.


attributes?

Type: IResolvable | { [string]: string } (optional)

(Optional) Static information about a vehicle in a key-value pair.

For example: "engine Type" : "v6"


tags?

Type: CfnTag[] (optional)

(Optional) Metadata which can be used to manage the vehicle.