@aws-sdk/client-iotfleetwise 3.934.0 → 3.936.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.
@@ -1,56 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { IoTFleetWiseServiceException as __BaseException } from "./IoTFleetWiseServiceException";
3
- /**
4
- * <p>You don't have sufficient permission to perform this action.</p>
5
- * @public
6
- */
7
- export declare class AccessDeniedException extends __BaseException {
8
- readonly name: "AccessDeniedException";
9
- readonly $fault: "client";
10
- /**
11
- * @internal
12
- */
13
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
- }
15
- /**
16
- * @public
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 STRUCT: "STRUCT";
37
- readonly STRUCT_ARRAY: "STRUCT_ARRAY";
38
- readonly UINT16: "UINT16";
39
- readonly UINT16_ARRAY: "UINT16_ARRAY";
40
- readonly UINT32: "UINT32";
41
- readonly UINT32_ARRAY: "UINT32_ARRAY";
42
- readonly UINT64: "UINT64";
43
- readonly UINT64_ARRAY: "UINT64_ARRAY";
44
- readonly UINT8: "UINT8";
45
- readonly UINT8_ARRAY: "UINT8_ARRAY";
46
- readonly UNIX_TIMESTAMP: "UNIX_TIMESTAMP";
47
- readonly UNIX_TIMESTAMP_ARRAY: "UNIX_TIMESTAMP_ARRAY";
48
- readonly UNKNOWN: "UNKNOWN";
49
- };
50
- /**
51
- * @public
52
- */
53
- export type NodeDataType = (typeof NodeDataType)[keyof typeof NodeDataType];
1
+ import { CampaignStatus, Compression, DataFormat, DefaultForUnmappedSignalsType, DiagnosticsMode, EncryptionStatus, EncryptionType, ListResponseScope, LogType, ManifestStatus, NetworkInterfaceFailureReason, NetworkInterfaceType, NodeDataEncoding, NodeDataType, RegistrationStatus, ROS2PrimitiveType, SignalDecoderFailureReason, SignalDecoderType, SignalNodeType, SignalValueType, SpoolingMode, StorageCompressionFormat, StorageMaximumSizeUnit, StorageMinimumTimeToLiveUnit, StructuredMessageListType, TimeUnit, TriggerMode, UpdateCampaignAction, UpdateMode, VehicleAssociationBehavior, VehicleMiddlewareProtocol, VehicleState } from "./enums";
54
2
  /**
55
3
  * <p>A signal that represents a vehicle device such as the engine, heater, and door locks.
56
4
  * Data from an actuator reports the state of a certain vehicle device.</p>
@@ -143,94 +91,6 @@ export interface AssociateVehicleFleetRequest {
143
91
  */
144
92
  export interface AssociateVehicleFleetResponse {
145
93
  }
146
- /**
147
- * <p>The request couldn't be completed because the server temporarily failed.</p>
148
- * @public
149
- */
150
- export declare class InternalServerException extends __BaseException {
151
- readonly name: "InternalServerException";
152
- readonly $fault: "server";
153
- /**
154
- * <p>The number of seconds to wait before retrying the command.</p>
155
- * @public
156
- */
157
- retryAfterSeconds?: number | undefined;
158
- /**
159
- * @internal
160
- */
161
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
162
- }
163
- /**
164
- * <p>A service quota was exceeded. </p>
165
- * @public
166
- */
167
- export declare class LimitExceededException extends __BaseException {
168
- readonly name: "LimitExceededException";
169
- readonly $fault: "client";
170
- /**
171
- * <p>The identifier of the resource that was exceeded.</p>
172
- * @public
173
- */
174
- resourceId: string | undefined;
175
- /**
176
- * <p>The type of resource that was exceeded.</p>
177
- * @public
178
- */
179
- resourceType: string | undefined;
180
- /**
181
- * @internal
182
- */
183
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
184
- }
185
- /**
186
- * <p>The resource wasn't found.</p>
187
- * @public
188
- */
189
- export declare class ResourceNotFoundException extends __BaseException {
190
- readonly name: "ResourceNotFoundException";
191
- readonly $fault: "client";
192
- /**
193
- * <p>The identifier of the resource that wasn't found.</p>
194
- * @public
195
- */
196
- resourceId: string | undefined;
197
- /**
198
- * <p>The type of resource that wasn't found.</p>
199
- * @public
200
- */
201
- resourceType: string | undefined;
202
- /**
203
- * @internal
204
- */
205
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
206
- }
207
- /**
208
- * <p>The request couldn't be completed due to throttling.</p>
209
- * @public
210
- */
211
- export declare class ThrottlingException extends __BaseException {
212
- readonly name: "ThrottlingException";
213
- readonly $fault: "client";
214
- /**
215
- * <p>The quota identifier of the applied throttling rules for this request.</p>
216
- * @public
217
- */
218
- quotaCode?: string | undefined;
219
- /**
220
- * <p>The code for the service that couldn't be completed due to throttling.</p>
221
- * @public
222
- */
223
- serviceCode?: string | undefined;
224
- /**
225
- * <p>The number of seconds to wait before retrying the command.</p>
226
- * @public
227
- */
228
- retryAfterSeconds?: number | undefined;
229
- /**
230
- * @internal
231
- */
232
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
233
- }
234
94
  /**
235
95
  * <p>A validation error due to mismatch between the expected data type, length, or pattern
236
96
  * of the parameter and the input.</p>
@@ -248,44 +108,6 @@ export interface ValidationExceptionField {
248
108
  */
249
109
  message: string | undefined;
250
110
  }
251
- /**
252
- * @public
253
- * @enum
254
- */
255
- export declare const ValidationExceptionReason: {
256
- readonly CANNOT_PARSE: "cannotParse";
257
- readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
258
- readonly OTHER: "other";
259
- readonly UNKNOWN_OPERATION: "unknownOperation";
260
- };
261
- /**
262
- * @public
263
- */
264
- export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
265
- /**
266
- * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
267
- * @public
268
- */
269
- export declare class ValidationException extends __BaseException {
270
- readonly name: "ValidationException";
271
- readonly $fault: "client";
272
- /**
273
- * <p>The reason the input failed to satisfy the constraints specified by an Amazon Web Services
274
- * service.</p>
275
- * @public
276
- */
277
- reason?: ValidationExceptionReason | undefined;
278
- /**
279
- * <p>The list of fields that fail to satisfy the constraints specified by an Amazon Web Services
280
- * service.</p>
281
- * @public
282
- */
283
- fieldList?: ValidationExceptionField[] | undefined;
284
- /**
285
- * @internal
286
- */
287
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
288
- }
289
111
  /**
290
112
  * <p>A signal that represents static information about the vehicle, such as engine type or
291
113
  * manufacturing date.</p>
@@ -351,38 +173,12 @@ export interface Attribute {
351
173
  */
352
174
  comment?: string | undefined;
353
175
  }
354
- /**
355
- * @public
356
- * @enum
357
- */
358
- export declare const VehicleAssociationBehavior: {
359
- readonly CREATE_IOT_THING: "CreateIotThing";
360
- readonly VALIDATE_IOT_THING_EXISTS: "ValidateIotThingExists";
361
- };
362
- /**
363
- * @public
364
- */
365
- export type VehicleAssociationBehavior = (typeof VehicleAssociationBehavior)[keyof typeof VehicleAssociationBehavior];
366
176
  /**
367
177
  * <p>Vehicles associated with the state template will stream telemetry data when there is a change.</p>
368
178
  * @public
369
179
  */
370
180
  export interface OnChangeStateTemplateUpdateStrategy {
371
181
  }
372
- /**
373
- * @public
374
- * @enum
375
- */
376
- export declare const TimeUnit: {
377
- readonly HOUR: "HOUR";
378
- readonly MILLISECOND: "MILLISECOND";
379
- readonly MINUTE: "MINUTE";
380
- readonly SECOND: "SECOND";
381
- };
382
- /**
383
- * @public
384
- */
385
- export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
386
182
  /**
387
183
  * <p>The length of time between state template updates.</p>
388
184
  * @public
@@ -611,18 +407,6 @@ export interface BatchCreateVehicleResponse {
611
407
  */
612
408
  errors?: CreateVehicleError[] | undefined;
613
409
  }
614
- /**
615
- * @public
616
- * @enum
617
- */
618
- export declare const UpdateMode: {
619
- readonly MERGE: "Merge";
620
- readonly OVERWRITE: "Overwrite";
621
- };
622
- /**
623
- * @public
624
- */
625
- export type UpdateMode = (typeof UpdateMode)[keyof typeof UpdateMode];
626
410
  /**
627
411
  * <p>Information about the vehicle to update.</p>
628
412
  * <important>
@@ -773,41 +557,6 @@ export interface Branch {
773
557
  */
774
558
  comment?: string | undefined;
775
559
  }
776
- /**
777
- * <p>The request has conflicting operations. This can occur if you're trying to perform
778
- * more than one operation on the same resource at the same time.</p>
779
- * @public
780
- */
781
- export declare class ConflictException extends __BaseException {
782
- readonly name: "ConflictException";
783
- readonly $fault: "client";
784
- /**
785
- * <p>The resource on which there are conflicting operations.</p>
786
- * @public
787
- */
788
- resource: string | undefined;
789
- /**
790
- * <p>The type of resource on which there are conflicting operations..</p>
791
- * @public
792
- */
793
- resourceType: string | undefined;
794
- /**
795
- * @internal
796
- */
797
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
798
- }
799
- /**
800
- * @public
801
- * @enum
802
- */
803
- export declare const TriggerMode: {
804
- readonly ALWAYS: "ALWAYS";
805
- readonly RISING_EDGE: "RISING_EDGE";
806
- };
807
- /**
808
- * @public
809
- */
810
- export type TriggerMode = (typeof TriggerMode)[keyof typeof TriggerMode];
811
560
  /**
812
561
  * <p>Information about a collection scheme that uses a simple logical expression to
813
562
  * recognize what data to collect.</p>
@@ -904,18 +653,6 @@ export declare namespace CollectionScheme {
904
653
  _: (name: string, value: any) => T;
905
654
  }
906
655
  }
907
- /**
908
- * @public
909
- * @enum
910
- */
911
- export declare const Compression: {
912
- readonly OFF: "OFF";
913
- readonly SNAPPY: "SNAPPY";
914
- };
915
- /**
916
- * @public
917
- */
918
- export type Compression = (typeof Compression)[keyof typeof Compression];
919
656
  /**
920
657
  * <p>The MQTT topic to which the Amazon Web Services IoT FleetWise campaign routes data. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html">Device communication
921
658
  * protocols</a> in the <i>Amazon Web Services IoT Core Developer Guide</i>.</p>
@@ -937,30 +674,6 @@ export interface MqttTopicConfig {
937
674
  */
938
675
  executionRoleArn: string | undefined;
939
676
  }
940
- /**
941
- * @public
942
- * @enum
943
- */
944
- export declare const DataFormat: {
945
- readonly JSON: "JSON";
946
- readonly PARQUET: "PARQUET";
947
- };
948
- /**
949
- * @public
950
- */
951
- export type DataFormat = (typeof DataFormat)[keyof typeof DataFormat];
952
- /**
953
- * @public
954
- * @enum
955
- */
956
- export declare const StorageCompressionFormat: {
957
- readonly GZIP: "GZIP";
958
- readonly NONE: "NONE";
959
- };
960
- /**
961
- * @public
962
- */
963
- export type StorageCompressionFormat = (typeof StorageCompressionFormat)[keyof typeof StorageCompressionFormat];
964
677
  /**
965
678
  * <p>The Amazon S3 bucket where the Amazon Web Services IoT FleetWise campaign sends data. Amazon S3 is an object storage
966
679
  * service that stores data as objects within buckets. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/creating-buckets-s3.html">Creating, configuring, and working with Amazon S3 buckets</a> in the
@@ -1092,19 +805,6 @@ export declare namespace DataDestinationConfig {
1092
805
  _: (name: string, value: any) => T;
1093
806
  }
1094
807
  }
1095
- /**
1096
- * @public
1097
- * @enum
1098
- */
1099
- export declare const StorageMaximumSizeUnit: {
1100
- readonly GB: "GB";
1101
- readonly MB: "MB";
1102
- readonly TB: "TB";
1103
- };
1104
- /**
1105
- * @public
1106
- */
1107
- export type StorageMaximumSizeUnit = (typeof StorageMaximumSizeUnit)[keyof typeof StorageMaximumSizeUnit];
1108
808
  /**
1109
809
  * <p>The maximum storage size for the data partition.</p>
1110
810
  * <important>
@@ -1124,19 +824,6 @@ export interface StorageMaximumSize {
1124
824
  */
1125
825
  value: number | undefined;
1126
826
  }
1127
- /**
1128
- * @public
1129
- * @enum
1130
- */
1131
- export declare const StorageMinimumTimeToLiveUnit: {
1132
- readonly DAYS: "DAYS";
1133
- readonly HOURS: "HOURS";
1134
- readonly WEEKS: "WEEKS";
1135
- };
1136
- /**
1137
- * @public
1138
- */
1139
- export type StorageMinimumTimeToLiveUnit = (typeof StorageMinimumTimeToLiveUnit)[keyof typeof StorageMinimumTimeToLiveUnit];
1140
827
  /**
1141
828
  * <p>Information about the minimum amount of time that data will be kept.</p>
1142
829
  * <important>
@@ -1243,18 +930,6 @@ export interface DataPartition {
1243
930
  */
1244
931
  uploadOptions?: DataPartitionUploadOptions | undefined;
1245
932
  }
1246
- /**
1247
- * @public
1248
- * @enum
1249
- */
1250
- export declare const DiagnosticsMode: {
1251
- readonly OFF: "OFF";
1252
- readonly SEND_ACTIVE_DTCS: "SEND_ACTIVE_DTCS";
1253
- };
1254
- /**
1255
- * @public
1256
- */
1257
- export type DiagnosticsMode = (typeof DiagnosticsMode)[keyof typeof DiagnosticsMode];
1258
933
  /**
1259
934
  * <p>Information about a signal.</p>
1260
935
  * @public
@@ -1400,18 +1075,6 @@ export interface SignalFetchInformation {
1400
1075
  */
1401
1076
  actions: string[] | undefined;
1402
1077
  }
1403
- /**
1404
- * @public
1405
- * @enum
1406
- */
1407
- export declare const SpoolingMode: {
1408
- readonly OFF: "OFF";
1409
- readonly TO_DISK: "TO_DISK";
1410
- };
1411
- /**
1412
- * @public
1413
- */
1414
- export type SpoolingMode = (typeof SpoolingMode)[keyof typeof SpoolingMode];
1415
1078
  /**
1416
1079
  * @public
1417
1080
  */
@@ -1607,20 +1270,6 @@ export interface GetCampaignRequest {
1607
1270
  */
1608
1271
  name: string | undefined;
1609
1272
  }
1610
- /**
1611
- * @public
1612
- * @enum
1613
- */
1614
- export declare const CampaignStatus: {
1615
- readonly CREATING: "CREATING";
1616
- readonly RUNNING: "RUNNING";
1617
- readonly SUSPENDED: "SUSPENDED";
1618
- readonly WAITING_FOR_APPROVAL: "WAITING_FOR_APPROVAL";
1619
- };
1620
- /**
1621
- * @public
1622
- */
1623
- export type CampaignStatus = (typeof CampaignStatus)[keyof typeof CampaignStatus];
1624
1273
  /**
1625
1274
  * @public
1626
1275
  */
@@ -1749,17 +1398,6 @@ export interface GetCampaignResponse {
1749
1398
  */
1750
1399
  signalsToFetch?: SignalFetchInformation[] | undefined;
1751
1400
  }
1752
- /**
1753
- * @public
1754
- * @enum
1755
- */
1756
- export declare const ListResponseScope: {
1757
- readonly METADATA_ONLY: "METADATA_ONLY";
1758
- };
1759
- /**
1760
- * @public
1761
- */
1762
- export type ListResponseScope = (typeof ListResponseScope)[keyof typeof ListResponseScope];
1763
1401
  /**
1764
1402
  * @public
1765
1403
  */
@@ -1875,20 +1513,6 @@ export interface ListCampaignsResponse {
1875
1513
  */
1876
1514
  nextToken?: string | undefined;
1877
1515
  }
1878
- /**
1879
- * @public
1880
- * @enum
1881
- */
1882
- export declare const UpdateCampaignAction: {
1883
- readonly APPROVE: "APPROVE";
1884
- readonly RESUME: "RESUME";
1885
- readonly SUSPEND: "SUSPEND";
1886
- readonly UPDATE: "UPDATE";
1887
- };
1888
- /**
1889
- * @public
1890
- */
1891
- export type UpdateCampaignAction = (typeof UpdateCampaignAction)[keyof typeof UpdateCampaignAction];
1892
1516
  /**
1893
1517
  * @public
1894
1518
  */
@@ -2023,18 +1647,6 @@ export interface CanInterface {
2023
1647
  */
2024
1648
  protocolVersion?: string | undefined;
2025
1649
  }
2026
- /**
2027
- * @public
2028
- * @enum
2029
- */
2030
- export declare const SignalValueType: {
2031
- readonly FLOATING_POINT: "FLOATING_POINT";
2032
- readonly INTEGER: "INTEGER";
2033
- };
2034
- /**
2035
- * @public
2036
- */
2037
- export type SignalValueType = (typeof SignalValueType)[keyof typeof SignalValueType];
2038
1650
  /**
2039
1651
  * <p>Information about a single controller area network (CAN) signal and the messages it
2040
1652
  * receives and transmits.</p>
@@ -2093,18 +1705,6 @@ export interface CanSignal {
2093
1705
  */
2094
1706
  signalValueType?: SignalValueType | undefined;
2095
1707
  }
2096
- /**
2097
- * @public
2098
- * @enum
2099
- */
2100
- export declare const LogType: {
2101
- readonly ERROR: "ERROR";
2102
- readonly OFF: "OFF";
2103
- };
2104
- /**
2105
- * @public
2106
- */
2107
- export type LogType = (typeof LogType)[keyof typeof LogType];
2108
1708
  /**
2109
1709
  * <p>The log delivery option to send data to Amazon CloudWatch Logs.</p>
2110
1710
  * @public
@@ -2121,17 +1721,6 @@ export interface CloudWatchLogDeliveryOptions {
2121
1721
  */
2122
1722
  logGroupName?: string | undefined;
2123
1723
  }
2124
- /**
2125
- * @public
2126
- * @enum
2127
- */
2128
- export declare const DefaultForUnmappedSignalsType: {
2129
- readonly CUSTOM_DECODING: "CUSTOM_DECODING";
2130
- };
2131
- /**
2132
- * @public
2133
- */
2134
- export type DefaultForUnmappedSignalsType = (typeof DefaultForUnmappedSignalsType)[keyof typeof DefaultForUnmappedSignalsType];
2135
1724
  /**
2136
1725
  * <p>Represents a custom network interface as defined by the customer.</p>
2137
1726
  * <important>
@@ -2188,31 +1777,6 @@ export interface ObdInterface {
2188
1777
  */
2189
1778
  hasTransmissionEcu?: boolean | undefined;
2190
1779
  }
2191
- /**
2192
- * @public
2193
- * @enum
2194
- */
2195
- export declare const NetworkInterfaceType: {
2196
- readonly CAN_INTERFACE: "CAN_INTERFACE";
2197
- readonly CUSTOM_DECODING_INTERFACE: "CUSTOM_DECODING_INTERFACE";
2198
- readonly OBD_INTERFACE: "OBD_INTERFACE";
2199
- readonly VEHICLE_MIDDLEWARE: "VEHICLE_MIDDLEWARE";
2200
- };
2201
- /**
2202
- * @public
2203
- */
2204
- export type NetworkInterfaceType = (typeof NetworkInterfaceType)[keyof typeof NetworkInterfaceType];
2205
- /**
2206
- * @public
2207
- * @enum
2208
- */
2209
- export declare const VehicleMiddlewareProtocol: {
2210
- readonly ROS_2: "ROS_2";
2211
- };
2212
- /**
2213
- * @public
2214
- */
2215
- export type VehicleMiddlewareProtocol = (typeof VehicleMiddlewareProtocol)[keyof typeof VehicleMiddlewareProtocol];
2216
1780
  /**
2217
1781
  * <p>The vehicle middleware defined as a type of network interface. Examples of vehicle
2218
1782
  * middleware include <code>ROS2</code> and <code>SOME/IP</code>.</p>
@@ -2291,31 +1855,6 @@ export interface CustomDecodingSignal {
2291
1855
  */
2292
1856
  id: string | undefined;
2293
1857
  }
2294
- /**
2295
- * @public
2296
- * @enum
2297
- */
2298
- export declare const ROS2PrimitiveType: {
2299
- readonly BOOL: "BOOL";
2300
- readonly BYTE: "BYTE";
2301
- readonly CHAR: "CHAR";
2302
- readonly FLOAT32: "FLOAT32";
2303
- readonly FLOAT64: "FLOAT64";
2304
- readonly INT16: "INT16";
2305
- readonly INT32: "INT32";
2306
- readonly INT64: "INT64";
2307
- readonly INT8: "INT8";
2308
- readonly STRING: "STRING";
2309
- readonly UINT16: "UINT16";
2310
- readonly UINT32: "UINT32";
2311
- readonly UINT64: "UINT64";
2312
- readonly UINT8: "UINT8";
2313
- readonly WSTRING: "WSTRING";
2314
- };
2315
- /**
2316
- * @public
2317
- */
2318
- export type ROS2PrimitiveType = (typeof ROS2PrimitiveType)[keyof typeof ROS2PrimitiveType];
2319
1858
  /**
2320
1859
  * <p>Represents a ROS 2 compliant primitive type message of the complex data
2321
1860
  * structure.</p>
@@ -2380,19 +1919,6 @@ export declare namespace PrimitiveMessageDefinition {
2380
1919
  _: (name: string, value: any) => T;
2381
1920
  }
2382
1921
  }
2383
- /**
2384
- * @public
2385
- * @enum
2386
- */
2387
- export declare const StructuredMessageListType: {
2388
- readonly DYNAMIC_BOUNDED_CAPACITY: "DYNAMIC_BOUNDED_CAPACITY";
2389
- readonly DYNAMIC_UNBOUNDED_CAPACITY: "DYNAMIC_UNBOUNDED_CAPACITY";
2390
- readonly FIXED_CAPACITY: "FIXED_CAPACITY";
2391
- };
2392
- /**
2393
- * @public
2394
- */
2395
- export type StructuredMessageListType = (typeof StructuredMessageListType)[keyof typeof StructuredMessageListType];
2396
1922
  /**
2397
1923
  * <p>Information about signal messages using the on-board diagnostics (OBD) II protocol in
2398
1924
  * a vehicle.</p>
@@ -2456,20 +1982,6 @@ export interface ObdSignal {
2456
1982
  */
2457
1983
  signalValueType?: SignalValueType | undefined;
2458
1984
  }
2459
- /**
2460
- * @public
2461
- * @enum
2462
- */
2463
- export declare const SignalDecoderType: {
2464
- readonly CAN_SIGNAL: "CAN_SIGNAL";
2465
- readonly CUSTOM_DECODING_SIGNAL: "CUSTOM_DECODING_SIGNAL";
2466
- readonly MESSAGE_SIGNAL: "MESSAGE_SIGNAL";
2467
- readonly OBD_SIGNAL: "OBD_SIGNAL";
2468
- };
2469
- /**
2470
- * @public
2471
- */
2472
- export type SignalDecoderType = (typeof SignalDecoderType)[keyof typeof SignalDecoderType];
2473
1985
  /**
2474
1986
  * @public
2475
1987
  */
@@ -2485,24 +1997,6 @@ export interface CreateDecoderManifestResponse {
2485
1997
  */
2486
1998
  arn: string | undefined;
2487
1999
  }
2488
- /**
2489
- * @public
2490
- * @enum
2491
- */
2492
- export declare const NetworkInterfaceFailureReason: {
2493
- readonly CAN_NETWORK_INTERFACE_INFO_IS_NULL: "CAN_NETWORK_INTERFACE_INFO_IS_NULL";
2494
- readonly CONFLICTING_NETWORK_INTERFACE: "CONFLICTING_NETWORK_INTERFACE";
2495
- readonly CUSTOM_DECODING_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL: "CUSTOM_DECODING_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL";
2496
- readonly DUPLICATE_INTERFACE: "DUPLICATE_NETWORK_INTERFACE";
2497
- readonly NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS: "NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS";
2498
- readonly NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS: "NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS";
2499
- readonly OBD_NETWORK_INTERFACE_INFO_IS_NULL: "OBD_NETWORK_INTERFACE_INFO_IS_NULL";
2500
- readonly VEHICLE_MIDDLEWARE_NETWORK_INTERFACE_INFO_IS_NULL: "VEHICLE_MIDDLEWARE_NETWORK_INTERFACE_INFO_IS_NULL";
2501
- };
2502
- /**
2503
- * @public
2504
- */
2505
- export type NetworkInterfaceFailureReason = (typeof NetworkInterfaceFailureReason)[keyof typeof NetworkInterfaceFailureReason];
2506
2000
  /**
2507
2001
  * <p>A reason a vehicle network interface isn't valid.</p>
2508
2002
  * @public
@@ -2519,32 +2013,6 @@ export interface InvalidNetworkInterface {
2519
2013
  */
2520
2014
  reason?: NetworkInterfaceFailureReason | undefined;
2521
2015
  }
2522
- /**
2523
- * @public
2524
- * @enum
2525
- */
2526
- export declare const SignalDecoderFailureReason: {
2527
- readonly CAN_SIGNAL_INFO_IS_NULL: "CAN_SIGNAL_INFO_IS_NULL";
2528
- readonly CONFLICTING_SIGNAL: "CONFLICTING_SIGNAL";
2529
- readonly CUSTOM_DECODING_SIGNAL_INFO_IS_NULL: "CUSTOM_DECODING_SIGNAL_INFO_IS_NULL";
2530
- readonly DUPLICATE_SIGNAL: "DUPLICATE_SIGNAL";
2531
- readonly EMPTY_MESSAGE_SIGNAL: "EMPTY_MESSAGE_SIGNAL";
2532
- readonly MESSAGE_SIGNAL_INFO_IS_NULL: "MESSAGE_SIGNAL_INFO_IS_NULL";
2533
- readonly NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE: "NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE";
2534
- readonly NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL: "NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL";
2535
- readonly NO_SIGNAL_IN_CATALOG_FOR_DECODER_SIGNAL: "NO_SIGNAL_IN_CATALOG_FOR_DECODER_SIGNAL";
2536
- readonly OBD_SIGNAL_INFO_IS_NULL: "OBD_SIGNAL_INFO_IS_NULL";
2537
- readonly SIGNAL_DECODER_INCOMPATIBLE_WITH_SIGNAL_CATALOG: "SIGNAL_DECODER_INCOMPATIBLE_WITH_SIGNAL_CATALOG";
2538
- readonly SIGNAL_DECODER_TYPE_INCOMPATIBLE_WITH_MESSAGE_SIGNAL_TYPE: "SIGNAL_DECODER_TYPE_INCOMPATIBLE_WITH_MESSAGE_SIGNAL_TYPE";
2539
- readonly SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE: "SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE";
2540
- readonly SIGNAL_NOT_IN_MODEL: "SIGNAL_NOT_IN_MODEL";
2541
- readonly SIGNAL_TO_ADD_ALREADY_EXISTS: "SIGNAL_TO_ADD_ALREADY_EXISTS";
2542
- readonly STRUCT_SIZE_MISMATCH: "STRUCT_SIZE_MISMATCH";
2543
- };
2544
- /**
2545
- * @public
2546
- */
2547
- export type SignalDecoderFailureReason = (typeof SignalDecoderFailureReason)[keyof typeof SignalDecoderFailureReason];
2548
2016
  /**
2549
2017
  * <p>A reason that a signal decoder isn't valid.</p>
2550
2018
  * @public
@@ -2566,30 +2034,6 @@ export interface InvalidSignalDecoder {
2566
2034
  */
2567
2035
  hint?: string | undefined;
2568
2036
  }
2569
- /**
2570
- * <p>The request couldn't be completed because it contains signal decoders with one or more
2571
- * validation errors.</p>
2572
- * @public
2573
- */
2574
- export declare class DecoderManifestValidationException extends __BaseException {
2575
- readonly name: "DecoderManifestValidationException";
2576
- readonly $fault: "client";
2577
- /**
2578
- * <p>The request couldn't be completed because of invalid signals in the request.</p>
2579
- * @public
2580
- */
2581
- invalidSignals?: InvalidSignalDecoder[] | undefined;
2582
- /**
2583
- * <p>The request couldn't be completed because of invalid network interfaces in the
2584
- * request.</p>
2585
- * @public
2586
- */
2587
- invalidNetworkInterfaces?: InvalidNetworkInterface[] | undefined;
2588
- /**
2589
- * @internal
2590
- */
2591
- constructor(opts: __ExceptionOptionType<DecoderManifestValidationException, __BaseException>);
2592
- }
2593
2037
  /**
2594
2038
  * @public
2595
2039
  */
@@ -2691,36 +2135,6 @@ export interface InvalidSignal {
2691
2135
  */
2692
2136
  reason?: string | undefined;
2693
2137
  }
2694
- /**
2695
- * <p>The request couldn't be completed because it contains signals that aren't
2696
- * valid.</p>
2697
- * @public
2698
- */
2699
- export declare class InvalidSignalsException extends __BaseException {
2700
- readonly name: "InvalidSignalsException";
2701
- readonly $fault: "client";
2702
- /**
2703
- * <p>The signals which caused the exception.</p>
2704
- * @public
2705
- */
2706
- invalidSignals?: InvalidSignal[] | undefined;
2707
- /**
2708
- * @internal
2709
- */
2710
- constructor(opts: __ExceptionOptionType<InvalidSignalsException, __BaseException>);
2711
- }
2712
- /**
2713
- * @public
2714
- * @enum
2715
- */
2716
- export declare const NodeDataEncoding: {
2717
- readonly BINARY: "BINARY";
2718
- readonly TYPED: "TYPED";
2719
- };
2720
- /**
2721
- * @public
2722
- */
2723
- export type NodeDataEncoding = (typeof NodeDataEncoding)[keyof typeof NodeDataEncoding];
2724
2138
  /**
2725
2139
  * <p>Represents a member of the complex data structure. The data type of the property can
2726
2140
  * be either primitive or another <code>struct</code>.</p>
@@ -3026,29 +2440,6 @@ export interface CreateSignalCatalogResponse {
3026
2440
  */
3027
2441
  arn: string | undefined;
3028
2442
  }
3029
- /**
3030
- * <p>The specified node type doesn't match the expected node type for a node. You can
3031
- * specify the node type as branch, sensor, actuator, or attribute.</p>
3032
- * @public
3033
- */
3034
- export declare class InvalidNodeException extends __BaseException {
3035
- readonly name: "InvalidNodeException";
3036
- readonly $fault: "client";
3037
- /**
3038
- * <p>The specified node type isn't valid.</p>
3039
- * @public
3040
- */
3041
- invalidNodes?: Node[] | undefined;
3042
- /**
3043
- * <p>The reason the node validation failed.</p>
3044
- * @public
3045
- */
3046
- reason?: string | undefined;
3047
- /**
3048
- * @internal
3049
- */
3050
- constructor(opts: __ExceptionOptionType<InvalidNodeException, __BaseException>);
3051
- }
3052
2443
  /**
3053
2444
  * @public
3054
2445
  */
@@ -3222,20 +2613,6 @@ export interface GetDecoderManifestRequest {
3222
2613
  */
3223
2614
  name: string | undefined;
3224
2615
  }
3225
- /**
3226
- * @public
3227
- * @enum
3228
- */
3229
- export declare const ManifestStatus: {
3230
- readonly ACTIVE: "ACTIVE";
3231
- readonly DRAFT: "DRAFT";
3232
- readonly INVALID: "INVALID";
3233
- readonly VALIDATING: "VALIDATING";
3234
- };
3235
- /**
3236
- * @public
3237
- */
3238
- export type ManifestStatus = (typeof ManifestStatus)[keyof typeof ManifestStatus];
3239
2616
  /**
3240
2617
  * @public
3241
2618
  */
@@ -3669,31 +3046,6 @@ export interface DisassociateVehicleFleetRequest {
3669
3046
  */
3670
3047
  export interface DisassociateVehicleFleetResponse {
3671
3048
  }
3672
- /**
3673
- * @public
3674
- * @enum
3675
- */
3676
- export declare const EncryptionStatus: {
3677
- readonly FAILURE: "FAILURE";
3678
- readonly PENDING: "PENDING";
3679
- readonly SUCCESS: "SUCCESS";
3680
- };
3681
- /**
3682
- * @public
3683
- */
3684
- export type EncryptionStatus = (typeof EncryptionStatus)[keyof typeof EncryptionStatus];
3685
- /**
3686
- * @public
3687
- * @enum
3688
- */
3689
- export declare const EncryptionType: {
3690
- readonly FLEETWISE_DEFAULT_ENCRYPTION: "FLEETWISE_DEFAULT_ENCRYPTION";
3691
- readonly KMS_BASED_ENCRYPTION: "KMS_BASED_ENCRYPTION";
3692
- };
3693
- /**
3694
- * @public
3695
- */
3696
- export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
3697
3049
  /**
3698
3050
  * @public
3699
3051
  */
@@ -4073,19 +3425,6 @@ export interface GetModelManifestResponse {
4073
3425
  */
4074
3426
  export interface GetRegisterAccountStatusRequest {
4075
3427
  }
4076
- /**
4077
- * @public
4078
- * @enum
4079
- */
4080
- export declare const RegistrationStatus: {
4081
- readonly REGISTRATION_FAILURE: "REGISTRATION_FAILURE";
4082
- readonly REGISTRATION_PENDING: "REGISTRATION_PENDING";
4083
- readonly REGISTRATION_SUCCESS: "REGISTRATION_SUCCESS";
4084
- };
4085
- /**
4086
- * @public
4087
- */
4088
- export type RegistrationStatus = (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
4089
3428
  /**
4090
3429
  * <p>Information about registering an Identity and Access Management (IAM) resource so Amazon Web Services IoT FleetWise edge agent
4091
3430
  * software can transfer your vehicle data to Amazon Timestream.</p>
@@ -4442,22 +3781,6 @@ export interface GetVehicleStatusRequest {
4442
3781
  */
4443
3782
  vehicleName: string | undefined;
4444
3783
  }
4445
- /**
4446
- * @public
4447
- * @enum
4448
- */
4449
- export declare const VehicleState: {
4450
- readonly CREATED: "CREATED";
4451
- readonly DELETING: "DELETING";
4452
- readonly HEALTHY: "HEALTHY";
4453
- readonly READY: "READY";
4454
- readonly READY_FOR_CHECKIN: "READY_FOR_CHECKIN";
4455
- readonly SUSPENDED: "SUSPENDED";
4456
- };
4457
- /**
4458
- * @public
4459
- */
4460
- export type VehicleState = (typeof VehicleState)[keyof typeof VehicleState];
4461
3784
  /**
4462
3785
  * <p>Information about a campaign associated with a vehicle.</p>
4463
3786
  * @public
@@ -4894,22 +4217,6 @@ export interface RegisterAccountResponse {
4894
4217
  */
4895
4218
  lastModificationTime: Date | undefined;
4896
4219
  }
4897
- /**
4898
- * @public
4899
- * @enum
4900
- */
4901
- export declare const SignalNodeType: {
4902
- readonly ACTUATOR: "ACTUATOR";
4903
- readonly ATTRIBUTE: "ATTRIBUTE";
4904
- readonly BRANCH: "BRANCH";
4905
- readonly CUSTOM_PROPERTY: "CUSTOM_PROPERTY";
4906
- readonly CUSTOM_STRUCT: "CUSTOM_STRUCT";
4907
- readonly SENSOR: "SENSOR";
4908
- };
4909
- /**
4910
- * @public
4911
- */
4912
- export type SignalNodeType = (typeof SignalNodeType)[keyof typeof SignalNodeType];
4913
4220
  /**
4914
4221
  * @public
4915
4222
  */