@aws-sdk/client-iotfleetwise 3.693.0 → 3.698.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.
Files changed (66) hide show
  1. package/README.md +43 -0
  2. package/dist-cjs/index.js +345 -2
  3. package/dist-es/IoTFleetWise.js +10 -0
  4. package/dist-es/commands/CreateStateTemplateCommand.js +22 -0
  5. package/dist-es/commands/DeleteStateTemplateCommand.js +22 -0
  6. package/dist-es/commands/GetStateTemplateCommand.js +22 -0
  7. package/dist-es/commands/ListStateTemplatesCommand.js +22 -0
  8. package/dist-es/commands/UpdateStateTemplateCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +87 -0
  11. package/dist-es/pagination/ListStateTemplatesPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/protocols/Aws_json1_0.js +143 -0
  14. package/dist-types/IoTFleetWise.d.ts +39 -0
  15. package/dist-types/IoTFleetWiseClient.d.ts +10 -2
  16. package/dist-types/commands/BatchCreateVehicleCommand.d.ts +14 -0
  17. package/dist-types/commands/BatchUpdateVehicleCommand.d.ts +17 -0
  18. package/dist-types/commands/CreateCampaignCommand.d.ts +46 -0
  19. package/dist-types/commands/CreateDecoderManifestCommand.d.ts +11 -3
  20. package/dist-types/commands/CreateModelManifestCommand.d.ts +2 -1
  21. package/dist-types/commands/CreateSignalCatalogCommand.d.ts +2 -1
  22. package/dist-types/commands/CreateStateTemplateCommand.d.ts +119 -0
  23. package/dist-types/commands/CreateVehicleCommand.d.ts +14 -0
  24. package/dist-types/commands/DeleteDecoderManifestCommand.d.ts +0 -4
  25. package/dist-types/commands/DeleteFleetCommand.d.ts +0 -4
  26. package/dist-types/commands/DeleteModelManifestCommand.d.ts +0 -4
  27. package/dist-types/commands/DeleteSignalCatalogCommand.d.ts +0 -4
  28. package/dist-types/commands/DeleteStateTemplateCommand.d.ts +85 -0
  29. package/dist-types/commands/DeleteVehicleCommand.d.ts +0 -4
  30. package/dist-types/commands/DisassociateVehicleFleetCommand.d.ts +0 -4
  31. package/dist-types/commands/GetCampaignCommand.d.ts +46 -0
  32. package/dist-types/commands/GetStateTemplateCommand.d.ts +104 -0
  33. package/dist-types/commands/GetVehicleCommand.d.ts +14 -0
  34. package/dist-types/commands/GetVehicleStatusCommand.d.ts +2 -2
  35. package/dist-types/commands/ImportDecoderManifestCommand.d.ts +5 -2
  36. package/dist-types/commands/ImportSignalCatalogCommand.d.ts +2 -1
  37. package/dist-types/commands/ListDecoderManifestNetworkInterfacesCommand.d.ts +4 -1
  38. package/dist-types/commands/ListDecoderManifestSignalsCommand.d.ts +4 -1
  39. package/dist-types/commands/ListStateTemplatesCommand.d.ts +98 -0
  40. package/dist-types/commands/PutEncryptionConfigurationCommand.d.ts +4 -1
  41. package/dist-types/commands/RegisterAccountCommand.d.ts +12 -4
  42. package/dist-types/commands/UpdateDecoderManifestCommand.d.ts +19 -5
  43. package/dist-types/commands/UpdateFleetCommand.d.ts +0 -4
  44. package/dist-types/commands/UpdateModelManifestCommand.d.ts +2 -1
  45. package/dist-types/commands/UpdateSignalCatalogCommand.d.ts +2 -1
  46. package/dist-types/commands/UpdateStateTemplateCommand.d.ts +111 -0
  47. package/dist-types/commands/UpdateVehicleCommand.d.ts +17 -0
  48. package/dist-types/commands/index.d.ts +5 -0
  49. package/dist-types/index.d.ts +3 -0
  50. package/dist-types/models/models_0.d.ts +1137 -146
  51. package/dist-types/pagination/ListStateTemplatesPaginator.d.ts +7 -0
  52. package/dist-types/pagination/index.d.ts +1 -0
  53. package/dist-types/protocols/Aws_json1_0.d.ts +45 -0
  54. package/dist-types/ts3.4/IoTFleetWise.d.ts +86 -0
  55. package/dist-types/ts3.4/IoTFleetWiseClient.d.ts +30 -0
  56. package/dist-types/ts3.4/commands/CreateStateTemplateCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/DeleteStateTemplateCommand.d.ts +51 -0
  58. package/dist-types/ts3.4/commands/GetStateTemplateCommand.d.ts +50 -0
  59. package/dist-types/ts3.4/commands/ListStateTemplatesCommand.d.ts +51 -0
  60. package/dist-types/ts3.4/commands/UpdateStateTemplateCommand.d.ts +51 -0
  61. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  62. package/dist-types/ts3.4/models/models_0.d.ts +256 -0
  63. package/dist-types/ts3.4/pagination/ListStateTemplatesPaginator.d.ts +11 -0
  64. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  65. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +60 -0
  66. package/package.json +35 -35
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ IoTFleetWiseClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../IoTFleetWiseClient";
8
+ import {
9
+ UpdateStateTemplateRequest,
10
+ UpdateStateTemplateResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateStateTemplateCommandInput
15
+ extends UpdateStateTemplateRequest {}
16
+ export interface UpdateStateTemplateCommandOutput
17
+ extends UpdateStateTemplateResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateStateTemplateCommand_base: {
20
+ new (
21
+ input: UpdateStateTemplateCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateStateTemplateCommandInput,
24
+ UpdateStateTemplateCommandOutput,
25
+ IoTFleetWiseClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: UpdateStateTemplateCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateStateTemplateCommandInput,
33
+ UpdateStateTemplateCommandOutput,
34
+ IoTFleetWiseClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateStateTemplateCommand extends UpdateStateTemplateCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateStateTemplateRequest;
44
+ output: UpdateStateTemplateResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateStateTemplateCommandInput;
48
+ output: UpdateStateTemplateCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -6,12 +6,14 @@ export * from "./CreateDecoderManifestCommand";
6
6
  export * from "./CreateFleetCommand";
7
7
  export * from "./CreateModelManifestCommand";
8
8
  export * from "./CreateSignalCatalogCommand";
9
+ export * from "./CreateStateTemplateCommand";
9
10
  export * from "./CreateVehicleCommand";
10
11
  export * from "./DeleteCampaignCommand";
11
12
  export * from "./DeleteDecoderManifestCommand";
12
13
  export * from "./DeleteFleetCommand";
13
14
  export * from "./DeleteModelManifestCommand";
14
15
  export * from "./DeleteSignalCatalogCommand";
16
+ export * from "./DeleteStateTemplateCommand";
15
17
  export * from "./DeleteVehicleCommand";
16
18
  export * from "./DisassociateVehicleFleetCommand";
17
19
  export * from "./GetCampaignCommand";
@@ -22,6 +24,7 @@ export * from "./GetLoggingOptionsCommand";
22
24
  export * from "./GetModelManifestCommand";
23
25
  export * from "./GetRegisterAccountStatusCommand";
24
26
  export * from "./GetSignalCatalogCommand";
27
+ export * from "./GetStateTemplateCommand";
25
28
  export * from "./GetVehicleCommand";
26
29
  export * from "./GetVehicleStatusCommand";
27
30
  export * from "./ImportDecoderManifestCommand";
@@ -36,6 +39,7 @@ export * from "./ListModelManifestNodesCommand";
36
39
  export * from "./ListModelManifestsCommand";
37
40
  export * from "./ListSignalCatalogNodesCommand";
38
41
  export * from "./ListSignalCatalogsCommand";
42
+ export * from "./ListStateTemplatesCommand";
39
43
  export * from "./ListTagsForResourceCommand";
40
44
  export * from "./ListVehiclesCommand";
41
45
  export * from "./ListVehiclesInFleetCommand";
@@ -49,4 +53,5 @@ export * from "./UpdateDecoderManifestCommand";
49
53
  export * from "./UpdateFleetCommand";
50
54
  export * from "./UpdateModelManifestCommand";
51
55
  export * from "./UpdateSignalCatalogCommand";
56
+ export * from "./UpdateStateTemplateCommand";
52
57
  export * from "./UpdateVehicleCommand";
@@ -133,6 +133,55 @@ export declare const VehicleAssociationBehavior: {
133
133
  };
134
134
  export type VehicleAssociationBehavior =
135
135
  (typeof VehicleAssociationBehavior)[keyof typeof VehicleAssociationBehavior];
136
+ export interface OnChangeStateTemplateUpdateStrategy {}
137
+ export declare const TimeUnit: {
138
+ readonly HOUR: "HOUR";
139
+ readonly MILLISECOND: "MILLISECOND";
140
+ readonly MINUTE: "MINUTE";
141
+ readonly SECOND: "SECOND";
142
+ };
143
+ export type TimeUnit = (typeof TimeUnit)[keyof typeof TimeUnit];
144
+ export interface TimePeriod {
145
+ unit: TimeUnit | undefined;
146
+ value: number | undefined;
147
+ }
148
+ export interface PeriodicStateTemplateUpdateStrategy {
149
+ stateTemplateUpdateRate: TimePeriod | undefined;
150
+ }
151
+ export type StateTemplateUpdateStrategy =
152
+ | StateTemplateUpdateStrategy.OnChangeMember
153
+ | StateTemplateUpdateStrategy.PeriodicMember
154
+ | StateTemplateUpdateStrategy.$UnknownMember;
155
+ export declare namespace StateTemplateUpdateStrategy {
156
+ interface PeriodicMember {
157
+ periodic: PeriodicStateTemplateUpdateStrategy;
158
+ onChange?: never;
159
+ $unknown?: never;
160
+ }
161
+ interface OnChangeMember {
162
+ periodic?: never;
163
+ onChange: OnChangeStateTemplateUpdateStrategy;
164
+ $unknown?: never;
165
+ }
166
+ interface $UnknownMember {
167
+ periodic?: never;
168
+ onChange?: never;
169
+ $unknown: [string, any];
170
+ }
171
+ interface Visitor<T> {
172
+ periodic: (value: PeriodicStateTemplateUpdateStrategy) => T;
173
+ onChange: (value: OnChangeStateTemplateUpdateStrategy) => T;
174
+ _: (name: string, value: any) => T;
175
+ }
176
+ const visit: <T>(
177
+ value: StateTemplateUpdateStrategy,
178
+ visitor: Visitor<T>
179
+ ) => T;
180
+ }
181
+ export interface StateTemplateAssociation {
182
+ identifier: string | undefined;
183
+ stateTemplateUpdateStrategy: StateTemplateUpdateStrategy | undefined;
184
+ }
136
185
  export interface Tag {
137
186
  Key: string | undefined;
138
187
  Value: string | undefined;
@@ -144,6 +193,7 @@ export interface CreateVehicleRequestItem {
144
193
  attributes?: Record<string, string> | undefined;
145
194
  associationBehavior?: VehicleAssociationBehavior | undefined;
146
195
  tags?: Tag[] | undefined;
196
+ stateTemplates?: StateTemplateAssociation[] | undefined;
147
197
  }
148
198
  export interface BatchCreateVehicleRequest {
149
199
  vehicles: CreateVehicleRequestItem[] | undefined;
@@ -173,6 +223,8 @@ export interface UpdateVehicleRequestItem {
173
223
  decoderManifestArn?: string | undefined;
174
224
  attributes?: Record<string, string> | undefined;
175
225
  attributeUpdateMode?: UpdateMode | undefined;
226
+ stateTemplatesToAdd?: StateTemplateAssociation[] | undefined;
227
+ stateTemplatesToRemove?: string[] | undefined;
176
228
  }
177
229
  export interface BatchUpdateVehicleRequest {
178
230
  vehicles: UpdateVehicleRequestItem[] | undefined;
@@ -251,6 +303,10 @@ export declare const Compression: {
251
303
  readonly SNAPPY: "SNAPPY";
252
304
  };
253
305
  export type Compression = (typeof Compression)[keyof typeof Compression];
306
+ export interface MqttTopicConfig {
307
+ mqttTopicArn: string | undefined;
308
+ executionRoleArn: string | undefined;
309
+ }
254
310
  export declare const DataFormat: {
255
311
  readonly JSON: "JSON";
256
312
  readonly PARQUET: "PARQUET";
@@ -273,6 +329,7 @@ export interface TimestreamConfig {
273
329
  executionRoleArn: string | undefined;
274
330
  }
275
331
  export type DataDestinationConfig =
332
+ | DataDestinationConfig.MqttTopicConfigMember
276
333
  | DataDestinationConfig.S3ConfigMember
277
334
  | DataDestinationConfig.TimestreamConfigMember
278
335
  | DataDestinationConfig.$UnknownMember;
@@ -280,25 +337,71 @@ export declare namespace DataDestinationConfig {
280
337
  interface S3ConfigMember {
281
338
  s3Config: S3Config;
282
339
  timestreamConfig?: never;
340
+ mqttTopicConfig?: never;
283
341
  $unknown?: never;
284
342
  }
285
343
  interface TimestreamConfigMember {
286
344
  s3Config?: never;
287
345
  timestreamConfig: TimestreamConfig;
346
+ mqttTopicConfig?: never;
347
+ $unknown?: never;
348
+ }
349
+ interface MqttTopicConfigMember {
350
+ s3Config?: never;
351
+ timestreamConfig?: never;
352
+ mqttTopicConfig: MqttTopicConfig;
288
353
  $unknown?: never;
289
354
  }
290
355
  interface $UnknownMember {
291
356
  s3Config?: never;
292
357
  timestreamConfig?: never;
358
+ mqttTopicConfig?: never;
293
359
  $unknown: [string, any];
294
360
  }
295
361
  interface Visitor<T> {
296
362
  s3Config: (value: S3Config) => T;
297
363
  timestreamConfig: (value: TimestreamConfig) => T;
364
+ mqttTopicConfig: (value: MqttTopicConfig) => T;
298
365
  _: (name: string, value: any) => T;
299
366
  }
300
367
  const visit: <T>(value: DataDestinationConfig, visitor: Visitor<T>) => T;
301
368
  }
369
+ export declare const StorageMaximumSizeUnit: {
370
+ readonly GB: "GB";
371
+ readonly MB: "MB";
372
+ readonly TB: "TB";
373
+ };
374
+ export type StorageMaximumSizeUnit =
375
+ (typeof StorageMaximumSizeUnit)[keyof typeof StorageMaximumSizeUnit];
376
+ export interface StorageMaximumSize {
377
+ unit: StorageMaximumSizeUnit | undefined;
378
+ value: number | undefined;
379
+ }
380
+ export declare const StorageMinimumTimeToLiveUnit: {
381
+ readonly DAYS: "DAYS";
382
+ readonly HOURS: "HOURS";
383
+ readonly WEEKS: "WEEKS";
384
+ };
385
+ export type StorageMinimumTimeToLiveUnit =
386
+ (typeof StorageMinimumTimeToLiveUnit)[keyof typeof StorageMinimumTimeToLiveUnit];
387
+ export interface StorageMinimumTimeToLive {
388
+ unit: StorageMinimumTimeToLiveUnit | undefined;
389
+ value: number | undefined;
390
+ }
391
+ export interface DataPartitionStorageOptions {
392
+ maximumSize: StorageMaximumSize | undefined;
393
+ storageLocation: string | undefined;
394
+ minimumTimeToLive: StorageMinimumTimeToLive | undefined;
395
+ }
396
+ export interface DataPartitionUploadOptions {
397
+ expression: string | undefined;
398
+ conditionLanguageVersion?: number | undefined;
399
+ }
400
+ export interface DataPartition {
401
+ id: string | undefined;
402
+ storageOptions: DataPartitionStorageOptions | undefined;
403
+ uploadOptions?: DataPartitionUploadOptions | undefined;
404
+ }
302
405
  export declare const DiagnosticsMode: {
303
406
  readonly OFF: "OFF";
304
407
  readonly SEND_ACTIVE_DTCS: "SEND_ACTIVE_DTCS";
@@ -309,6 +412,47 @@ export interface SignalInformation {
309
412
  name: string | undefined;
310
413
  maxSampleCount?: number | undefined;
311
414
  minimumSamplingIntervalMs?: number | undefined;
415
+ dataPartitionId?: string | undefined;
416
+ }
417
+ export interface ConditionBasedSignalFetchConfig {
418
+ conditionExpression: string | undefined;
419
+ triggerMode: TriggerMode | undefined;
420
+ }
421
+ export interface TimeBasedSignalFetchConfig {
422
+ executionFrequencyMs: number | undefined;
423
+ }
424
+ export type SignalFetchConfig =
425
+ | SignalFetchConfig.ConditionBasedMember
426
+ | SignalFetchConfig.TimeBasedMember
427
+ | SignalFetchConfig.$UnknownMember;
428
+ export declare namespace SignalFetchConfig {
429
+ interface TimeBasedMember {
430
+ timeBased: TimeBasedSignalFetchConfig;
431
+ conditionBased?: never;
432
+ $unknown?: never;
433
+ }
434
+ interface ConditionBasedMember {
435
+ timeBased?: never;
436
+ conditionBased: ConditionBasedSignalFetchConfig;
437
+ $unknown?: never;
438
+ }
439
+ interface $UnknownMember {
440
+ timeBased?: never;
441
+ conditionBased?: never;
442
+ $unknown: [string, any];
443
+ }
444
+ interface Visitor<T> {
445
+ timeBased: (value: TimeBasedSignalFetchConfig) => T;
446
+ conditionBased: (value: ConditionBasedSignalFetchConfig) => T;
447
+ _: (name: string, value: any) => T;
448
+ }
449
+ const visit: <T>(value: SignalFetchConfig, visitor: Visitor<T>) => T;
450
+ }
451
+ export interface SignalFetchInformation {
452
+ fullyQualifiedName: string | undefined;
453
+ signalFetchConfig: SignalFetchConfig | undefined;
454
+ conditionLanguageVersion?: number | undefined;
455
+ actions: string[] | undefined;
312
456
  }
313
457
  export declare const SpoolingMode: {
314
458
  readonly OFF: "OFF";
@@ -332,6 +476,8 @@ export interface CreateCampaignRequest {
332
476
  dataExtraDimensions?: string[] | undefined;
333
477
  tags?: Tag[] | undefined;
334
478
  dataDestinationConfigs?: DataDestinationConfig[] | undefined;
479
+ dataPartitions?: DataPartition[] | undefined;
480
+ signalsToFetch?: SignalFetchInformation[] | undefined;
335
481
  }
336
482
  export interface CreateCampaignResponse {
337
483
  name?: string | undefined;
@@ -375,6 +521,8 @@ export interface GetCampaignResponse {
375
521
  creationTime?: Date | undefined;
376
522
  lastModificationTime?: Date | undefined;
377
523
  dataDestinationConfigs?: DataDestinationConfig[] | undefined;
524
+ dataPartitions?: DataPartition[] | undefined;
525
+ signalsToFetch?: SignalFetchInformation[] | undefined;
378
526
  }
379
527
  export interface ListCampaignsRequest {
380
528
  nextToken?: string | undefined;
@@ -443,6 +591,14 @@ export interface CloudWatchLogDeliveryOptions {
443
591
  logType: LogType | undefined;
444
592
  logGroupName?: string | undefined;
445
593
  }
594
+ export declare const DefaultForUnmappedSignalsType: {
595
+ readonly CUSTOM_DECODING: "CUSTOM_DECODING";
596
+ };
597
+ export type DefaultForUnmappedSignalsType =
598
+ (typeof DefaultForUnmappedSignalsType)[keyof typeof DefaultForUnmappedSignalsType];
599
+ export interface CustomDecodingInterface {
600
+ name: string | undefined;
601
+ }
446
602
  export interface ObdInterface {
447
603
  name: string | undefined;
448
604
  requestMessageId: number | undefined;
@@ -454,6 +610,7 @@ export interface ObdInterface {
454
610
  }
455
611
  export declare const NetworkInterfaceType: {
456
612
  readonly CAN_INTERFACE: "CAN_INTERFACE";
613
+ readonly CUSTOM_DECODING_INTERFACE: "CUSTOM_DECODING_INTERFACE";
457
614
  readonly OBD_INTERFACE: "OBD_INTERFACE";
458
615
  readonly VEHICLE_MIDDLEWARE: "VEHICLE_MIDDLEWARE";
459
616
  };
@@ -474,6 +631,10 @@ export interface NetworkInterface {
474
631
  canInterface?: CanInterface | undefined;
475
632
  obdInterface?: ObdInterface | undefined;
476
633
  vehicleMiddleware?: VehicleMiddleware | undefined;
634
+ customDecodingInterface?: CustomDecodingInterface | undefined;
635
+ }
636
+ export interface CustomDecodingSignal {
637
+ id: string | undefined;
477
638
  }
478
639
  export declare const ROS2PrimitiveType: {
479
640
  readonly BOOL: "BOOL";
@@ -540,6 +701,7 @@ export interface ObdSignal {
540
701
  }
541
702
  export declare const SignalDecoderType: {
542
703
  readonly CAN_SIGNAL: "CAN_SIGNAL";
704
+ readonly CUSTOM_DECODING_SIGNAL: "CUSTOM_DECODING_SIGNAL";
543
705
  readonly MESSAGE_SIGNAL: "MESSAGE_SIGNAL";
544
706
  readonly OBD_SIGNAL: "OBD_SIGNAL";
545
707
  };
@@ -552,6 +714,7 @@ export interface CreateDecoderManifestResponse {
552
714
  export declare const NetworkInterfaceFailureReason: {
553
715
  readonly CAN_NETWORK_INTERFACE_INFO_IS_NULL: "CAN_NETWORK_INTERFACE_INFO_IS_NULL";
554
716
  readonly CONFLICTING_NETWORK_INTERFACE: "CONFLICTING_NETWORK_INTERFACE";
717
+ readonly CUSTOM_DECODING_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL: "CUSTOM_DECODING_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL";
555
718
  readonly DUPLICATE_INTERFACE: "DUPLICATE_NETWORK_INTERFACE";
556
719
  readonly NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS: "NETWORK_INTERFACE_TO_ADD_ALREADY_EXISTS";
557
720
  readonly NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS: "NETWORK_INTERFACE_TO_REMOVE_ASSOCIATED_WITH_SIGNALS";
@@ -567,6 +730,7 @@ export interface InvalidNetworkInterface {
567
730
  export declare const SignalDecoderFailureReason: {
568
731
  readonly CAN_SIGNAL_INFO_IS_NULL: "CAN_SIGNAL_INFO_IS_NULL";
569
732
  readonly CONFLICTING_SIGNAL: "CONFLICTING_SIGNAL";
733
+ readonly CUSTOM_DECODING_SIGNAL_INFO_IS_NULL: "CUSTOM_DECODING_SIGNAL_INFO_IS_NULL";
570
734
  readonly DUPLICATE_SIGNAL: "DUPLICATE_SIGNAL";
571
735
  readonly EMPTY_MESSAGE_SIGNAL: "EMPTY_MESSAGE_SIGNAL";
572
736
  readonly MESSAGE_SIGNAL_INFO_IS_NULL: "MESSAGE_SIGNAL_INFO_IS_NULL";
@@ -768,6 +932,20 @@ export declare class InvalidNodeException extends __BaseException {
768
932
  opts: __ExceptionOptionType<InvalidNodeException, __BaseException>
769
933
  );
770
934
  }
935
+ export interface CreateStateTemplateRequest {
936
+ name: string | undefined;
937
+ description?: string | undefined;
938
+ signalCatalogArn: string | undefined;
939
+ stateTemplateProperties: string[] | undefined;
940
+ dataExtraDimensions?: string[] | undefined;
941
+ metadataExtraDimensions?: string[] | undefined;
942
+ tags?: Tag[] | undefined;
943
+ }
944
+ export interface CreateStateTemplateResponse {
945
+ name?: string | undefined;
946
+ arn?: string | undefined;
947
+ id?: string | undefined;
948
+ }
771
949
  export interface CreateVehicleRequest {
772
950
  vehicleName: string | undefined;
773
951
  modelManifestArn: string | undefined;
@@ -775,6 +953,7 @@ export interface CreateVehicleRequest {
775
953
  attributes?: Record<string, string> | undefined;
776
954
  associationBehavior?: VehicleAssociationBehavior | undefined;
777
955
  tags?: Tag[] | undefined;
956
+ stateTemplates?: StateTemplateAssociation[] | undefined;
778
957
  }
779
958
  export interface CreateVehicleResponse {
780
959
  vehicleName?: string | undefined;
@@ -893,6 +1072,14 @@ export interface DeleteSignalCatalogResponse {
893
1072
  name: string | undefined;
894
1073
  arn: string | undefined;
895
1074
  }
1075
+ export interface DeleteStateTemplateRequest {
1076
+ identifier: string | undefined;
1077
+ }
1078
+ export interface DeleteStateTemplateResponse {
1079
+ name?: string | undefined;
1080
+ arn?: string | undefined;
1081
+ id?: string | undefined;
1082
+ }
896
1083
  export interface DeleteVehicleRequest {
897
1084
  vehicleName: string | undefined;
898
1085
  }
@@ -1063,6 +1250,21 @@ export interface GetSignalCatalogResponse {
1063
1250
  creationTime: Date | undefined;
1064
1251
  lastModificationTime: Date | undefined;
1065
1252
  }
1253
+ export interface GetStateTemplateRequest {
1254
+ identifier: string | undefined;
1255
+ }
1256
+ export interface GetStateTemplateResponse {
1257
+ name?: string | undefined;
1258
+ arn?: string | undefined;
1259
+ description?: string | undefined;
1260
+ signalCatalogArn?: string | undefined;
1261
+ stateTemplateProperties?: string[] | undefined;
1262
+ dataExtraDimensions?: string[] | undefined;
1263
+ metadataExtraDimensions?: string[] | undefined;
1264
+ creationTime?: Date | undefined;
1265
+ lastModificationTime?: Date | undefined;
1266
+ id?: string | undefined;
1267
+ }
1066
1268
  export interface GetVehicleRequest {
1067
1269
  vehicleName: string | undefined;
1068
1270
  }
@@ -1072,6 +1274,7 @@ export interface GetVehicleResponse {
1072
1274
  modelManifestArn?: string | undefined;
1073
1275
  decoderManifestArn?: string | undefined;
1074
1276
  attributes?: Record<string, string> | undefined;
1277
+ stateTemplates?: StateTemplateAssociation[] | undefined;
1075
1278
  creationTime?: Date | undefined;
1076
1279
  lastModificationTime?: Date | undefined;
1077
1280
  }
@@ -1227,6 +1430,36 @@ export interface UpdateSignalCatalogResponse {
1227
1430
  name: string | undefined;
1228
1431
  arn: string | undefined;
1229
1432
  }
1433
+ export interface ListStateTemplatesRequest {
1434
+ nextToken?: string | undefined;
1435
+ maxResults?: number | undefined;
1436
+ }
1437
+ export interface StateTemplateSummary {
1438
+ name?: string | undefined;
1439
+ arn?: string | undefined;
1440
+ signalCatalogArn?: string | undefined;
1441
+ description?: string | undefined;
1442
+ creationTime?: Date | undefined;
1443
+ lastModificationTime?: Date | undefined;
1444
+ id?: string | undefined;
1445
+ }
1446
+ export interface ListStateTemplatesResponse {
1447
+ summaries?: StateTemplateSummary[] | undefined;
1448
+ nextToken?: string | undefined;
1449
+ }
1450
+ export interface UpdateStateTemplateRequest {
1451
+ identifier: string | undefined;
1452
+ description?: string | undefined;
1453
+ stateTemplatePropertiesToAdd?: string[] | undefined;
1454
+ stateTemplatePropertiesToRemove?: string[] | undefined;
1455
+ dataExtraDimensions?: string[] | undefined;
1456
+ metadataExtraDimensions?: string[] | undefined;
1457
+ }
1458
+ export interface UpdateStateTemplateResponse {
1459
+ name?: string | undefined;
1460
+ arn?: string | undefined;
1461
+ id?: string | undefined;
1462
+ }
1230
1463
  export interface TagResourceRequest {
1231
1464
  ResourceARN: string | undefined;
1232
1465
  Tags: Tag[] | undefined;
@@ -1263,6 +1496,8 @@ export interface UpdateVehicleRequest {
1263
1496
  decoderManifestArn?: string | undefined;
1264
1497
  attributes?: Record<string, string> | undefined;
1265
1498
  attributeUpdateMode?: UpdateMode | undefined;
1499
+ stateTemplatesToAdd?: StateTemplateAssociation[] | undefined;
1500
+ stateTemplatesToRemove?: string[] | undefined;
1266
1501
  }
1267
1502
  export interface UpdateVehicleResponse {
1268
1503
  vehicleName?: string | undefined;
@@ -1331,6 +1566,7 @@ export interface SignalDecoder {
1331
1566
  canSignal?: CanSignal | undefined;
1332
1567
  obdSignal?: ObdSignal | undefined;
1333
1568
  messageSignal?: MessageSignal | undefined;
1569
+ customDecodingSignal?: CustomDecodingSignal | undefined;
1334
1570
  }
1335
1571
  export interface CreateDecoderManifestRequest {
1336
1572
  name: string | undefined;
@@ -1338,6 +1574,7 @@ export interface CreateDecoderManifestRequest {
1338
1574
  modelManifestArn: string | undefined;
1339
1575
  signalDecoders?: SignalDecoder[] | undefined;
1340
1576
  networkInterfaces?: NetworkInterface[] | undefined;
1577
+ defaultForUnmappedSignals?: DefaultForUnmappedSignalsType | undefined;
1341
1578
  tags?: Tag[] | undefined;
1342
1579
  }
1343
1580
  export interface ListDecoderManifestSignalsResponse {
@@ -1354,6 +1591,7 @@ export interface UpdateDecoderManifestRequest {
1354
1591
  networkInterfacesToUpdate?: NetworkInterface[] | undefined;
1355
1592
  networkInterfacesToRemove?: string[] | undefined;
1356
1593
  status?: ManifestStatus | undefined;
1594
+ defaultForUnmappedSignals?: DefaultForUnmappedSignalsType | undefined;
1357
1595
  }
1358
1596
  export declare const ConditionBasedCollectionSchemeFilterSensitiveLog: (
1359
1597
  obj: ConditionBasedCollectionScheme
@@ -1361,6 +1599,24 @@ export declare const ConditionBasedCollectionSchemeFilterSensitiveLog: (
1361
1599
  export declare const CollectionSchemeFilterSensitiveLog: (
1362
1600
  obj: CollectionScheme
1363
1601
  ) => any;
1602
+ export declare const DataPartitionStorageOptionsFilterSensitiveLog: (
1603
+ obj: DataPartitionStorageOptions
1604
+ ) => any;
1605
+ export declare const DataPartitionUploadOptionsFilterSensitiveLog: (
1606
+ obj: DataPartitionUploadOptions
1607
+ ) => any;
1608
+ export declare const DataPartitionFilterSensitiveLog: (
1609
+ obj: DataPartition
1610
+ ) => any;
1611
+ export declare const ConditionBasedSignalFetchConfigFilterSensitiveLog: (
1612
+ obj: ConditionBasedSignalFetchConfig
1613
+ ) => any;
1614
+ export declare const SignalFetchConfigFilterSensitiveLog: (
1615
+ obj: SignalFetchConfig
1616
+ ) => any;
1617
+ export declare const SignalFetchInformationFilterSensitiveLog: (
1618
+ obj: SignalFetchInformation
1619
+ ) => any;
1364
1620
  export declare const CreateCampaignRequestFilterSensitiveLog: (
1365
1621
  obj: CreateCampaignRequest
1366
1622
  ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListStateTemplatesCommandInput,
4
+ ListStateTemplatesCommandOutput,
5
+ } from "../commands/ListStateTemplatesCommand";
6
+ import { IoTFleetWisePaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListStateTemplates: (
8
+ config: IoTFleetWisePaginationConfiguration,
9
+ input: ListStateTemplatesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListStateTemplatesCommandOutput>;
@@ -10,5 +10,6 @@ export * from "./ListModelManifestNodesPaginator";
10
10
  export * from "./ListModelManifestsPaginator";
11
11
  export * from "./ListSignalCatalogNodesPaginator";
12
12
  export * from "./ListSignalCatalogsPaginator";
13
+ export * from "./ListStateTemplatesPaginator";
13
14
  export * from "./ListVehiclesInFleetPaginator";
14
15
  export * from "./ListVehiclesPaginator";