@awboost/cfn-resource-types 0.1.278 → 0.1.279
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -95,6 +95,7 @@ export type CanSignal = {
|
|
|
95
95
|
*/
|
|
96
96
|
Name?: string;
|
|
97
97
|
Offset: number | string;
|
|
98
|
+
SignalValueType?: SignalValueType;
|
|
98
99
|
StartBit: number | string;
|
|
99
100
|
};
|
|
100
101
|
/**
|
|
@@ -222,11 +223,13 @@ export type ObdSignal = {
|
|
|
222
223
|
BitMaskLength?: number | string;
|
|
223
224
|
BitRightShift?: number | string;
|
|
224
225
|
ByteLength: number | string;
|
|
226
|
+
IsSigned?: boolean | string;
|
|
225
227
|
Offset: number | string;
|
|
226
228
|
Pid: number | string;
|
|
227
229
|
PidResponseLength: number | string;
|
|
228
230
|
Scaling: number | string;
|
|
229
231
|
ServiceMode: number | string;
|
|
232
|
+
SignalValueType?: SignalValueType;
|
|
230
233
|
StartByte: number | string;
|
|
231
234
|
};
|
|
232
235
|
/**
|
|
@@ -247,6 +250,11 @@ export type ObdSignalDecoder = {
|
|
|
247
250
|
ObdSignal: ObdSignal;
|
|
248
251
|
Type: "OBD_SIGNAL";
|
|
249
252
|
};
|
|
253
|
+
/**
|
|
254
|
+
* Type definition for `AWS::IoTFleetWise::DecoderManifest.SignalValueType`.
|
|
255
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-signalvaluetype.html}
|
|
256
|
+
*/
|
|
257
|
+
export type SignalValueType = "INTEGER" | "FLOATING_POINT";
|
|
250
258
|
/**
|
|
251
259
|
* Type definition for `AWS::IoTFleetWise::DecoderManifest.Tag`.
|
|
252
260
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-tag.html}
|