L2 CDK construct to provision AWS IoT Fleetwise
Project description
cdk-aws-iotfleetwise
L2 CDK construct to provision AWS IoT Fleetwise
Install
Typescript
npm install cdk-aws-iotfleetwise
Python
pip install cdk-aws-iotfleetwise
Sample
import { SignalCatalog,
VehicleModel,
Vehicle,
Campaign,
CanVehicleInterface,
CanVehicleSignal,
SignalCatalogBranch,
TimeBasedCollectionScheme
} from 'cdk-aws-iotfleetwise';
const signalCatalog = new SignalCatalog(stack, 'SignalCatalog', {
database,
table,
role,
nodes: [
new SignalCatalogBranch('Vehicle'),
new SignalCatalogSensor('Vehicle.EngineTorque', 'DOUBLE'),
],
});
const model_a = new VehicleModel(stack, 'ModelA', {
signalCatalog,
name: 'modelA',
description: 'Model A vehicle',
networkInterfaces: [new CanVehicleInterface('1', 'vcan0')],
signals: [
new CanVehicleSignal('Vehicle.EngineTorque', '1',
401, // messageId
1.0, // factor
true, // isBigEndian
false, // isSigned
8, // lenght
0.0, // offset
9), // startBit
],
});
const vin100 = new Vehicle(stack, 'vin100', {
vehicleName: 'vin100',
vehicleModel: model_a,
createIotThing: true
});
new Campaign(stack, 'Campaign', {
name: 'TimeBasedCampaign',
target: vin100,
collectionScheme: new TimeBasedCollectionScheme(cdk.Duration.seconds(10)),
signals: [
new CampaignSignal('Vehicle.EngineTorque'),
],
});
Getting started
To deploy a simple end-to-end example you can use the following commands
yarn install
projen && projen compile
npx cdk -a lib/integ.full.js deploy -c key_name=mykey
Where mykey
is an existing keypair name present in your account.
The deploy takes about 15 mins mostly due to compilation of the IoT FleetWise agent in the
EC2 instance that simulate the vehicle. Once deploy is finshed, data will start to show up in your Timestream table.
TODO
Warning: this construct should be considered at alpha stage and is not feature complete.
- Implement updates for all the custom resources
- Conditional campaigns
Security
See CONTRIBUTING for more information.
License
This code is licensed under the MIT-0 License. See the LICENSE file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cdk-aws-iotfleetwise-0.2.15.tar.gz
.
File metadata
- Download URL: cdk-aws-iotfleetwise-0.2.15.tar.gz
- Upload date:
- Size: 10.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3002326744bec5e2c66cd0c8f5206b2f5d5445c33db854e4af734bb8a759bfe2 |
|
MD5 | 35db04fd774cb68c7b78904f9e483115 |
|
BLAKE2b-256 | 7296425c16627f0895fedb10a4450a38090eaa622ce8180d015a20c31b176736 |
File details
Details for the file cdk_aws_iotfleetwise-0.2.15-py3-none-any.whl
.
File metadata
- Download URL: cdk_aws_iotfleetwise-0.2.15-py3-none-any.whl
- Upload date:
- Size: 10.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d342d3ceb208fee7e6a41449294244d304233646975d30d25f47f8d490730e97 |
|
MD5 | 3ee3199b60373816646b8fabd10502b2 |
|
BLAKE2b-256 | 7774d44a26e6bda42b6580034aeadf6c3b0a8a8ecf1979dbe1b52e7ea68e012e |