@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.
@@ -0,0 +1,480 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const NodeDataType: {
6
+ readonly BOOLEAN: "BOOLEAN";
7
+ readonly BOOLEAN_ARRAY: "BOOLEAN_ARRAY";
8
+ readonly DOUBLE: "DOUBLE";
9
+ readonly DOUBLE_ARRAY: "DOUBLE_ARRAY";
10
+ readonly FLOAT: "FLOAT";
11
+ readonly FLOAT_ARRAY: "FLOAT_ARRAY";
12
+ readonly INT16: "INT16";
13
+ readonly INT16_ARRAY: "INT16_ARRAY";
14
+ readonly INT32: "INT32";
15
+ readonly INT32_ARRAY: "INT32_ARRAY";
16
+ readonly INT64: "INT64";
17
+ readonly INT64_ARRAY: "INT64_ARRAY";
18
+ readonly INT8: "INT8";
19
+ readonly INT8_ARRAY: "INT8_ARRAY";
20
+ readonly STRING: "STRING";
21
+ readonly STRING_ARRAY: "STRING_ARRAY";
22
+ readonly STRUCT: "STRUCT";
23
+ readonly STRUCT_ARRAY: "STRUCT_ARRAY";
24
+ readonly UINT16: "UINT16";
25
+ readonly UINT16_ARRAY: "UINT16_ARRAY";
26
+ readonly UINT32: "UINT32";
27
+ readonly UINT32_ARRAY: "UINT32_ARRAY";
28
+ readonly UINT64: "UINT64";
29
+ readonly UINT64_ARRAY: "UINT64_ARRAY";
30
+ readonly UINT8: "UINT8";
31
+ readonly UINT8_ARRAY: "UINT8_ARRAY";
32
+ readonly UNIX_TIMESTAMP: "UNIX_TIMESTAMP";
33
+ readonly UNIX_TIMESTAMP_ARRAY: "UNIX_TIMESTAMP_ARRAY";
34
+ readonly UNKNOWN: "UNKNOWN";
35
+ };
36
+ /**
37
+ * @public
38
+ */
39
+ export type NodeDataType = (typeof NodeDataType)[keyof typeof NodeDataType];
40
+ /**
41
+ * @public
42
+ * @enum
43
+ */
44
+ export declare const ValidationExceptionReason: {
45
+ readonly CANNOT_PARSE: "cannotParse";
46
+ readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
47
+ readonly OTHER: "other";
48
+ readonly UNKNOWN_OPERATION: "unknownOperation";
49
+ };
50
+ /**
51
+ * @public
52
+ */
53
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
54
+ /**
55
+ * @public
56
+ * @enum
57
+ */
58
+ export declare const VehicleAssociationBehavior: {
59
+ readonly CREATE_IOT_THING: "CreateIotThing";
60
+ readonly VALIDATE_IOT_THING_EXISTS: "ValidateIotThingExists";
61
+ };
62
+ /**
63
+ * @public
64
+ */
65
+ export type VehicleAssociationBehavior = (typeof VehicleAssociationBehavior)[keyof typeof VehicleAssociationBehavior];
66
+ /**
67
+ * @public
68
+ * @enum
69
+ */
70
+ export declare const TimeUnit: {
71
+ readonly HOUR: "HOUR";
72
+ readonly MILLISECOND: "MILLISECOND";
73
+ readonly MINUTE: "MINUTE";
74
+ readonly SECOND: "SECOND";
75
+ };
76
+ /**
77
+ * @public
78
+ */
79
+ export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
80
+ /**
81
+ * @public
82
+ * @enum
83
+ */
84
+ export declare const UpdateMode: {
85
+ readonly MERGE: "Merge";
86
+ readonly OVERWRITE: "Overwrite";
87
+ };
88
+ /**
89
+ * @public
90
+ */
91
+ export type UpdateMode = (typeof UpdateMode)[keyof typeof UpdateMode];
92
+ /**
93
+ * @public
94
+ * @enum
95
+ */
96
+ export declare const TriggerMode: {
97
+ readonly ALWAYS: "ALWAYS";
98
+ readonly RISING_EDGE: "RISING_EDGE";
99
+ };
100
+ /**
101
+ * @public
102
+ */
103
+ export type TriggerMode = (typeof TriggerMode)[keyof typeof TriggerMode];
104
+ /**
105
+ * @public
106
+ * @enum
107
+ */
108
+ export declare const Compression: {
109
+ readonly OFF: "OFF";
110
+ readonly SNAPPY: "SNAPPY";
111
+ };
112
+ /**
113
+ * @public
114
+ */
115
+ export type Compression = (typeof Compression)[keyof typeof Compression];
116
+ /**
117
+ * @public
118
+ * @enum
119
+ */
120
+ export declare const DataFormat: {
121
+ readonly JSON: "JSON";
122
+ readonly PARQUET: "PARQUET";
123
+ };
124
+ /**
125
+ * @public
126
+ */
127
+ export type DataFormat = (typeof DataFormat)[keyof typeof DataFormat];
128
+ /**
129
+ * @public
130
+ * @enum
131
+ */
132
+ export declare const StorageCompressionFormat: {
133
+ readonly GZIP: "GZIP";
134
+ readonly NONE: "NONE";
135
+ };
136
+ /**
137
+ * @public
138
+ */
139
+ export type StorageCompressionFormat = (typeof StorageCompressionFormat)[keyof typeof StorageCompressionFormat];
140
+ /**
141
+ * @public
142
+ * @enum
143
+ */
144
+ export declare const StorageMaximumSizeUnit: {
145
+ readonly GB: "GB";
146
+ readonly MB: "MB";
147
+ readonly TB: "TB";
148
+ };
149
+ /**
150
+ * @public
151
+ */
152
+ export type StorageMaximumSizeUnit = (typeof StorageMaximumSizeUnit)[keyof typeof StorageMaximumSizeUnit];
153
+ /**
154
+ * @public
155
+ * @enum
156
+ */
157
+ export declare const StorageMinimumTimeToLiveUnit: {
158
+ readonly DAYS: "DAYS";
159
+ readonly HOURS: "HOURS";
160
+ readonly WEEKS: "WEEKS";
161
+ };
162
+ /**
163
+ * @public
164
+ */
165
+ export type StorageMinimumTimeToLiveUnit = (typeof StorageMinimumTimeToLiveUnit)[keyof typeof StorageMinimumTimeToLiveUnit];
166
+ /**
167
+ * @public
168
+ * @enum
169
+ */
170
+ export declare const DiagnosticsMode: {
171
+ readonly OFF: "OFF";
172
+ readonly SEND_ACTIVE_DTCS: "SEND_ACTIVE_DTCS";
173
+ };
174
+ /**
175
+ * @public
176
+ */
177
+ export type DiagnosticsMode = (typeof DiagnosticsMode)[keyof typeof DiagnosticsMode];
178
+ /**
179
+ * @public
180
+ * @enum
181
+ */
182
+ export declare const SpoolingMode: {
183
+ readonly OFF: "OFF";
184
+ readonly TO_DISK: "TO_DISK";
185
+ };
186
+ /**
187
+ * @public
188
+ */
189
+ export type SpoolingMode = (typeof SpoolingMode)[keyof typeof SpoolingMode];
190
+ /**
191
+ * @public
192
+ * @enum
193
+ */
194
+ export declare const CampaignStatus: {
195
+ readonly CREATING: "CREATING";
196
+ readonly RUNNING: "RUNNING";
197
+ readonly SUSPENDED: "SUSPENDED";
198
+ readonly WAITING_FOR_APPROVAL: "WAITING_FOR_APPROVAL";
199
+ };
200
+ /**
201
+ * @public
202
+ */
203
+ export type CampaignStatus = (typeof CampaignStatus)[keyof typeof CampaignStatus];
204
+ /**
205
+ * @public
206
+ * @enum
207
+ */
208
+ export declare const ListResponseScope: {
209
+ readonly METADATA_ONLY: "METADATA_ONLY";
210
+ };
211
+ /**
212
+ * @public
213
+ */
214
+ export type ListResponseScope = (typeof ListResponseScope)[keyof typeof ListResponseScope];
215
+ /**
216
+ * @public
217
+ * @enum
218
+ */
219
+ export declare const UpdateCampaignAction: {
220
+ readonly APPROVE: "APPROVE";
221
+ readonly RESUME: "RESUME";
222
+ readonly SUSPEND: "SUSPEND";
223
+ readonly UPDATE: "UPDATE";
224
+ };
225
+ /**
226
+ * @public
227
+ */
228
+ export type UpdateCampaignAction = (typeof UpdateCampaignAction)[keyof typeof UpdateCampaignAction];
229
+ /**
230
+ * @public
231
+ * @enum
232
+ */
233
+ export declare const SignalValueType: {
234
+ readonly FLOATING_POINT: "FLOATING_POINT";
235
+ readonly INTEGER: "INTEGER";
236
+ };
237
+ /**
238
+ * @public
239
+ */
240
+ export type SignalValueType = (typeof SignalValueType)[keyof typeof SignalValueType];
241
+ /**
242
+ * @public
243
+ * @enum
244
+ */
245
+ export declare const LogType: {
246
+ readonly ERROR: "ERROR";
247
+ readonly OFF: "OFF";
248
+ };
249
+ /**
250
+ * @public
251
+ */
252
+ export type LogType = (typeof LogType)[keyof typeof LogType];
253
+ /**
254
+ * @public
255
+ * @enum
256
+ */
257
+ export declare const DefaultForUnmappedSignalsType: {
258
+ readonly CUSTOM_DECODING: "CUSTOM_DECODING";
259
+ };
260
+ /**
261
+ * @public
262
+ */
263
+ export type DefaultForUnmappedSignalsType = (typeof DefaultForUnmappedSignalsType)[keyof typeof DefaultForUnmappedSignalsType];
264
+ /**
265
+ * @public
266
+ * @enum
267
+ */
268
+ export declare const NetworkInterfaceType: {
269
+ readonly CAN_INTERFACE: "CAN_INTERFACE";
270
+ readonly CUSTOM_DECODING_INTERFACE: "CUSTOM_DECODING_INTERFACE";
271
+ readonly OBD_INTERFACE: "OBD_INTERFACE";
272
+ readonly VEHICLE_MIDDLEWARE: "VEHICLE_MIDDLEWARE";
273
+ };
274
+ /**
275
+ * @public
276
+ */
277
+ export type NetworkInterfaceType = (typeof NetworkInterfaceType)[keyof typeof NetworkInterfaceType];
278
+ /**
279
+ * @public
280
+ * @enum
281
+ */
282
+ export declare const VehicleMiddlewareProtocol: {
283
+ readonly ROS_2: "ROS_2";
284
+ };
285
+ /**
286
+ * @public
287
+ */
288
+ export type VehicleMiddlewareProtocol = (typeof VehicleMiddlewareProtocol)[keyof typeof VehicleMiddlewareProtocol];
289
+ /**
290
+ * @public
291
+ * @enum
292
+ */
293
+ export declare const ROS2PrimitiveType: {
294
+ readonly BOOL: "BOOL";
295
+ readonly BYTE: "BYTE";
296
+ readonly CHAR: "CHAR";
297
+ readonly FLOAT32: "FLOAT32";
298
+ readonly FLOAT64: "FLOAT64";
299
+ readonly INT16: "INT16";
300
+ readonly INT32: "INT32";
301
+ readonly INT64: "INT64";
302
+ readonly INT8: "INT8";
303
+ readonly STRING: "STRING";
304
+ readonly UINT16: "UINT16";
305
+ readonly UINT32: "UINT32";
306
+ readonly UINT64: "UINT64";
307
+ readonly UINT8: "UINT8";
308
+ readonly WSTRING: "WSTRING";
309
+ };
310
+ /**
311
+ * @public
312
+ */
313
+ export type ROS2PrimitiveType = (typeof ROS2PrimitiveType)[keyof typeof ROS2PrimitiveType];
314
+ /**
315
+ * @public
316
+ * @enum
317
+ */
318
+ export declare const StructuredMessageListType: {
319
+ readonly DYNAMIC_BOUNDED_CAPACITY: "DYNAMIC_BOUNDED_CAPACITY";
320
+ readonly DYNAMIC_UNBOUNDED_CAPACITY: "DYNAMIC_UNBOUNDED_CAPACITY";
321
+ readonly FIXED_CAPACITY: "FIXED_CAPACITY";
322
+ };
323
+ /**
324
+ * @public
325
+ */
326
+ export type StructuredMessageListType = (typeof StructuredMessageListType)[keyof typeof StructuredMessageListType];
327
+ /**
328
+ * @public
329
+ * @enum
330
+ */
331
+ export declare const SignalDecoderType: {
332
+ readonly CAN_SIGNAL: "CAN_SIGNAL";
333
+ readonly CUSTOM_DECODING_SIGNAL: "CUSTOM_DECODING_SIGNAL";
334
+ readonly MESSAGE_SIGNAL: "MESSAGE_SIGNAL";
335
+ readonly OBD_SIGNAL: "OBD_SIGNAL";
336
+ };
337
+ /**
338
+ * @public
339
+ */
340
+ export type SignalDecoderType = (typeof SignalDecoderType)[keyof typeof SignalDecoderType];
341
+ /**
342
+ * @public
343
+ * @enum
344
+ */
345
+ export declare const NetworkInterfaceFailureReason: {
346
+ readonly CAN_NETWORK_INTERFACE_INFO_IS_NULL: "CAN_NETWORK_INTERFACE_INFO_IS_NULL";
347
+ readonly CONFLICTING_NETWORK_INTERFACE: "CONFLICTING_NETWORK_INTERFACE";
348
+ readonly CUSTOM_DECODING_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL: "CUSTOM_DECODING_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL";
349
+ readonly DUPLICATE_INTERFACE: "DUPLICATE_NETWORK_INTERFACE";
350
+ readonly NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS: "NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS";
351
+ readonly NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS: "NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS";
352
+ readonly OBD_NETWORK_INTERFACE_INFO_IS_NULL: "OBD_NETWORK_INTERFACE_INFO_IS_NULL";
353
+ readonly VEHICLE_MIDDLEWARE_NETWORK_INTERFACE_INFO_IS_NULL: "VEHICLE_MIDDLEWARE_NETWORK_INTERFACE_INFO_IS_NULL";
354
+ };
355
+ /**
356
+ * @public
357
+ */
358
+ export type NetworkInterfaceFailureReason = (typeof NetworkInterfaceFailureReason)[keyof typeof NetworkInterfaceFailureReason];
359
+ /**
360
+ * @public
361
+ * @enum
362
+ */
363
+ export declare const SignalDecoderFailureReason: {
364
+ readonly CAN_SIGNAL_INFO_IS_NULL: "CAN_SIGNAL_INFO_IS_NULL";
365
+ readonly CONFLICTING_SIGNAL: "CONFLICTING_SIGNAL";
366
+ readonly CUSTOM_DECODING_SIGNAL_INFO_IS_NULL: "CUSTOM_DECODING_SIGNAL_INFO_IS_NULL";
367
+ readonly DUPLICATE_SIGNAL: "DUPLICATE_SIGNAL";
368
+ readonly EMPTY_MESSAGE_SIGNAL: "EMPTY_MESSAGE_SIGNAL";
369
+ readonly MESSAGE_SIGNAL_INFO_IS_NULL: "MESSAGE_SIGNAL_INFO_IS_NULL";
370
+ readonly NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE: "NETWORK_INTERFACE_TYPE_INCOMPATIBLE_WITH_SIGNAL_DECODER_TYPE";
371
+ readonly NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL: "NO_DECODER_INFO_FOR_SIGNAL_IN_MODEL";
372
+ readonly NO_SIGNAL_IN_CATALOG_FOR_DECODER_SIGNAL: "NO_SIGNAL_IN_CATALOG_FOR_DECODER_SIGNAL";
373
+ readonly OBD_SIGNAL_INFO_IS_NULL: "OBD_SIGNAL_INFO_IS_NULL";
374
+ readonly SIGNAL_DECODER_INCOMPATIBLE_WITH_SIGNAL_CATALOG: "SIGNAL_DECODER_INCOMPATIBLE_WITH_SIGNAL_CATALOG";
375
+ readonly SIGNAL_DECODER_TYPE_INCOMPATIBLE_WITH_MESSAGE_SIGNAL_TYPE: "SIGNAL_DECODER_TYPE_INCOMPATIBLE_WITH_MESSAGE_SIGNAL_TYPE";
376
+ readonly SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE: "SIGNAL_NOT_ASSOCIATED_WITH_NETWORK_INTERFACE";
377
+ readonly SIGNAL_NOT_IN_MODEL: "SIGNAL_NOT_IN_MODEL";
378
+ readonly SIGNAL_TO_ADD_ALREADY_EXISTS: "SIGNAL_TO_ADD_ALREADY_EXISTS";
379
+ readonly STRUCT_SIZE_MISMATCH: "STRUCT_SIZE_MISMATCH";
380
+ };
381
+ /**
382
+ * @public
383
+ */
384
+ export type SignalDecoderFailureReason = (typeof SignalDecoderFailureReason)[keyof typeof SignalDecoderFailureReason];
385
+ /**
386
+ * @public
387
+ * @enum
388
+ */
389
+ export declare const NodeDataEncoding: {
390
+ readonly BINARY: "BINARY";
391
+ readonly TYPED: "TYPED";
392
+ };
393
+ /**
394
+ * @public
395
+ */
396
+ export type NodeDataEncoding = (typeof NodeDataEncoding)[keyof typeof NodeDataEncoding];
397
+ /**
398
+ * @public
399
+ * @enum
400
+ */
401
+ export declare const ManifestStatus: {
402
+ readonly ACTIVE: "ACTIVE";
403
+ readonly DRAFT: "DRAFT";
404
+ readonly INVALID: "INVALID";
405
+ readonly VALIDATING: "VALIDATING";
406
+ };
407
+ /**
408
+ * @public
409
+ */
410
+ export type ManifestStatus = (typeof ManifestStatus)[keyof typeof ManifestStatus];
411
+ /**
412
+ * @public
413
+ * @enum
414
+ */
415
+ export declare const EncryptionStatus: {
416
+ readonly FAILURE: "FAILURE";
417
+ readonly PENDING: "PENDING";
418
+ readonly SUCCESS: "SUCCESS";
419
+ };
420
+ /**
421
+ * @public
422
+ */
423
+ export type EncryptionStatus = (typeof EncryptionStatus)[keyof typeof EncryptionStatus];
424
+ /**
425
+ * @public
426
+ * @enum
427
+ */
428
+ export declare const EncryptionType: {
429
+ readonly FLEETWISE_DEFAULT_ENCRYPTION: "FLEETWISE_DEFAULT_ENCRYPTION";
430
+ readonly KMS_BASED_ENCRYPTION: "KMS_BASED_ENCRYPTION";
431
+ };
432
+ /**
433
+ * @public
434
+ */
435
+ export type EncryptionType = (typeof EncryptionType)[keyof typeof EncryptionType];
436
+ /**
437
+ * @public
438
+ * @enum
439
+ */
440
+ export declare const RegistrationStatus: {
441
+ readonly REGISTRATION_FAILURE: "REGISTRATION_FAILURE";
442
+ readonly REGISTRATION_PENDING: "REGISTRATION_PENDING";
443
+ readonly REGISTRATION_SUCCESS: "REGISTRATION_SUCCESS";
444
+ };
445
+ /**
446
+ * @public
447
+ */
448
+ export type RegistrationStatus = (typeof RegistrationStatus)[keyof typeof RegistrationStatus];
449
+ /**
450
+ * @public
451
+ * @enum
452
+ */
453
+ export declare const VehicleState: {
454
+ readonly CREATED: "CREATED";
455
+ readonly DELETING: "DELETING";
456
+ readonly HEALTHY: "HEALTHY";
457
+ readonly READY: "READY";
458
+ readonly READY_FOR_CHECKIN: "READY_FOR_CHECKIN";
459
+ readonly SUSPENDED: "SUSPENDED";
460
+ };
461
+ /**
462
+ * @public
463
+ */
464
+ export type VehicleState = (typeof VehicleState)[keyof typeof VehicleState];
465
+ /**
466
+ * @public
467
+ * @enum
468
+ */
469
+ export declare const SignalNodeType: {
470
+ readonly ACTUATOR: "ACTUATOR";
471
+ readonly ATTRIBUTE: "ATTRIBUTE";
472
+ readonly BRANCH: "BRANCH";
473
+ readonly CUSTOM_PROPERTY: "CUSTOM_PROPERTY";
474
+ readonly CUSTOM_STRUCT: "CUSTOM_STRUCT";
475
+ readonly SENSOR: "SENSOR";
476
+ };
477
+ /**
478
+ * @public
479
+ */
480
+ export type SignalNodeType = (typeof SignalNodeType)[keyof typeof SignalNodeType];
@@ -0,0 +1,216 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ValidationExceptionReason } from "./enums";
3
+ import { IoTFleetWiseServiceException as __BaseException } from "./IoTFleetWiseServiceException";
4
+ import { InvalidNetworkInterface, InvalidSignal, InvalidSignalDecoder, Node, ValidationExceptionField } from "./models_0";
5
+ /**
6
+ * <p>You don't have sufficient permission to perform this action.</p>
7
+ * @public
8
+ */
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
12
+ /**
13
+ * @internal
14
+ */
15
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
16
+ }
17
+ /**
18
+ * <p>The request couldn't be completed because the server temporarily failed.</p>
19
+ * @public
20
+ */
21
+ export declare class InternalServerException extends __BaseException {
22
+ readonly name: "InternalServerException";
23
+ readonly $fault: "server";
24
+ /**
25
+ * <p>The number of seconds to wait before retrying the command.</p>
26
+ * @public
27
+ */
28
+ retryAfterSeconds?: number | undefined;
29
+ /**
30
+ * @internal
31
+ */
32
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
33
+ }
34
+ /**
35
+ * <p>A service quota was exceeded. </p>
36
+ * @public
37
+ */
38
+ export declare class LimitExceededException extends __BaseException {
39
+ readonly name: "LimitExceededException";
40
+ readonly $fault: "client";
41
+ /**
42
+ * <p>The identifier of the resource that was exceeded.</p>
43
+ * @public
44
+ */
45
+ resourceId: string | undefined;
46
+ /**
47
+ * <p>The type of resource that was exceeded.</p>
48
+ * @public
49
+ */
50
+ resourceType: string | undefined;
51
+ /**
52
+ * @internal
53
+ */
54
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
55
+ }
56
+ /**
57
+ * <p>The resource wasn't found.</p>
58
+ * @public
59
+ */
60
+ export declare class ResourceNotFoundException extends __BaseException {
61
+ readonly name: "ResourceNotFoundException";
62
+ readonly $fault: "client";
63
+ /**
64
+ * <p>The identifier of the resource that wasn't found.</p>
65
+ * @public
66
+ */
67
+ resourceId: string | undefined;
68
+ /**
69
+ * <p>The type of resource that wasn't found.</p>
70
+ * @public
71
+ */
72
+ resourceType: string | undefined;
73
+ /**
74
+ * @internal
75
+ */
76
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
77
+ }
78
+ /**
79
+ * <p>The request couldn't be completed due to throttling.</p>
80
+ * @public
81
+ */
82
+ export declare class ThrottlingException extends __BaseException {
83
+ readonly name: "ThrottlingException";
84
+ readonly $fault: "client";
85
+ /**
86
+ * <p>The quota identifier of the applied throttling rules for this request.</p>
87
+ * @public
88
+ */
89
+ quotaCode?: string | undefined;
90
+ /**
91
+ * <p>The code for the service that couldn't be completed due to throttling.</p>
92
+ * @public
93
+ */
94
+ serviceCode?: string | undefined;
95
+ /**
96
+ * <p>The number of seconds to wait before retrying the command.</p>
97
+ * @public
98
+ */
99
+ retryAfterSeconds?: number | undefined;
100
+ /**
101
+ * @internal
102
+ */
103
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
104
+ }
105
+ /**
106
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
107
+ * @public
108
+ */
109
+ export declare class ValidationException extends __BaseException {
110
+ readonly name: "ValidationException";
111
+ readonly $fault: "client";
112
+ /**
113
+ * <p>The reason the input failed to satisfy the constraints specified by an Amazon Web Services
114
+ * service.</p>
115
+ * @public
116
+ */
117
+ reason?: ValidationExceptionReason | undefined;
118
+ /**
119
+ * <p>The list of fields that fail to satisfy the constraints specified by an Amazon Web Services
120
+ * service.</p>
121
+ * @public
122
+ */
123
+ fieldList?: ValidationExceptionField[] | undefined;
124
+ /**
125
+ * @internal
126
+ */
127
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
128
+ }
129
+ /**
130
+ * <p>The request has conflicting operations. This can occur if you're trying to perform
131
+ * more than one operation on the same resource at the same time.</p>
132
+ * @public
133
+ */
134
+ export declare class ConflictException extends __BaseException {
135
+ readonly name: "ConflictException";
136
+ readonly $fault: "client";
137
+ /**
138
+ * <p>The resource on which there are conflicting operations.</p>
139
+ * @public
140
+ */
141
+ resource: string | undefined;
142
+ /**
143
+ * <p>The type of resource on which there are conflicting operations..</p>
144
+ * @public
145
+ */
146
+ resourceType: string | undefined;
147
+ /**
148
+ * @internal
149
+ */
150
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
151
+ }
152
+ /**
153
+ * <p>The request couldn't be completed because it contains signal decoders with one or more
154
+ * validation errors.</p>
155
+ * @public
156
+ */
157
+ export declare class DecoderManifestValidationException extends __BaseException {
158
+ readonly name: "DecoderManifestValidationException";
159
+ readonly $fault: "client";
160
+ /**
161
+ * <p>The request couldn't be completed because of invalid signals in the request.</p>
162
+ * @public
163
+ */
164
+ invalidSignals?: InvalidSignalDecoder[] | undefined;
165
+ /**
166
+ * <p>The request couldn't be completed because of invalid network interfaces in the
167
+ * request.</p>
168
+ * @public
169
+ */
170
+ invalidNetworkInterfaces?: InvalidNetworkInterface[] | undefined;
171
+ /**
172
+ * @internal
173
+ */
174
+ constructor(opts: __ExceptionOptionType<DecoderManifestValidationException, __BaseException>);
175
+ }
176
+ /**
177
+ * <p>The request couldn't be completed because it contains signals that aren't
178
+ * valid.</p>
179
+ * @public
180
+ */
181
+ export declare class InvalidSignalsException extends __BaseException {
182
+ readonly name: "InvalidSignalsException";
183
+ readonly $fault: "client";
184
+ /**
185
+ * <p>The signals which caused the exception.</p>
186
+ * @public
187
+ */
188
+ invalidSignals?: InvalidSignal[] | undefined;
189
+ /**
190
+ * @internal
191
+ */
192
+ constructor(opts: __ExceptionOptionType<InvalidSignalsException, __BaseException>);
193
+ }
194
+ /**
195
+ * <p>The specified node type doesn't match the expected node type for a node. You can
196
+ * specify the node type as branch, sensor, actuator, or attribute.</p>
197
+ * @public
198
+ */
199
+ export declare class InvalidNodeException extends __BaseException {
200
+ readonly name: "InvalidNodeException";
201
+ readonly $fault: "client";
202
+ /**
203
+ * <p>The specified node type isn't valid.</p>
204
+ * @public
205
+ */
206
+ invalidNodes?: Node[] | undefined;
207
+ /**
208
+ * <p>The reason the node validation failed.</p>
209
+ * @public
210
+ */
211
+ reason?: string | undefined;
212
+ /**
213
+ * @internal
214
+ */
215
+ constructor(opts: __ExceptionOptionType<InvalidNodeException, __BaseException>);
216
+ }