@aws-sdk/client-iotfleetwise 3.301.0 → 3.303.0

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.
@@ -14,36 +14,41 @@ export declare class AccessDeniedException extends __BaseException {
14
14
  }
15
15
  /**
16
16
  * @public
17
- */
18
- export declare enum NodeDataType {
19
- BOOLEAN = "BOOLEAN",
20
- BOOLEAN_ARRAY = "BOOLEAN_ARRAY",
21
- DOUBLE = "DOUBLE",
22
- DOUBLE_ARRAY = "DOUBLE_ARRAY",
23
- FLOAT = "FLOAT",
24
- FLOAT_ARRAY = "FLOAT_ARRAY",
25
- INT16 = "INT16",
26
- INT16_ARRAY = "INT16_ARRAY",
27
- INT32 = "INT32",
28
- INT32_ARRAY = "INT32_ARRAY",
29
- INT64 = "INT64",
30
- INT64_ARRAY = "INT64_ARRAY",
31
- INT8 = "INT8",
32
- INT8_ARRAY = "INT8_ARRAY",
33
- STRING = "STRING",
34
- STRING_ARRAY = "STRING_ARRAY",
35
- UINT16 = "UINT16",
36
- UINT16_ARRAY = "UINT16_ARRAY",
37
- UINT32 = "UINT32",
38
- UINT32_ARRAY = "UINT32_ARRAY",
39
- UINT64 = "UINT64",
40
- UINT64_ARRAY = "UINT64_ARRAY",
41
- UINT8 = "UINT8",
42
- UINT8_ARRAY = "UINT8_ARRAY",
43
- UNIX_TIMESTAMP = "UNIX_TIMESTAMP",
44
- UNIX_TIMESTAMP_ARRAY = "UNIX_TIMESTAMP_ARRAY",
45
- UNKNOWN = "UNKNOWN"
46
- }
17
+ * @enum
18
+ */
19
+ export declare const NodeDataType: {
20
+ readonly BOOLEAN: "BOOLEAN";
21
+ readonly BOOLEAN_ARRAY: "BOOLEAN_ARRAY";
22
+ readonly DOUBLE: "DOUBLE";
23
+ readonly DOUBLE_ARRAY: "DOUBLE_ARRAY";
24
+ readonly FLOAT: "FLOAT";
25
+ readonly FLOAT_ARRAY: "FLOAT_ARRAY";
26
+ readonly INT16: "INT16";
27
+ readonly INT16_ARRAY: "INT16_ARRAY";
28
+ readonly INT32: "INT32";
29
+ readonly INT32_ARRAY: "INT32_ARRAY";
30
+ readonly INT64: "INT64";
31
+ readonly INT64_ARRAY: "INT64_ARRAY";
32
+ readonly INT8: "INT8";
33
+ readonly INT8_ARRAY: "INT8_ARRAY";
34
+ readonly STRING: "STRING";
35
+ readonly STRING_ARRAY: "STRING_ARRAY";
36
+ readonly UINT16: "UINT16";
37
+ readonly UINT16_ARRAY: "UINT16_ARRAY";
38
+ readonly UINT32: "UINT32";
39
+ readonly UINT32_ARRAY: "UINT32_ARRAY";
40
+ readonly UINT64: "UINT64";
41
+ readonly UINT64_ARRAY: "UINT64_ARRAY";
42
+ readonly UINT8: "UINT8";
43
+ readonly UINT8_ARRAY: "UINT8_ARRAY";
44
+ readonly UNIX_TIMESTAMP: "UNIX_TIMESTAMP";
45
+ readonly UNIX_TIMESTAMP_ARRAY: "UNIX_TIMESTAMP_ARRAY";
46
+ readonly UNKNOWN: "UNKNOWN";
47
+ };
48
+ /**
49
+ * @public
50
+ */
51
+ export type NodeDataType = (typeof NodeDataType)[keyof typeof NodeDataType];
47
52
  /**
48
53
  * @public
49
54
  * <p>A signal that represents a vehicle device such as the engine, heater, and door locks.
@@ -185,13 +190,18 @@ export interface ValidationExceptionField {
185
190
  }
186
191
  /**
187
192
  * @public
193
+ * @enum
188
194
  */
189
- export declare enum ValidationExceptionReason {
190
- CANNOT_PARSE = "cannotParse",
191
- FIELD_VALIDATION_FAILED = "fieldValidationFailed",
192
- OTHER = "other",
193
- UNKNOWN_OPERATION = "unknownOperation"
194
- }
195
+ export declare const ValidationExceptionReason: {
196
+ readonly CANNOT_PARSE: "cannotParse";
197
+ readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
198
+ readonly OTHER: "other";
199
+ readonly UNKNOWN_OPERATION: "unknownOperation";
200
+ };
201
+ /**
202
+ * @public
203
+ */
204
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
195
205
  /**
196
206
  * @public
197
207
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
@@ -260,11 +270,16 @@ export interface Attribute {
260
270
  }
261
271
  /**
262
272
  * @public
273
+ * @enum
263
274
  */
264
- export declare enum VehicleAssociationBehavior {
265
- CREATE_IOT_THING = "CreateIotThing",
266
- VALIDATE_IOT_THING_EXISTS = "ValidateIotThingExists"
267
- }
275
+ export declare const VehicleAssociationBehavior: {
276
+ readonly CREATE_IOT_THING: "CreateIotThing";
277
+ readonly VALIDATE_IOT_THING_EXISTS: "ValidateIotThingExists";
278
+ };
279
+ /**
280
+ * @public
281
+ */
282
+ export type VehicleAssociationBehavior = (typeof VehicleAssociationBehavior)[keyof typeof VehicleAssociationBehavior];
268
283
  /**
269
284
  * @public
270
285
  * <p>A set of key/value pairs that are used to manage the resource.</p>
@@ -396,11 +411,16 @@ export declare class LimitExceededException extends __BaseException {
396
411
  }
397
412
  /**
398
413
  * @public
414
+ * @enum
399
415
  */
400
- export declare enum UpdateMode {
401
- MERGE = "Merge",
402
- OVERWRITE = "Overwrite"
403
- }
416
+ export declare const UpdateMode: {
417
+ readonly MERGE: "Merge";
418
+ readonly OVERWRITE: "Overwrite";
419
+ };
420
+ /**
421
+ * @public
422
+ */
423
+ export type UpdateMode = (typeof UpdateMode)[keyof typeof UpdateMode];
404
424
  /**
405
425
  * @public
406
426
  * <p>Information about the vehicle to update.</p>
@@ -530,11 +550,16 @@ export declare class ConflictException extends __BaseException {
530
550
  }
531
551
  /**
532
552
  * @public
553
+ * @enum
533
554
  */
534
- export declare enum TriggerMode {
535
- ALWAYS = "ALWAYS",
536
- RISING_EDGE = "RISING_EDGE"
537
- }
555
+ export declare const TriggerMode: {
556
+ readonly ALWAYS: "ALWAYS";
557
+ readonly RISING_EDGE: "RISING_EDGE";
558
+ };
559
+ /**
560
+ * @public
561
+ */
562
+ export type TriggerMode = (typeof TriggerMode)[keyof typeof TriggerMode];
538
563
  /**
539
564
  * @public
540
565
  * <p>Information about a collection scheme that uses a simple logical expression to
@@ -621,18 +646,28 @@ export declare namespace CollectionScheme {
621
646
  }
622
647
  /**
623
648
  * @public
649
+ * @enum
624
650
  */
625
- export declare enum Compression {
626
- OFF = "OFF",
627
- SNAPPY = "SNAPPY"
628
- }
651
+ export declare const Compression: {
652
+ readonly OFF: "OFF";
653
+ readonly SNAPPY: "SNAPPY";
654
+ };
629
655
  /**
630
656
  * @public
631
657
  */
632
- export declare enum DiagnosticsMode {
633
- OFF = "OFF",
634
- SEND_ACTIVE_DTCS = "SEND_ACTIVE_DTCS"
635
- }
658
+ export type Compression = (typeof Compression)[keyof typeof Compression];
659
+ /**
660
+ * @public
661
+ * @enum
662
+ */
663
+ export declare const DiagnosticsMode: {
664
+ readonly OFF: "OFF";
665
+ readonly SEND_ACTIVE_DTCS: "SEND_ACTIVE_DTCS";
666
+ };
667
+ /**
668
+ * @public
669
+ */
670
+ export type DiagnosticsMode = (typeof DiagnosticsMode)[keyof typeof DiagnosticsMode];
636
671
  /**
637
672
  * @public
638
673
  * <p>Information about a signal.</p>
@@ -657,11 +692,16 @@ export interface SignalInformation {
657
692
  }
658
693
  /**
659
694
  * @public
695
+ * @enum
660
696
  */
661
- export declare enum SpoolingMode {
662
- OFF = "OFF",
663
- TO_DISK = "TO_DISK"
664
- }
697
+ export declare const SpoolingMode: {
698
+ readonly OFF: "OFF";
699
+ readonly TO_DISK: "TO_DISK";
700
+ };
701
+ /**
702
+ * @public
703
+ */
704
+ export type SpoolingMode = (typeof SpoolingMode)[keyof typeof SpoolingMode];
665
705
  /**
666
706
  * @public
667
707
  */
@@ -805,13 +845,18 @@ export interface GetCampaignRequest {
805
845
  }
806
846
  /**
807
847
  * @public
848
+ * @enum
808
849
  */
809
- export declare enum CampaignStatus {
810
- CREATING = "CREATING",
811
- RUNNING = "RUNNING",
812
- SUSPENDED = "SUSPENDED",
813
- WAITING_FOR_APPROVAL = "WAITING_FOR_APPROVAL"
814
- }
850
+ export declare const CampaignStatus: {
851
+ readonly CREATING: "CREATING";
852
+ readonly RUNNING: "RUNNING";
853
+ readonly SUSPENDED: "SUSPENDED";
854
+ readonly WAITING_FOR_APPROVAL: "WAITING_FOR_APPROVAL";
855
+ };
856
+ /**
857
+ * @public
858
+ */
859
+ export type CampaignStatus = (typeof CampaignStatus)[keyof typeof CampaignStatus];
815
860
  /**
816
861
  * @public
817
862
  */
@@ -999,13 +1044,18 @@ export interface ListCampaignsResponse {
999
1044
  }
1000
1045
  /**
1001
1046
  * @public
1047
+ * @enum
1002
1048
  */
1003
- export declare enum UpdateCampaignAction {
1004
- APPROVE = "APPROVE",
1005
- RESUME = "RESUME",
1006
- SUSPEND = "SUSPEND",
1007
- UPDATE = "UPDATE"
1008
- }
1049
+ export declare const UpdateCampaignAction: {
1050
+ readonly APPROVE: "APPROVE";
1051
+ readonly RESUME: "RESUME";
1052
+ readonly SUSPEND: "SUSPEND";
1053
+ readonly UPDATE: "UPDATE";
1054
+ };
1055
+ /**
1056
+ * @public
1057
+ */
1058
+ export type UpdateCampaignAction = (typeof UpdateCampaignAction)[keyof typeof UpdateCampaignAction];
1009
1059
  /**
1010
1060
  * @public
1011
1061
  */
@@ -1165,11 +1215,16 @@ export interface CanSignal {
1165
1215
  }
1166
1216
  /**
1167
1217
  * @public
1218
+ * @enum
1168
1219
  */
1169
- export declare enum LogType {
1170
- ERROR = "ERROR",
1171
- OFF = "OFF"
1172
- }
1220
+ export declare const LogType: {
1221
+ readonly ERROR: "ERROR";
1222
+ readonly OFF: "OFF";
1223
+ };
1224
+ /**
1225
+ * @public
1226
+ */
1227
+ export type LogType = (typeof LogType)[keyof typeof LogType];
1173
1228
  /**
1174
1229
  * @public
1175
1230
  * <p>The log delivery option to send data to Amazon CloudWatch Logs.</p>
@@ -1220,11 +1275,16 @@ export interface ObdInterface {
1220
1275
  }
1221
1276
  /**
1222
1277
  * @public
1278
+ * @enum
1223
1279
  */
1224
- export declare enum NetworkInterfaceType {
1225
- CAN_INTERFACE = "CAN_INTERFACE",
1226
- OBD_INTERFACE = "OBD_INTERFACE"
1227
- }
1280
+ export declare const NetworkInterfaceType: {
1281
+ readonly CAN_INTERFACE: "CAN_INTERFACE";
1282
+ readonly OBD_INTERFACE: "OBD_INTERFACE";
1283
+ };
1284
+ /**
1285
+ * @public
1286
+ */
1287
+ export type NetworkInterfaceType = (typeof NetworkInterfaceType)[keyof typeof NetworkInterfaceType];
1228
1288
  /**
1229
1289
  * @public
1230
1290
  * <p>Represents a node and its specifications in an in-vehicle communication network. All
@@ -1301,11 +1361,16 @@ export interface ObdSignal {
1301
1361
  }
1302
1362
  /**
1303
1363
  * @public
1364
+ * @enum
1304
1365
  */
1305
- export declare enum SignalDecoderType {
1306
- CAN_SIGNAL = "CAN_SIGNAL",
1307
- OBD_SIGNAL = "OBD_SIGNAL"
1308
- }
1366
+ export declare const SignalDecoderType: {
1367
+ readonly CAN_SIGNAL: "CAN_SIGNAL";
1368
+ readonly OBD_SIGNAL: "OBD_SIGNAL";
1369
+ };
1370
+ /**
1371
+ * @public
1372
+ */
1373
+ export type SignalDecoderType = (typeof SignalDecoderType)[keyof typeof SignalDecoderType];
1309
1374
  /**
1310
1375
  * @public
1311
1376
  * <p>Information about a signal decoder.</p>
@@ -1379,15 +1444,20 @@ export interface CreateDecoderManifestResponse {
1379
1444
  }
1380
1445
  /**
1381
1446
  * @public
1447
+ * @enum
1382
1448
  */
1383
- export declare enum NetworkInterfaceFailureReason {
1384
- CAN_NETWORK_INTERFACE_INFO_IS_NULL = "CAN_NETWORK_INTERFACE_INFO_IS_NULL",
1385
- CONFLICTING_NETWORK_INTERFACE = "CONFLICTING_NETWORK_INTERFACE",
1386
- DUPLICATE_INTERFACE = "DUPLICATE_NETWORK_INTERFACE",
1387
- NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS = "NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS",
1388
- NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS = "NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS",
1389
- OBD_NETWORK_INTERFACE_INFO_IS_NULL = "OBD_NETWORK_INTERFACE_INFO_IS_NULL"
1390
- }
1449
+ export declare const NetworkInterfaceFailureReason: {
1450
+ readonly CAN_NETWORK_INTERFACE_INFO_IS_NULL: "CAN_NETWORK_INTERFACE_INFO_IS_NULL";
1451
+ readonly CONFLICTING_NETWORK_INTERFACE: "CONFLICTING_NETWORK_INTERFACE";
1452
+ readonly DUPLICATE_INTERFACE: "DUPLICATE_NETWORK_INTERFACE";
1453
+ readonly NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS: "NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS";
1454
+ readonly NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS: "NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS";
1455
+ readonly OBD_NETWORK_INTERFACE_INFO_IS_NULL: "OBD_NETWORK_INTERFACE_INFO_IS_NULL";
1456
+ };
1457
+ /**
1458
+ * @public
1459
+ */
1460
+ export type NetworkInterfaceFailureReason = (typeof NetworkInterfaceFailureReason)[keyof typeof NetworkInterfaceFailureReason];
1391
1461
  /**
1392
1462
  * @public
1393
1463
  * <p>A reason a vehicle network interface isn't valid.</p>
@@ -1404,18 +1474,23 @@ export interface InvalidNetworkInterface {
1404
1474
  }
1405
1475
  /**
1406
1476
  * @public
1477
+ * @enum
1407
1478
  */
1408
- export declare enum SignalDecoderFailureReason {
1409
- CAN_SIGNAL_INFO_IS_NULL = "CAN_SIGNAL_INFO_IS_NULL",
1410
- CONFLICTING_SIGNAL = "CONFLICTING_SIGNAL",
1411
- DUPLICATE_SIGNAL = "DUPLICATE_SIGNAL",
1412
- NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE = "NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE",
1413
- NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL = "NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL",
1414
- OBD_SIGNAL_INFO_IS_NULL = "OBD_SIGNAL_INFO_IS_NULL",
1415
- SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE = "SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE",
1416
- SIGNAL_NOT_IN_MODEL = "SIGNAL_NOT_IN_MODEL",
1417
- SIGNAL_TO_ADD_ALREADY_EXISTS = "SIGNAL_TO_ADD_ALREADY_EXISTS"
1418
- }
1479
+ export declare const SignalDecoderFailureReason: {
1480
+ readonly CAN_SIGNAL_INFO_IS_NULL: "CAN_SIGNAL_INFO_IS_NULL";
1481
+ readonly CONFLICTING_SIGNAL: "CONFLICTING_SIGNAL";
1482
+ readonly DUPLICATE_SIGNAL: "DUPLICATE_SIGNAL";
1483
+ readonly NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE: "NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE";
1484
+ readonly NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL: "NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL";
1485
+ readonly OBD_SIGNAL_INFO_IS_NULL: "OBD_SIGNAL_INFO_IS_NULL";
1486
+ readonly SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE: "SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE";
1487
+ readonly SIGNAL_NOT_IN_MODEL: "SIGNAL_NOT_IN_MODEL";
1488
+ readonly SIGNAL_TO_ADD_ALREADY_EXISTS: "SIGNAL_TO_ADD_ALREADY_EXISTS";
1489
+ };
1490
+ /**
1491
+ * @public
1492
+ */
1493
+ export type SignalDecoderFailureReason = (typeof SignalDecoderFailureReason)[keyof typeof SignalDecoderFailureReason];
1419
1494
  /**
1420
1495
  * @public
1421
1496
  * <p>A reason that a signal decoder isn't valid.</p>
@@ -1810,11 +1885,16 @@ export interface GetDecoderManifestRequest {
1810
1885
  }
1811
1886
  /**
1812
1887
  * @public
1888
+ * @enum
1813
1889
  */
1814
- export declare enum ManifestStatus {
1815
- ACTIVE = "ACTIVE",
1816
- DRAFT = "DRAFT"
1817
- }
1890
+ export declare const ManifestStatus: {
1891
+ readonly ACTIVE: "ACTIVE";
1892
+ readonly DRAFT: "DRAFT";
1893
+ };
1894
+ /**
1895
+ * @public
1896
+ */
1897
+ export type ManifestStatus = (typeof ManifestStatus)[keyof typeof ManifestStatus];
1818
1898
  /**
1819
1899
  * @public
1820
1900
  */
@@ -2488,12 +2568,17 @@ export interface GetRegisterAccountStatusRequest {
2488
2568
  }
2489
2569
  /**
2490
2570
  * @public
2571
+ * @enum
2491
2572
  */
2492
- export declare enum RegistrationStatus {
2493
- REGISTRATION_FAILURE = "REGISTRATION_FAILURE",
2494
- REGISTRATION_PENDING = "REGISTRATION_PENDING",
2495
- REGISTRATION_SUCCESS = "REGISTRATION_SUCCESS"
2496
- }
2573
+ export declare const RegistrationStatus: {
2574
+ readonly REGISTRATION_FAILURE: "REGISTRATION_FAILURE";
2575
+ readonly REGISTRATION_PENDING: "REGISTRATION_PENDING";
2576
+ readonly REGISTRATION_SUCCESS: "REGISTRATION_SUCCESS";
2577
+ };
2578
+ /**
2579
+ * @public
2580
+ */
2581
+ export type RegistrationStatus = (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
2497
2582
  /**
2498
2583
  * @public
2499
2584
  * <p>Information about registering an Identity and Access Management (IAM) resource so Amazon Web Services IoT FleetWise edge agent
@@ -2725,14 +2810,19 @@ export interface GetVehicleStatusRequest {
2725
2810
  }
2726
2811
  /**
2727
2812
  * @public
2813
+ * @enum
2728
2814
  */
2729
- export declare enum VehicleState {
2730
- CREATED = "CREATED",
2731
- DELETING = "DELETING",
2732
- HEALTHY = "HEALTHY",
2733
- READY = "READY",
2734
- SUSPENDED = "SUSPENDED"
2735
- }
2815
+ export declare const VehicleState: {
2816
+ readonly CREATED: "CREATED";
2817
+ readonly DELETING: "DELETING";
2818
+ readonly HEALTHY: "HEALTHY";
2819
+ readonly READY: "READY";
2820
+ readonly SUSPENDED: "SUSPENDED";
2821
+ };
2822
+ /**
2823
+ * @public
2824
+ */
2825
+ export type VehicleState = (typeof VehicleState)[keyof typeof VehicleState];
2736
2826
  /**
2737
2827
  * @public
2738
2828
  * <p>Information about the state of a vehicle and how it relates to the status of a