@aws-sdk/client-iotfleetwise 3.696.0 → 3.699.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 +4 -4
@@ -51,6 +51,12 @@ export const se_CreateSignalCatalogCommand = async (input, context) => {
51
51
  body = JSON.stringify(se_CreateSignalCatalogRequest(input, context));
52
52
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
53
53
  };
54
+ export const se_CreateStateTemplateCommand = async (input, context) => {
55
+ const headers = sharedHeaders("CreateStateTemplate");
56
+ let body;
57
+ body = JSON.stringify(_json(input));
58
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
59
+ };
54
60
  export const se_CreateVehicleCommand = async (input, context) => {
55
61
  const headers = sharedHeaders("CreateVehicle");
56
62
  let body;
@@ -87,6 +93,12 @@ export const se_DeleteSignalCatalogCommand = async (input, context) => {
87
93
  body = JSON.stringify(_json(input));
88
94
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
89
95
  };
96
+ export const se_DeleteStateTemplateCommand = async (input, context) => {
97
+ const headers = sharedHeaders("DeleteStateTemplate");
98
+ let body;
99
+ body = JSON.stringify(_json(input));
100
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
101
+ };
90
102
  export const se_DeleteVehicleCommand = async (input, context) => {
91
103
  const headers = sharedHeaders("DeleteVehicle");
92
104
  let body;
@@ -147,6 +159,12 @@ export const se_GetSignalCatalogCommand = async (input, context) => {
147
159
  body = JSON.stringify(_json(input));
148
160
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
149
161
  };
162
+ export const se_GetStateTemplateCommand = async (input, context) => {
163
+ const headers = sharedHeaders("GetStateTemplate");
164
+ let body;
165
+ body = JSON.stringify(_json(input));
166
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
167
+ };
150
168
  export const se_GetVehicleCommand = async (input, context) => {
151
169
  const headers = sharedHeaders("GetVehicle");
152
170
  let body;
@@ -231,6 +249,12 @@ export const se_ListSignalCatalogsCommand = async (input, context) => {
231
249
  body = JSON.stringify(_json(input));
232
250
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
233
251
  };
252
+ export const se_ListStateTemplatesCommand = async (input, context) => {
253
+ const headers = sharedHeaders("ListStateTemplates");
254
+ let body;
255
+ body = JSON.stringify(_json(input));
256
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
257
+ };
234
258
  export const se_ListTagsForResourceCommand = async (input, context) => {
235
259
  const headers = sharedHeaders("ListTagsForResource");
236
260
  let body;
@@ -309,6 +333,12 @@ export const se_UpdateSignalCatalogCommand = async (input, context) => {
309
333
  body = JSON.stringify(se_UpdateSignalCatalogRequest(input, context));
310
334
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
311
335
  };
336
+ export const se_UpdateStateTemplateCommand = async (input, context) => {
337
+ const headers = sharedHeaders("UpdateStateTemplate");
338
+ let body;
339
+ body = JSON.stringify(_json(input));
340
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
341
+ };
312
342
  export const se_UpdateVehicleCommand = async (input, context) => {
313
343
  const headers = sharedHeaders("UpdateVehicle");
314
344
  let body;
@@ -419,6 +449,19 @@ export const de_CreateSignalCatalogCommand = async (output, context) => {
419
449
  };
420
450
  return response;
421
451
  };
452
+ export const de_CreateStateTemplateCommand = async (output, context) => {
453
+ if (output.statusCode >= 300) {
454
+ return de_CommandError(output, context);
455
+ }
456
+ const data = await parseBody(output.body, context);
457
+ let contents = {};
458
+ contents = _json(data);
459
+ const response = {
460
+ $metadata: deserializeMetadata(output),
461
+ ...contents,
462
+ };
463
+ return response;
464
+ };
422
465
  export const de_CreateVehicleCommand = async (output, context) => {
423
466
  if (output.statusCode >= 300) {
424
467
  return de_CommandError(output, context);
@@ -497,6 +540,19 @@ export const de_DeleteSignalCatalogCommand = async (output, context) => {
497
540
  };
498
541
  return response;
499
542
  };
543
+ export const de_DeleteStateTemplateCommand = async (output, context) => {
544
+ if (output.statusCode >= 300) {
545
+ return de_CommandError(output, context);
546
+ }
547
+ const data = await parseBody(output.body, context);
548
+ let contents = {};
549
+ contents = _json(data);
550
+ const response = {
551
+ $metadata: deserializeMetadata(output),
552
+ ...contents,
553
+ };
554
+ return response;
555
+ };
500
556
  export const de_DeleteVehicleCommand = async (output, context) => {
501
557
  if (output.statusCode >= 300) {
502
558
  return de_CommandError(output, context);
@@ -627,6 +683,19 @@ export const de_GetSignalCatalogCommand = async (output, context) => {
627
683
  };
628
684
  return response;
629
685
  };
686
+ export const de_GetStateTemplateCommand = async (output, context) => {
687
+ if (output.statusCode >= 300) {
688
+ return de_CommandError(output, context);
689
+ }
690
+ const data = await parseBody(output.body, context);
691
+ let contents = {};
692
+ contents = de_GetStateTemplateResponse(data, context);
693
+ const response = {
694
+ $metadata: deserializeMetadata(output),
695
+ ...contents,
696
+ };
697
+ return response;
698
+ };
630
699
  export const de_GetVehicleCommand = async (output, context) => {
631
700
  if (output.statusCode >= 300) {
632
701
  return de_CommandError(output, context);
@@ -809,6 +878,19 @@ export const de_ListSignalCatalogsCommand = async (output, context) => {
809
878
  };
810
879
  return response;
811
880
  };
881
+ export const de_ListStateTemplatesCommand = async (output, context) => {
882
+ if (output.statusCode >= 300) {
883
+ return de_CommandError(output, context);
884
+ }
885
+ const data = await parseBody(output.body, context);
886
+ let contents = {};
887
+ contents = de_ListStateTemplatesResponse(data, context);
888
+ const response = {
889
+ $metadata: deserializeMetadata(output),
890
+ ...contents,
891
+ };
892
+ return response;
893
+ };
812
894
  export const de_ListTagsForResourceCommand = async (output, context) => {
813
895
  if (output.statusCode >= 300) {
814
896
  return de_CommandError(output, context);
@@ -978,6 +1060,19 @@ export const de_UpdateSignalCatalogCommand = async (output, context) => {
978
1060
  };
979
1061
  return response;
980
1062
  };
1063
+ export const de_UpdateStateTemplateCommand = async (output, context) => {
1064
+ if (output.statusCode >= 300) {
1065
+ return de_CommandError(output, context);
1066
+ }
1067
+ const data = await parseBody(output.body, context);
1068
+ let contents = {};
1069
+ contents = _json(data);
1070
+ const response = {
1071
+ $metadata: deserializeMetadata(output),
1072
+ ...contents,
1073
+ };
1074
+ return response;
1075
+ };
981
1076
  export const de_UpdateVehicleCommand = async (output, context) => {
982
1077
  if (output.statusCode >= 300) {
983
1078
  return de_CommandError(output, context);
@@ -1182,6 +1277,7 @@ const se_CreateCampaignRequest = (input, context) => {
1182
1277
  compression: [],
1183
1278
  dataDestinationConfigs: _json,
1184
1279
  dataExtraDimensions: _json,
1280
+ dataPartitions: _json,
1185
1281
  description: [],
1186
1282
  diagnosticsMode: [],
1187
1283
  expiryTime: (_) => _.getTime() / 1000,
@@ -1190,6 +1286,7 @@ const se_CreateCampaignRequest = (input, context) => {
1190
1286
  priority: [],
1191
1287
  signalCatalogArn: [],
1192
1288
  signalsToCollect: _json,
1289
+ signalsToFetch: _json,
1193
1290
  spoolingMode: [],
1194
1291
  startTime: (_) => _.getTime() / 1000,
1195
1292
  tags: _json,
@@ -1198,6 +1295,7 @@ const se_CreateCampaignRequest = (input, context) => {
1198
1295
  };
1199
1296
  const se_CreateDecoderManifestRequest = (input, context) => {
1200
1297
  return take(input, {
1298
+ defaultForUnmappedSignals: [],
1201
1299
  description: [],
1202
1300
  modelManifestArn: [],
1203
1301
  name: [],
@@ -1310,6 +1408,7 @@ const se_Sensor = (input, context) => {
1310
1408
  const se_SignalDecoder = (input, context) => {
1311
1409
  return take(input, {
1312
1410
  canSignal: (_) => se_CanSignal(_, context),
1411
+ customDecodingSignal: _json,
1313
1412
  fullyQualifiedName: [],
1314
1413
  interfaceId: [],
1315
1414
  messageSignal: (_) => se_MessageSignal(_, context),
@@ -1361,6 +1460,7 @@ const se_StructuredMessageListDefinition = (input, context) => {
1361
1460
  };
1362
1461
  const se_UpdateDecoderManifestRequest = (input, context) => {
1363
1462
  return take(input, {
1463
+ defaultForUnmappedSignals: [],
1364
1464
  description: [],
1365
1465
  name: [],
1366
1466
  networkInterfacesToAdd: _json,
@@ -1489,6 +1589,7 @@ const de_GetCampaignResponse = (output, context) => {
1489
1589
  creationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1490
1590
  dataDestinationConfigs: _json,
1491
1591
  dataExtraDimensions: _json,
1592
+ dataPartitions: _json,
1492
1593
  description: __expectString,
1493
1594
  diagnosticsMode: __expectString,
1494
1595
  expiryTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
@@ -1498,6 +1599,7 @@ const de_GetCampaignResponse = (output, context) => {
1498
1599
  priority: __expectInt32,
1499
1600
  signalCatalogArn: __expectString,
1500
1601
  signalsToCollect: _json,
1602
+ signalsToFetch: _json,
1501
1603
  spoolingMode: __expectString,
1502
1604
  startTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1503
1605
  status: __expectString,
@@ -1567,6 +1669,20 @@ const de_GetSignalCatalogResponse = (output, context) => {
1567
1669
  nodeCounts: _json,
1568
1670
  });
1569
1671
  };
1672
+ const de_GetStateTemplateResponse = (output, context) => {
1673
+ return take(output, {
1674
+ arn: __expectString,
1675
+ creationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1676
+ dataExtraDimensions: _json,
1677
+ description: __expectString,
1678
+ id: __expectString,
1679
+ lastModificationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1680
+ metadataExtraDimensions: _json,
1681
+ name: __expectString,
1682
+ signalCatalogArn: __expectString,
1683
+ stateTemplateProperties: _json,
1684
+ });
1685
+ };
1570
1686
  const de_GetVehicleResponse = (output, context) => {
1571
1687
  return take(output, {
1572
1688
  arn: __expectString,
@@ -1575,6 +1691,7 @@ const de_GetVehicleResponse = (output, context) => {
1575
1691
  decoderManifestArn: __expectString,
1576
1692
  lastModificationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1577
1693
  modelManifestArn: __expectString,
1694
+ stateTemplates: _json,
1578
1695
  vehicleName: __expectString,
1579
1696
  });
1580
1697
  };
@@ -1633,6 +1750,12 @@ const de_ListSignalCatalogsResponse = (output, context) => {
1633
1750
  summaries: (_) => de_signalCatalogSummaries(_, context),
1634
1751
  });
1635
1752
  };
1753
+ const de_ListStateTemplatesResponse = (output, context) => {
1754
+ return take(output, {
1755
+ nextToken: __expectString,
1756
+ summaries: (_) => de_StateTemplateSummaries(_, context),
1757
+ });
1758
+ };
1636
1759
  const de_ListVehiclesResponse = (output, context) => {
1637
1760
  return take(output, {
1638
1761
  nextToken: __expectString,
@@ -1776,6 +1899,7 @@ const de_SignalCatalogSummary = (output, context) => {
1776
1899
  const de_SignalDecoder = (output, context) => {
1777
1900
  return take(output, {
1778
1901
  canSignal: (_) => de_CanSignal(_, context),
1902
+ customDecodingSignal: _json,
1779
1903
  fullyQualifiedName: __expectString,
1780
1904
  interfaceId: __expectString,
1781
1905
  messageSignal: (_) => de_MessageSignal(_, context),
@@ -1791,6 +1915,25 @@ const de_SignalDecoders = (output, context) => {
1791
1915
  });
1792
1916
  return retVal;
1793
1917
  };
1918
+ const de_StateTemplateSummaries = (output, context) => {
1919
+ const retVal = (output || [])
1920
+ .filter((e) => e != null)
1921
+ .map((entry) => {
1922
+ return de_StateTemplateSummary(entry, context);
1923
+ });
1924
+ return retVal;
1925
+ };
1926
+ const de_StateTemplateSummary = (output, context) => {
1927
+ return take(output, {
1928
+ arn: __expectString,
1929
+ creationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1930
+ description: __expectString,
1931
+ id: __expectString,
1932
+ lastModificationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
1933
+ name: __expectString,
1934
+ signalCatalogArn: __expectString,
1935
+ });
1936
+ };
1794
1937
  const de_StructuredMessage = (output, context) => {
1795
1938
  if (output.primitiveMessageDefinition != null) {
1796
1939
  return {
@@ -7,12 +7,14 @@ import { CreateDecoderManifestCommandInput, CreateDecoderManifestCommandOutput }
7
7
  import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
8
8
  import { CreateModelManifestCommandInput, CreateModelManifestCommandOutput } from "./commands/CreateModelManifestCommand";
9
9
  import { CreateSignalCatalogCommandInput, CreateSignalCatalogCommandOutput } from "./commands/CreateSignalCatalogCommand";
10
+ import { CreateStateTemplateCommandInput, CreateStateTemplateCommandOutput } from "./commands/CreateStateTemplateCommand";
10
11
  import { CreateVehicleCommandInput, CreateVehicleCommandOutput } from "./commands/CreateVehicleCommand";
11
12
  import { DeleteCampaignCommandInput, DeleteCampaignCommandOutput } from "./commands/DeleteCampaignCommand";
12
13
  import { DeleteDecoderManifestCommandInput, DeleteDecoderManifestCommandOutput } from "./commands/DeleteDecoderManifestCommand";
13
14
  import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
14
15
  import { DeleteModelManifestCommandInput, DeleteModelManifestCommandOutput } from "./commands/DeleteModelManifestCommand";
15
16
  import { DeleteSignalCatalogCommandInput, DeleteSignalCatalogCommandOutput } from "./commands/DeleteSignalCatalogCommand";
17
+ import { DeleteStateTemplateCommandInput, DeleteStateTemplateCommandOutput } from "./commands/DeleteStateTemplateCommand";
16
18
  import { DeleteVehicleCommandInput, DeleteVehicleCommandOutput } from "./commands/DeleteVehicleCommand";
17
19
  import { DisassociateVehicleFleetCommandInput, DisassociateVehicleFleetCommandOutput } from "./commands/DisassociateVehicleFleetCommand";
18
20
  import { GetCampaignCommandInput, GetCampaignCommandOutput } from "./commands/GetCampaignCommand";
@@ -23,6 +25,7 @@ import { GetLoggingOptionsCommandInput, GetLoggingOptionsCommandOutput } from ".
23
25
  import { GetModelManifestCommandInput, GetModelManifestCommandOutput } from "./commands/GetModelManifestCommand";
24
26
  import { GetRegisterAccountStatusCommandInput, GetRegisterAccountStatusCommandOutput } from "./commands/GetRegisterAccountStatusCommand";
25
27
  import { GetSignalCatalogCommandInput, GetSignalCatalogCommandOutput } from "./commands/GetSignalCatalogCommand";
28
+ import { GetStateTemplateCommandInput, GetStateTemplateCommandOutput } from "./commands/GetStateTemplateCommand";
26
29
  import { GetVehicleCommandInput, GetVehicleCommandOutput } from "./commands/GetVehicleCommand";
27
30
  import { GetVehicleStatusCommandInput, GetVehicleStatusCommandOutput } from "./commands/GetVehicleStatusCommand";
28
31
  import { ImportDecoderManifestCommandInput, ImportDecoderManifestCommandOutput } from "./commands/ImportDecoderManifestCommand";
@@ -37,6 +40,7 @@ import { ListModelManifestNodesCommandInput, ListModelManifestNodesCommandOutput
37
40
  import { ListModelManifestsCommandInput, ListModelManifestsCommandOutput } from "./commands/ListModelManifestsCommand";
38
41
  import { ListSignalCatalogNodesCommandInput, ListSignalCatalogNodesCommandOutput } from "./commands/ListSignalCatalogNodesCommand";
39
42
  import { ListSignalCatalogsCommandInput, ListSignalCatalogsCommandOutput } from "./commands/ListSignalCatalogsCommand";
43
+ import { ListStateTemplatesCommandInput, ListStateTemplatesCommandOutput } from "./commands/ListStateTemplatesCommand";
40
44
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
41
45
  import { ListVehiclesCommandInput, ListVehiclesCommandOutput } from "./commands/ListVehiclesCommand";
42
46
  import { ListVehiclesInFleetCommandInput, ListVehiclesInFleetCommandOutput } from "./commands/ListVehiclesInFleetCommand";
@@ -50,6 +54,7 @@ import { UpdateDecoderManifestCommandInput, UpdateDecoderManifestCommandOutput }
50
54
  import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
51
55
  import { UpdateModelManifestCommandInput, UpdateModelManifestCommandOutput } from "./commands/UpdateModelManifestCommand";
52
56
  import { UpdateSignalCatalogCommandInput, UpdateSignalCatalogCommandOutput } from "./commands/UpdateSignalCatalogCommand";
57
+ import { UpdateStateTemplateCommandInput, UpdateStateTemplateCommandOutput } from "./commands/UpdateStateTemplateCommand";
53
58
  import { UpdateVehicleCommandInput, UpdateVehicleCommandOutput } from "./commands/UpdateVehicleCommand";
54
59
  import { IoTFleetWiseClient } from "./IoTFleetWiseClient";
55
60
  export interface IoTFleetWise {
@@ -101,6 +106,12 @@ export interface IoTFleetWise {
101
106
  createSignalCatalog(args: CreateSignalCatalogCommandInput, options?: __HttpHandlerOptions): Promise<CreateSignalCatalogCommandOutput>;
102
107
  createSignalCatalog(args: CreateSignalCatalogCommandInput, cb: (err: any, data?: CreateSignalCatalogCommandOutput) => void): void;
103
108
  createSignalCatalog(args: CreateSignalCatalogCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSignalCatalogCommandOutput) => void): void;
109
+ /**
110
+ * @see {@link CreateStateTemplateCommand}
111
+ */
112
+ createStateTemplate(args: CreateStateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateStateTemplateCommandOutput>;
113
+ createStateTemplate(args: CreateStateTemplateCommandInput, cb: (err: any, data?: CreateStateTemplateCommandOutput) => void): void;
114
+ createStateTemplate(args: CreateStateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStateTemplateCommandOutput) => void): void;
104
115
  /**
105
116
  * @see {@link CreateVehicleCommand}
106
117
  */
@@ -137,6 +148,12 @@ export interface IoTFleetWise {
137
148
  deleteSignalCatalog(args: DeleteSignalCatalogCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSignalCatalogCommandOutput>;
138
149
  deleteSignalCatalog(args: DeleteSignalCatalogCommandInput, cb: (err: any, data?: DeleteSignalCatalogCommandOutput) => void): void;
139
150
  deleteSignalCatalog(args: DeleteSignalCatalogCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSignalCatalogCommandOutput) => void): void;
151
+ /**
152
+ * @see {@link DeleteStateTemplateCommand}
153
+ */
154
+ deleteStateTemplate(args: DeleteStateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<DeleteStateTemplateCommandOutput>;
155
+ deleteStateTemplate(args: DeleteStateTemplateCommandInput, cb: (err: any, data?: DeleteStateTemplateCommandOutput) => void): void;
156
+ deleteStateTemplate(args: DeleteStateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStateTemplateCommandOutput) => void): void;
140
157
  /**
141
158
  * @see {@link DeleteVehicleCommand}
142
159
  */
@@ -200,6 +217,12 @@ export interface IoTFleetWise {
200
217
  getSignalCatalog(args: GetSignalCatalogCommandInput, options?: __HttpHandlerOptions): Promise<GetSignalCatalogCommandOutput>;
201
218
  getSignalCatalog(args: GetSignalCatalogCommandInput, cb: (err: any, data?: GetSignalCatalogCommandOutput) => void): void;
202
219
  getSignalCatalog(args: GetSignalCatalogCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSignalCatalogCommandOutput) => void): void;
220
+ /**
221
+ * @see {@link GetStateTemplateCommand}
222
+ */
223
+ getStateTemplate(args: GetStateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetStateTemplateCommandOutput>;
224
+ getStateTemplate(args: GetStateTemplateCommandInput, cb: (err: any, data?: GetStateTemplateCommandOutput) => void): void;
225
+ getStateTemplate(args: GetStateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetStateTemplateCommandOutput) => void): void;
203
226
  /**
204
227
  * @see {@link GetVehicleCommand}
205
228
  */
@@ -289,6 +312,13 @@ export interface IoTFleetWise {
289
312
  listSignalCatalogs(args: ListSignalCatalogsCommandInput, options?: __HttpHandlerOptions): Promise<ListSignalCatalogsCommandOutput>;
290
313
  listSignalCatalogs(args: ListSignalCatalogsCommandInput, cb: (err: any, data?: ListSignalCatalogsCommandOutput) => void): void;
291
314
  listSignalCatalogs(args: ListSignalCatalogsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSignalCatalogsCommandOutput) => void): void;
315
+ /**
316
+ * @see {@link ListStateTemplatesCommand}
317
+ */
318
+ listStateTemplates(): Promise<ListStateTemplatesCommandOutput>;
319
+ listStateTemplates(args: ListStateTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListStateTemplatesCommandOutput>;
320
+ listStateTemplates(args: ListStateTemplatesCommandInput, cb: (err: any, data?: ListStateTemplatesCommandOutput) => void): void;
321
+ listStateTemplates(args: ListStateTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListStateTemplatesCommandOutput) => void): void;
292
322
  /**
293
323
  * @see {@link ListTagsForResourceCommand}
294
324
  */
@@ -369,6 +399,12 @@ export interface IoTFleetWise {
369
399
  updateSignalCatalog(args: UpdateSignalCatalogCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSignalCatalogCommandOutput>;
370
400
  updateSignalCatalog(args: UpdateSignalCatalogCommandInput, cb: (err: any, data?: UpdateSignalCatalogCommandOutput) => void): void;
371
401
  updateSignalCatalog(args: UpdateSignalCatalogCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSignalCatalogCommandOutput) => void): void;
402
+ /**
403
+ * @see {@link UpdateStateTemplateCommand}
404
+ */
405
+ updateStateTemplate(args: UpdateStateTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStateTemplateCommandOutput>;
406
+ updateStateTemplate(args: UpdateStateTemplateCommandInput, cb: (err: any, data?: UpdateStateTemplateCommandOutput) => void): void;
407
+ updateStateTemplate(args: UpdateStateTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStateTemplateCommandOutput) => void): void;
372
408
  /**
373
409
  * @see {@link UpdateVehicleCommand}
374
410
  */
@@ -384,6 +420,9 @@ export interface IoTFleetWise {
384
420
  * </p>
385
421
  * <p>For more information, see <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/">What is Amazon Web Services IoT FleetWise?</a> in the
386
422
  * <i>Amazon Web Services IoT FleetWise Developer Guide</i>.</p>
423
+ * <important>
424
+ * <p>Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html">Amazon Web Services Region and feature availability</a> in the <i>Amazon Web Services IoT FleetWise Developer Guide</i>.</p>
425
+ * </important>
387
426
  * @public
388
427
  */
389
428
  export declare class IoTFleetWise extends IoTFleetWiseClient implements IoTFleetWise {
@@ -15,12 +15,14 @@ import { CreateDecoderManifestCommandInput, CreateDecoderManifestCommandOutput }
15
15
  import { CreateFleetCommandInput, CreateFleetCommandOutput } from "./commands/CreateFleetCommand";
16
16
  import { CreateModelManifestCommandInput, CreateModelManifestCommandOutput } from "./commands/CreateModelManifestCommand";
17
17
  import { CreateSignalCatalogCommandInput, CreateSignalCatalogCommandOutput } from "./commands/CreateSignalCatalogCommand";
18
+ import { CreateStateTemplateCommandInput, CreateStateTemplateCommandOutput } from "./commands/CreateStateTemplateCommand";
18
19
  import { CreateVehicleCommandInput, CreateVehicleCommandOutput } from "./commands/CreateVehicleCommand";
19
20
  import { DeleteCampaignCommandInput, DeleteCampaignCommandOutput } from "./commands/DeleteCampaignCommand";
20
21
  import { DeleteDecoderManifestCommandInput, DeleteDecoderManifestCommandOutput } from "./commands/DeleteDecoderManifestCommand";
21
22
  import { DeleteFleetCommandInput, DeleteFleetCommandOutput } from "./commands/DeleteFleetCommand";
22
23
  import { DeleteModelManifestCommandInput, DeleteModelManifestCommandOutput } from "./commands/DeleteModelManifestCommand";
23
24
  import { DeleteSignalCatalogCommandInput, DeleteSignalCatalogCommandOutput } from "./commands/DeleteSignalCatalogCommand";
25
+ import { DeleteStateTemplateCommandInput, DeleteStateTemplateCommandOutput } from "./commands/DeleteStateTemplateCommand";
24
26
  import { DeleteVehicleCommandInput, DeleteVehicleCommandOutput } from "./commands/DeleteVehicleCommand";
25
27
  import { DisassociateVehicleFleetCommandInput, DisassociateVehicleFleetCommandOutput } from "./commands/DisassociateVehicleFleetCommand";
26
28
  import { GetCampaignCommandInput, GetCampaignCommandOutput } from "./commands/GetCampaignCommand";
@@ -31,6 +33,7 @@ import { GetLoggingOptionsCommandInput, GetLoggingOptionsCommandOutput } from ".
31
33
  import { GetModelManifestCommandInput, GetModelManifestCommandOutput } from "./commands/GetModelManifestCommand";
32
34
  import { GetRegisterAccountStatusCommandInput, GetRegisterAccountStatusCommandOutput } from "./commands/GetRegisterAccountStatusCommand";
33
35
  import { GetSignalCatalogCommandInput, GetSignalCatalogCommandOutput } from "./commands/GetSignalCatalogCommand";
36
+ import { GetStateTemplateCommandInput, GetStateTemplateCommandOutput } from "./commands/GetStateTemplateCommand";
34
37
  import { GetVehicleCommandInput, GetVehicleCommandOutput } from "./commands/GetVehicleCommand";
35
38
  import { GetVehicleStatusCommandInput, GetVehicleStatusCommandOutput } from "./commands/GetVehicleStatusCommand";
36
39
  import { ImportDecoderManifestCommandInput, ImportDecoderManifestCommandOutput } from "./commands/ImportDecoderManifestCommand";
@@ -45,6 +48,7 @@ import { ListModelManifestNodesCommandInput, ListModelManifestNodesCommandOutput
45
48
  import { ListModelManifestsCommandInput, ListModelManifestsCommandOutput } from "./commands/ListModelManifestsCommand";
46
49
  import { ListSignalCatalogNodesCommandInput, ListSignalCatalogNodesCommandOutput } from "./commands/ListSignalCatalogNodesCommand";
47
50
  import { ListSignalCatalogsCommandInput, ListSignalCatalogsCommandOutput } from "./commands/ListSignalCatalogsCommand";
51
+ import { ListStateTemplatesCommandInput, ListStateTemplatesCommandOutput } from "./commands/ListStateTemplatesCommand";
48
52
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
49
53
  import { ListVehiclesCommandInput, ListVehiclesCommandOutput } from "./commands/ListVehiclesCommand";
50
54
  import { ListVehiclesInFleetCommandInput, ListVehiclesInFleetCommandOutput } from "./commands/ListVehiclesInFleetCommand";
@@ -58,6 +62,7 @@ import { UpdateDecoderManifestCommandInput, UpdateDecoderManifestCommandOutput }
58
62
  import { UpdateFleetCommandInput, UpdateFleetCommandOutput } from "./commands/UpdateFleetCommand";
59
63
  import { UpdateModelManifestCommandInput, UpdateModelManifestCommandOutput } from "./commands/UpdateModelManifestCommand";
60
64
  import { UpdateSignalCatalogCommandInput, UpdateSignalCatalogCommandOutput } from "./commands/UpdateSignalCatalogCommand";
65
+ import { UpdateStateTemplateCommandInput, UpdateStateTemplateCommandOutput } from "./commands/UpdateStateTemplateCommand";
61
66
  import { UpdateVehicleCommandInput, UpdateVehicleCommandOutput } from "./commands/UpdateVehicleCommand";
62
67
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
63
68
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
@@ -65,11 +70,11 @@ export { __Client };
65
70
  /**
66
71
  * @public
67
72
  */
68
- export type ServiceInputTypes = AssociateVehicleFleetCommandInput | BatchCreateVehicleCommandInput | BatchUpdateVehicleCommandInput | CreateCampaignCommandInput | CreateDecoderManifestCommandInput | CreateFleetCommandInput | CreateModelManifestCommandInput | CreateSignalCatalogCommandInput | CreateVehicleCommandInput | DeleteCampaignCommandInput | DeleteDecoderManifestCommandInput | DeleteFleetCommandInput | DeleteModelManifestCommandInput | DeleteSignalCatalogCommandInput | DeleteVehicleCommandInput | DisassociateVehicleFleetCommandInput | GetCampaignCommandInput | GetDecoderManifestCommandInput | GetEncryptionConfigurationCommandInput | GetFleetCommandInput | GetLoggingOptionsCommandInput | GetModelManifestCommandInput | GetRegisterAccountStatusCommandInput | GetSignalCatalogCommandInput | GetVehicleCommandInput | GetVehicleStatusCommandInput | ImportDecoderManifestCommandInput | ImportSignalCatalogCommandInput | ListCampaignsCommandInput | ListDecoderManifestNetworkInterfacesCommandInput | ListDecoderManifestSignalsCommandInput | ListDecoderManifestsCommandInput | ListFleetsCommandInput | ListFleetsForVehicleCommandInput | ListModelManifestNodesCommandInput | ListModelManifestsCommandInput | ListSignalCatalogNodesCommandInput | ListSignalCatalogsCommandInput | ListTagsForResourceCommandInput | ListVehiclesCommandInput | ListVehiclesInFleetCommandInput | PutEncryptionConfigurationCommandInput | PutLoggingOptionsCommandInput | RegisterAccountCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCampaignCommandInput | UpdateDecoderManifestCommandInput | UpdateFleetCommandInput | UpdateModelManifestCommandInput | UpdateSignalCatalogCommandInput | UpdateVehicleCommandInput;
73
+ export type ServiceInputTypes = AssociateVehicleFleetCommandInput | BatchCreateVehicleCommandInput | BatchUpdateVehicleCommandInput | CreateCampaignCommandInput | CreateDecoderManifestCommandInput | CreateFleetCommandInput | CreateModelManifestCommandInput | CreateSignalCatalogCommandInput | CreateStateTemplateCommandInput | CreateVehicleCommandInput | DeleteCampaignCommandInput | DeleteDecoderManifestCommandInput | DeleteFleetCommandInput | DeleteModelManifestCommandInput | DeleteSignalCatalogCommandInput | DeleteStateTemplateCommandInput | DeleteVehicleCommandInput | DisassociateVehicleFleetCommandInput | GetCampaignCommandInput | GetDecoderManifestCommandInput | GetEncryptionConfigurationCommandInput | GetFleetCommandInput | GetLoggingOptionsCommandInput | GetModelManifestCommandInput | GetRegisterAccountStatusCommandInput | GetSignalCatalogCommandInput | GetStateTemplateCommandInput | GetVehicleCommandInput | GetVehicleStatusCommandInput | ImportDecoderManifestCommandInput | ImportSignalCatalogCommandInput | ListCampaignsCommandInput | ListDecoderManifestNetworkInterfacesCommandInput | ListDecoderManifestSignalsCommandInput | ListDecoderManifestsCommandInput | ListFleetsCommandInput | ListFleetsForVehicleCommandInput | ListModelManifestNodesCommandInput | ListModelManifestsCommandInput | ListSignalCatalogNodesCommandInput | ListSignalCatalogsCommandInput | ListStateTemplatesCommandInput | ListTagsForResourceCommandInput | ListVehiclesCommandInput | ListVehiclesInFleetCommandInput | PutEncryptionConfigurationCommandInput | PutLoggingOptionsCommandInput | RegisterAccountCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCampaignCommandInput | UpdateDecoderManifestCommandInput | UpdateFleetCommandInput | UpdateModelManifestCommandInput | UpdateSignalCatalogCommandInput | UpdateStateTemplateCommandInput | UpdateVehicleCommandInput;
69
74
  /**
70
75
  * @public
71
76
  */
72
- export type ServiceOutputTypes = AssociateVehicleFleetCommandOutput | BatchCreateVehicleCommandOutput | BatchUpdateVehicleCommandOutput | CreateCampaignCommandOutput | CreateDecoderManifestCommandOutput | CreateFleetCommandOutput | CreateModelManifestCommandOutput | CreateSignalCatalogCommandOutput | CreateVehicleCommandOutput | DeleteCampaignCommandOutput | DeleteDecoderManifestCommandOutput | DeleteFleetCommandOutput | DeleteModelManifestCommandOutput | DeleteSignalCatalogCommandOutput | DeleteVehicleCommandOutput | DisassociateVehicleFleetCommandOutput | GetCampaignCommandOutput | GetDecoderManifestCommandOutput | GetEncryptionConfigurationCommandOutput | GetFleetCommandOutput | GetLoggingOptionsCommandOutput | GetModelManifestCommandOutput | GetRegisterAccountStatusCommandOutput | GetSignalCatalogCommandOutput | GetVehicleCommandOutput | GetVehicleStatusCommandOutput | ImportDecoderManifestCommandOutput | ImportSignalCatalogCommandOutput | ListCampaignsCommandOutput | ListDecoderManifestNetworkInterfacesCommandOutput | ListDecoderManifestSignalsCommandOutput | ListDecoderManifestsCommandOutput | ListFleetsCommandOutput | ListFleetsForVehicleCommandOutput | ListModelManifestNodesCommandOutput | ListModelManifestsCommandOutput | ListSignalCatalogNodesCommandOutput | ListSignalCatalogsCommandOutput | ListTagsForResourceCommandOutput | ListVehiclesCommandOutput | ListVehiclesInFleetCommandOutput | PutEncryptionConfigurationCommandOutput | PutLoggingOptionsCommandOutput | RegisterAccountCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCampaignCommandOutput | UpdateDecoderManifestCommandOutput | UpdateFleetCommandOutput | UpdateModelManifestCommandOutput | UpdateSignalCatalogCommandOutput | UpdateVehicleCommandOutput;
77
+ export type ServiceOutputTypes = AssociateVehicleFleetCommandOutput | BatchCreateVehicleCommandOutput | BatchUpdateVehicleCommandOutput | CreateCampaignCommandOutput | CreateDecoderManifestCommandOutput | CreateFleetCommandOutput | CreateModelManifestCommandOutput | CreateSignalCatalogCommandOutput | CreateStateTemplateCommandOutput | CreateVehicleCommandOutput | DeleteCampaignCommandOutput | DeleteDecoderManifestCommandOutput | DeleteFleetCommandOutput | DeleteModelManifestCommandOutput | DeleteSignalCatalogCommandOutput | DeleteStateTemplateCommandOutput | DeleteVehicleCommandOutput | DisassociateVehicleFleetCommandOutput | GetCampaignCommandOutput | GetDecoderManifestCommandOutput | GetEncryptionConfigurationCommandOutput | GetFleetCommandOutput | GetLoggingOptionsCommandOutput | GetModelManifestCommandOutput | GetRegisterAccountStatusCommandOutput | GetSignalCatalogCommandOutput | GetStateTemplateCommandOutput | GetVehicleCommandOutput | GetVehicleStatusCommandOutput | ImportDecoderManifestCommandOutput | ImportSignalCatalogCommandOutput | ListCampaignsCommandOutput | ListDecoderManifestNetworkInterfacesCommandOutput | ListDecoderManifestSignalsCommandOutput | ListDecoderManifestsCommandOutput | ListFleetsCommandOutput | ListFleetsForVehicleCommandOutput | ListModelManifestNodesCommandOutput | ListModelManifestsCommandOutput | ListSignalCatalogNodesCommandOutput | ListSignalCatalogsCommandOutput | ListStateTemplatesCommandOutput | ListTagsForResourceCommandOutput | ListVehiclesCommandOutput | ListVehiclesInFleetCommandOutput | PutEncryptionConfigurationCommandOutput | PutLoggingOptionsCommandOutput | RegisterAccountCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCampaignCommandOutput | UpdateDecoderManifestCommandOutput | UpdateFleetCommandOutput | UpdateModelManifestCommandOutput | UpdateSignalCatalogCommandOutput | UpdateStateTemplateCommandOutput | UpdateVehicleCommandOutput;
73
78
  /**
74
79
  * @public
75
80
  */
@@ -210,6 +215,9 @@ export interface IoTFleetWiseClientResolvedConfig extends IoTFleetWiseClientReso
210
215
  * </p>
211
216
  * <p>For more information, see <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/">What is Amazon Web Services IoT FleetWise?</a> in the
212
217
  * <i>Amazon Web Services IoT FleetWise Developer Guide</i>.</p>
218
+ * <important>
219
+ * <p>Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html">Amazon Web Services Region and feature availability</a> in the <i>Amazon Web Services IoT FleetWise Developer Guide</i>.</p>
220
+ * </important>
213
221
  * @public
214
222
  */
215
223
  export declare class IoTFleetWiseClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IoTFleetWiseClientResolvedConfig> {
@@ -56,6 +56,20 @@ declare const BatchCreateVehicleCommand_base: {
56
56
  * Value: "STRING_VALUE", // required
57
57
  * },
58
58
  * ],
59
+ * stateTemplates: [ // StateTemplateAssociations
60
+ * { // StateTemplateAssociation
61
+ * identifier: "STRING_VALUE", // required
62
+ * stateTemplateUpdateStrategy: { // StateTemplateUpdateStrategy Union: only one key present
63
+ * periodic: { // PeriodicStateTemplateUpdateStrategy
64
+ * stateTemplateUpdateRate: { // TimePeriod
65
+ * unit: "MILLISECOND" || "SECOND" || "MINUTE" || "HOUR", // required
66
+ * value: Number("int"), // required
67
+ * },
68
+ * },
69
+ * onChange: {},
70
+ * },
71
+ * },
72
+ * ],
59
73
  * },
60
74
  * ],
61
75
  * };
@@ -50,6 +50,23 @@ declare const BatchUpdateVehicleCommand_base: {
50
50
  * "<keys>": "STRING_VALUE",
51
51
  * },
52
52
  * attributeUpdateMode: "Overwrite" || "Merge",
53
+ * stateTemplatesToAdd: [ // StateTemplateAssociations
54
+ * { // StateTemplateAssociation
55
+ * identifier: "STRING_VALUE", // required
56
+ * stateTemplateUpdateStrategy: { // StateTemplateUpdateStrategy Union: only one key present
57
+ * periodic: { // PeriodicStateTemplateUpdateStrategy
58
+ * stateTemplateUpdateRate: { // TimePeriod
59
+ * unit: "MILLISECOND" || "SECOND" || "MINUTE" || "HOUR", // required
60
+ * value: Number("int"), // required
61
+ * },
62
+ * },
63
+ * onChange: {},
64
+ * },
65
+ * },
66
+ * ],
67
+ * stateTemplatesToRemove: [ // StateTemplateAssociationIdentifiers
68
+ * "STRING_VALUE",
69
+ * ],
53
70
  * },
54
71
  * ],
55
72
  * };
@@ -33,6 +33,9 @@ declare const CreateCampaignCommand_base: {
33
33
  * Amazon Web Services IoT FleetWise automatically deploys them to vehicles. </p>
34
34
  * <p>For more information, see <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/campaigns.html">Collect and transfer data
35
35
  * with campaigns</a> in the <i>Amazon Web Services IoT FleetWise Developer Guide</i>.</p>
36
+ * <important>
37
+ * <p>Access to certain Amazon Web Services IoT FleetWise features is currently gated. For more information, see <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html">Amazon Web Services Region and feature availability</a> in the <i>Amazon Web Services IoT FleetWise Developer Guide</i>.</p>
38
+ * </important>
36
39
  * @example
37
40
  * Use a bare-bones client and the command you need to make an API call.
38
41
  * ```javascript
@@ -56,6 +59,7 @@ declare const CreateCampaignCommand_base: {
56
59
  * name: "STRING_VALUE", // required
57
60
  * maxSampleCount: Number("long"),
58
61
  * minimumSamplingIntervalMs: Number("long"),
62
+ * dataPartitionId: "STRING_VALUE",
59
63
  * },
60
64
  * ],
61
65
  * collectionScheme: { // CollectionScheme Union: only one key present
@@ -90,6 +94,48 @@ declare const CreateCampaignCommand_base: {
90
94
  * timestreamTableArn: "STRING_VALUE", // required
91
95
  * executionRoleArn: "STRING_VALUE", // required
92
96
  * },
97
+ * mqttTopicConfig: { // MqttTopicConfig
98
+ * mqttTopicArn: "STRING_VALUE", // required
99
+ * executionRoleArn: "STRING_VALUE", // required
100
+ * },
101
+ * },
102
+ * ],
103
+ * dataPartitions: [ // DataPartitions
104
+ * { // DataPartition
105
+ * id: "STRING_VALUE", // required
106
+ * storageOptions: { // DataPartitionStorageOptions
107
+ * maximumSize: { // StorageMaximumSize
108
+ * unit: "MB" || "GB" || "TB", // required
109
+ * value: Number("int"), // required
110
+ * },
111
+ * storageLocation: "STRING_VALUE", // required
112
+ * minimumTimeToLive: { // StorageMinimumTimeToLive
113
+ * unit: "HOURS" || "DAYS" || "WEEKS", // required
114
+ * value: Number("int"), // required
115
+ * },
116
+ * },
117
+ * uploadOptions: { // DataPartitionUploadOptions
118
+ * expression: "STRING_VALUE", // required
119
+ * conditionLanguageVersion: Number("int"),
120
+ * },
121
+ * },
122
+ * ],
123
+ * signalsToFetch: [ // SignalFetchInformationList
124
+ * { // SignalFetchInformation
125
+ * fullyQualifiedName: "STRING_VALUE", // required
126
+ * signalFetchConfig: { // SignalFetchConfig Union: only one key present
127
+ * timeBased: { // TimeBasedSignalFetchConfig
128
+ * executionFrequencyMs: Number("long"), // required
129
+ * },
130
+ * conditionBased: { // ConditionBasedSignalFetchConfig
131
+ * conditionExpression: "STRING_VALUE", // required
132
+ * triggerMode: "ALWAYS" || "RISING_EDGE", // required
133
+ * },
134
+ * },
135
+ * conditionLanguageVersion: Number("int"),
136
+ * actions: [ // EventExpressionList // required
137
+ * "STRING_VALUE",
138
+ * ],
93
139
  * },
94
140
  * ],
95
141
  * };
@@ -56,7 +56,7 @@ declare const CreateDecoderManifestCommand_base: {
56
56
  * signalDecoders: [ // SignalDecoders
57
57
  * { // SignalDecoder
58
58
  * fullyQualifiedName: "STRING_VALUE", // required
59
- * type: "CAN_SIGNAL" || "OBD_SIGNAL" || "MESSAGE_SIGNAL", // required
59
+ * type: "CAN_SIGNAL" || "OBD_SIGNAL" || "MESSAGE_SIGNAL" || "CUSTOM_DECODING_SIGNAL", // required
60
60
  * interfaceId: "STRING_VALUE", // required
61
61
  * canSignal: { // CanSignal
62
62
  * messageId: Number("int"), // required
@@ -125,12 +125,15 @@ declare const CreateDecoderManifestCommand_base: {
125
125
  * ],
126
126
  * },
127
127
  * },
128
+ * customDecodingSignal: { // CustomDecodingSignal
129
+ * id: "STRING_VALUE", // required
130
+ * },
128
131
  * },
129
132
  * ],
130
133
  * networkInterfaces: [ // NetworkInterfaces
131
134
  * { // NetworkInterface
132
135
  * interfaceId: "STRING_VALUE", // required
133
- * type: "CAN_INTERFACE" || "OBD_INTERFACE" || "VEHICLE_MIDDLEWARE", // required
136
+ * type: "CAN_INTERFACE" || "OBD_INTERFACE" || "VEHICLE_MIDDLEWARE" || "CUSTOM_DECODING_INTERFACE", // required
134
137
  * canInterface: { // CanInterface
135
138
  * name: "STRING_VALUE", // required
136
139
  * protocolName: "STRING_VALUE",
@@ -149,8 +152,12 @@ declare const CreateDecoderManifestCommand_base: {
149
152
  * name: "STRING_VALUE", // required
150
153
  * protocolName: "ROS_2", // required
151
154
  * },
155
+ * customDecodingInterface: { // CustomDecodingInterface
156
+ * name: "STRING_VALUE", // required
157
+ * },
152
158
  * },
153
159
  * ],
160
+ * defaultForUnmappedSignals: "CUSTOM_DECODING",
154
161
  * tags: [ // TagList
155
162
  * { // Tag
156
163
  * Key: "STRING_VALUE", // required
@@ -181,7 +188,8 @@ declare const CreateDecoderManifestCommand_base: {
181
188
  * more than one operation on the same resource at the same time.</p>
182
189
  *
183
190
  * @throws {@link DecoderManifestValidationException} (client fault)
184
- * <p>The request couldn't be completed because it contains signal decoders with one or more validation errors.</p>
191
+ * <p>The request couldn't be completed because it contains signal decoders with one or more
192
+ * validation errors.</p>
185
193
  *
186
194
  * @throws {@link LimitExceededException} (client fault)
187
195
  * <p>A service quota was exceeded. </p>
@@ -74,7 +74,8 @@ declare const CreateModelManifestCommand_base: {
74
74
  * more than one operation on the same resource at the same time.</p>
75
75
  *
76
76
  * @throws {@link InvalidSignalsException} (client fault)
77
- * <p>The request couldn't be completed because it contains signals that aren't valid.</p>
77
+ * <p>The request couldn't be completed because it contains signals that aren't
78
+ * valid.</p>
78
79
  *
79
80
  * @throws {@link LimitExceededException} (client fault)
80
81
  * <p>A service quota was exceeded. </p>