@effect-aws/client-iot-wireless 1.10.9 → 2.0.0-beta.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 (37) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +3 -3
  3. package/dist/dts/IoTWirelessClientInstance.d.ts +2 -2
  4. package/dist/dts/IoTWirelessClientInstance.d.ts.map +1 -1
  5. package/dist/dts/IoTWirelessService.d.ts +114 -116
  6. package/dist/dts/IoTWirelessService.d.ts.map +1 -1
  7. package/dist/dts/IoTWirelessServiceConfig.d.ts.map +1 -1
  8. package/dist/esm/IoTWirelessClientInstance.js +3 -3
  9. package/dist/esm/IoTWirelessClientInstance.js.map +1 -1
  10. package/dist/esm/IoTWirelessService.js +2 -2
  11. package/dist/esm/IoTWirelessService.js.map +1 -1
  12. package/dist/esm/IoTWirelessServiceConfig.js +5 -6
  13. package/dist/esm/IoTWirelessServiceConfig.js.map +1 -1
  14. package/package.json +8 -14
  15. package/src/IoTWirelessClientInstance.ts +4 -4
  16. package/src/IoTWirelessService.ts +115 -115
  17. package/src/IoTWirelessServiceConfig.ts +6 -7
  18. package/dist/cjs/Errors.d.ts +0 -14
  19. package/dist/cjs/Errors.d.ts.map +0 -1
  20. package/dist/cjs/Errors.js +0 -13
  21. package/dist/cjs/Errors.js.map +0 -1
  22. package/dist/cjs/IoTWirelessClientInstance.d.ts +0 -24
  23. package/dist/cjs/IoTWirelessClientInstance.d.ts.map +0 -1
  24. package/dist/cjs/IoTWirelessClientInstance.js +0 -50
  25. package/dist/cjs/IoTWirelessClientInstance.js.map +0 -1
  26. package/dist/cjs/IoTWirelessService.d.ts +0 -494
  27. package/dist/cjs/IoTWirelessService.d.ts.map +0 -1
  28. package/dist/cjs/IoTWirelessService.js +0 -171
  29. package/dist/cjs/IoTWirelessService.js.map +0 -1
  30. package/dist/cjs/IoTWirelessServiceConfig.d.ts +0 -25
  31. package/dist/cjs/IoTWirelessServiceConfig.d.ts.map +0 -1
  32. package/dist/cjs/IoTWirelessServiceConfig.js +0 -35
  33. package/dist/cjs/IoTWirelessServiceConfig.js.map +0 -1
  34. package/dist/cjs/index.d.ts +0 -44
  35. package/dist/cjs/index.d.ts.map +0 -1
  36. package/dist/cjs/index.js +0 -56
  37. package/dist/cjs/index.js.map +0 -1
@@ -344,7 +344,7 @@ import {
344
344
  import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
345
345
  import { Service } from "@effect-aws/commons";
346
346
  import type { Cause } from "effect";
347
- import { Effect, Layer } from "effect";
347
+ import { Effect, Layer, ServiceMap } from "effect";
348
348
  import type {
349
349
  AccessDeniedError,
350
350
  ConflictError,
@@ -485,7 +485,7 @@ interface IoTWirelessService$ {
485
485
  options?: HttpHandlerOptions,
486
486
  ): Effect.Effect<
487
487
  AssociateAwsAccountWithPartnerAccountCommandOutput,
488
- | Cause.TimeoutException
488
+ | Cause.TimeoutError
489
489
  | SdkError
490
490
  | AccessDeniedError
491
491
  | ConflictError
@@ -503,7 +503,7 @@ interface IoTWirelessService$ {
503
503
  options?: HttpHandlerOptions,
504
504
  ): Effect.Effect<
505
505
  AssociateMulticastGroupWithFuotaTaskCommandOutput,
506
- | Cause.TimeoutException
506
+ | Cause.TimeoutError
507
507
  | SdkError
508
508
  | AccessDeniedError
509
509
  | ConflictError
@@ -521,7 +521,7 @@ interface IoTWirelessService$ {
521
521
  options?: HttpHandlerOptions,
522
522
  ): Effect.Effect<
523
523
  AssociateWirelessDeviceWithFuotaTaskCommandOutput,
524
- | Cause.TimeoutException
524
+ | Cause.TimeoutError
525
525
  | SdkError
526
526
  | AccessDeniedError
527
527
  | ConflictError
@@ -539,7 +539,7 @@ interface IoTWirelessService$ {
539
539
  options?: HttpHandlerOptions,
540
540
  ): Effect.Effect<
541
541
  AssociateWirelessDeviceWithMulticastGroupCommandOutput,
542
- | Cause.TimeoutException
542
+ | Cause.TimeoutError
543
543
  | SdkError
544
544
  | AccessDeniedError
545
545
  | ConflictError
@@ -557,7 +557,7 @@ interface IoTWirelessService$ {
557
557
  options?: HttpHandlerOptions,
558
558
  ): Effect.Effect<
559
559
  AssociateWirelessDeviceWithThingCommandOutput,
560
- | Cause.TimeoutException
560
+ | Cause.TimeoutError
561
561
  | SdkError
562
562
  | AccessDeniedError
563
563
  | ConflictError
@@ -575,7 +575,7 @@ interface IoTWirelessService$ {
575
575
  options?: HttpHandlerOptions,
576
576
  ): Effect.Effect<
577
577
  AssociateWirelessGatewayWithCertificateCommandOutput,
578
- | Cause.TimeoutException
578
+ | Cause.TimeoutError
579
579
  | SdkError
580
580
  | AccessDeniedError
581
581
  | ConflictError
@@ -593,7 +593,7 @@ interface IoTWirelessService$ {
593
593
  options?: HttpHandlerOptions,
594
594
  ): Effect.Effect<
595
595
  AssociateWirelessGatewayWithThingCommandOutput,
596
- | Cause.TimeoutException
596
+ | Cause.TimeoutError
597
597
  | SdkError
598
598
  | AccessDeniedError
599
599
  | ConflictError
@@ -611,7 +611,7 @@ interface IoTWirelessService$ {
611
611
  options?: HttpHandlerOptions,
612
612
  ): Effect.Effect<
613
613
  CancelMulticastGroupSessionCommandOutput,
614
- | Cause.TimeoutException
614
+ | Cause.TimeoutError
615
615
  | SdkError
616
616
  | AccessDeniedError
617
617
  | ConflictError
@@ -629,7 +629,7 @@ interface IoTWirelessService$ {
629
629
  options?: HttpHandlerOptions,
630
630
  ): Effect.Effect<
631
631
  CreateDestinationCommandOutput,
632
- | Cause.TimeoutException
632
+ | Cause.TimeoutError
633
633
  | SdkError
634
634
  | AccessDeniedError
635
635
  | ConflictError
@@ -647,7 +647,7 @@ interface IoTWirelessService$ {
647
647
  options?: HttpHandlerOptions,
648
648
  ): Effect.Effect<
649
649
  CreateDeviceProfileCommandOutput,
650
- | Cause.TimeoutException
650
+ | Cause.TimeoutError
651
651
  | SdkError
652
652
  | AccessDeniedError
653
653
  | ConflictError
@@ -664,7 +664,7 @@ interface IoTWirelessService$ {
664
664
  options?: HttpHandlerOptions,
665
665
  ): Effect.Effect<
666
666
  CreateFuotaTaskCommandOutput,
667
- | Cause.TimeoutException
667
+ | Cause.TimeoutError
668
668
  | SdkError
669
669
  | AccessDeniedError
670
670
  | ConflictError
@@ -682,7 +682,7 @@ interface IoTWirelessService$ {
682
682
  options?: HttpHandlerOptions,
683
683
  ): Effect.Effect<
684
684
  CreateMulticastGroupCommandOutput,
685
- | Cause.TimeoutException
685
+ | Cause.TimeoutError
686
686
  | SdkError
687
687
  | AccessDeniedError
688
688
  | ConflictError
@@ -700,7 +700,7 @@ interface IoTWirelessService$ {
700
700
  options?: HttpHandlerOptions,
701
701
  ): Effect.Effect<
702
702
  CreateNetworkAnalyzerConfigurationCommandOutput,
703
- | Cause.TimeoutException
703
+ | Cause.TimeoutError
704
704
  | SdkError
705
705
  | AccessDeniedError
706
706
  | ConflictError
@@ -718,7 +718,7 @@ interface IoTWirelessService$ {
718
718
  options?: HttpHandlerOptions,
719
719
  ): Effect.Effect<
720
720
  CreateServiceProfileCommandOutput,
721
- | Cause.TimeoutException
721
+ | Cause.TimeoutError
722
722
  | SdkError
723
723
  | AccessDeniedError
724
724
  | ConflictError
@@ -735,7 +735,7 @@ interface IoTWirelessService$ {
735
735
  options?: HttpHandlerOptions,
736
736
  ): Effect.Effect<
737
737
  CreateWirelessDeviceCommandOutput,
738
- | Cause.TimeoutException
738
+ | Cause.TimeoutError
739
739
  | SdkError
740
740
  | AccessDeniedError
741
741
  | ConflictError
@@ -753,7 +753,7 @@ interface IoTWirelessService$ {
753
753
  options?: HttpHandlerOptions,
754
754
  ): Effect.Effect<
755
755
  CreateWirelessGatewayCommandOutput,
756
- | Cause.TimeoutException
756
+ | Cause.TimeoutError
757
757
  | SdkError
758
758
  | AccessDeniedError
759
759
  | ConflictError
@@ -770,7 +770,7 @@ interface IoTWirelessService$ {
770
770
  options?: HttpHandlerOptions,
771
771
  ): Effect.Effect<
772
772
  CreateWirelessGatewayTaskCommandOutput,
773
- | Cause.TimeoutException
773
+ | Cause.TimeoutError
774
774
  | SdkError
775
775
  | AccessDeniedError
776
776
  | ConflictError
@@ -788,7 +788,7 @@ interface IoTWirelessService$ {
788
788
  options?: HttpHandlerOptions,
789
789
  ): Effect.Effect<
790
790
  CreateWirelessGatewayTaskDefinitionCommandOutput,
791
- | Cause.TimeoutException
791
+ | Cause.TimeoutError
792
792
  | SdkError
793
793
  | AccessDeniedError
794
794
  | ConflictError
@@ -806,7 +806,7 @@ interface IoTWirelessService$ {
806
806
  options?: HttpHandlerOptions,
807
807
  ): Effect.Effect<
808
808
  DeleteDestinationCommandOutput,
809
- | Cause.TimeoutException
809
+ | Cause.TimeoutError
810
810
  | SdkError
811
811
  | AccessDeniedError
812
812
  | ConflictError
@@ -824,7 +824,7 @@ interface IoTWirelessService$ {
824
824
  options?: HttpHandlerOptions,
825
825
  ): Effect.Effect<
826
826
  DeleteDeviceProfileCommandOutput,
827
- | Cause.TimeoutException
827
+ | Cause.TimeoutError
828
828
  | SdkError
829
829
  | AccessDeniedError
830
830
  | ConflictError
@@ -842,7 +842,7 @@ interface IoTWirelessService$ {
842
842
  options?: HttpHandlerOptions,
843
843
  ): Effect.Effect<
844
844
  DeleteFuotaTaskCommandOutput,
845
- | Cause.TimeoutException
845
+ | Cause.TimeoutError
846
846
  | SdkError
847
847
  | AccessDeniedError
848
848
  | InternalServerError
@@ -859,7 +859,7 @@ interface IoTWirelessService$ {
859
859
  options?: HttpHandlerOptions,
860
860
  ): Effect.Effect<
861
861
  DeleteMulticastGroupCommandOutput,
862
- | Cause.TimeoutException
862
+ | Cause.TimeoutError
863
863
  | SdkError
864
864
  | AccessDeniedError
865
865
  | ConflictError
@@ -877,7 +877,7 @@ interface IoTWirelessService$ {
877
877
  options?: HttpHandlerOptions,
878
878
  ): Effect.Effect<
879
879
  DeleteNetworkAnalyzerConfigurationCommandOutput,
880
- | Cause.TimeoutException
880
+ | Cause.TimeoutError
881
881
  | SdkError
882
882
  | AccessDeniedError
883
883
  | ConflictError
@@ -895,7 +895,7 @@ interface IoTWirelessService$ {
895
895
  options?: HttpHandlerOptions,
896
896
  ): Effect.Effect<
897
897
  DeleteQueuedMessagesCommandOutput,
898
- | Cause.TimeoutException
898
+ | Cause.TimeoutError
899
899
  | SdkError
900
900
  | AccessDeniedError
901
901
  | InternalServerError
@@ -912,7 +912,7 @@ interface IoTWirelessService$ {
912
912
  options?: HttpHandlerOptions,
913
913
  ): Effect.Effect<
914
914
  DeleteServiceProfileCommandOutput,
915
- | Cause.TimeoutException
915
+ | Cause.TimeoutError
916
916
  | SdkError
917
917
  | AccessDeniedError
918
918
  | ConflictError
@@ -930,7 +930,7 @@ interface IoTWirelessService$ {
930
930
  options?: HttpHandlerOptions,
931
931
  ): Effect.Effect<
932
932
  DeleteWirelessDeviceCommandOutput,
933
- | Cause.TimeoutException
933
+ | Cause.TimeoutError
934
934
  | SdkError
935
935
  | AccessDeniedError
936
936
  | InternalServerError
@@ -947,7 +947,7 @@ interface IoTWirelessService$ {
947
947
  options?: HttpHandlerOptions,
948
948
  ): Effect.Effect<
949
949
  DeleteWirelessDeviceImportTaskCommandOutput,
950
- | Cause.TimeoutException
950
+ | Cause.TimeoutError
951
951
  | SdkError
952
952
  | AccessDeniedError
953
953
  | ConflictError
@@ -965,7 +965,7 @@ interface IoTWirelessService$ {
965
965
  options?: HttpHandlerOptions,
966
966
  ): Effect.Effect<
967
967
  DeleteWirelessGatewayCommandOutput,
968
- | Cause.TimeoutException
968
+ | Cause.TimeoutError
969
969
  | SdkError
970
970
  | AccessDeniedError
971
971
  | InternalServerError
@@ -982,7 +982,7 @@ interface IoTWirelessService$ {
982
982
  options?: HttpHandlerOptions,
983
983
  ): Effect.Effect<
984
984
  DeleteWirelessGatewayTaskCommandOutput,
985
- | Cause.TimeoutException
985
+ | Cause.TimeoutError
986
986
  | SdkError
987
987
  | AccessDeniedError
988
988
  | InternalServerError
@@ -999,7 +999,7 @@ interface IoTWirelessService$ {
999
999
  options?: HttpHandlerOptions,
1000
1000
  ): Effect.Effect<
1001
1001
  DeleteWirelessGatewayTaskDefinitionCommandOutput,
1002
- | Cause.TimeoutException
1002
+ | Cause.TimeoutError
1003
1003
  | SdkError
1004
1004
  | AccessDeniedError
1005
1005
  | InternalServerError
@@ -1016,7 +1016,7 @@ interface IoTWirelessService$ {
1016
1016
  options?: HttpHandlerOptions,
1017
1017
  ): Effect.Effect<
1018
1018
  DeregisterWirelessDeviceCommandOutput,
1019
- Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
1019
+ Cause.TimeoutError | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
1020
1020
  >;
1021
1021
 
1022
1022
  /**
@@ -1027,7 +1027,7 @@ interface IoTWirelessService$ {
1027
1027
  options?: HttpHandlerOptions,
1028
1028
  ): Effect.Effect<
1029
1029
  DisassociateAwsAccountFromPartnerAccountCommandOutput,
1030
- Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
1030
+ Cause.TimeoutError | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
1031
1031
  >;
1032
1032
 
1033
1033
  /**
@@ -1038,7 +1038,7 @@ interface IoTWirelessService$ {
1038
1038
  options?: HttpHandlerOptions,
1039
1039
  ): Effect.Effect<
1040
1040
  DisassociateMulticastGroupFromFuotaTaskCommandOutput,
1041
- | Cause.TimeoutException
1041
+ | Cause.TimeoutError
1042
1042
  | SdkError
1043
1043
  | AccessDeniedError
1044
1044
  | ConflictError
@@ -1055,7 +1055,7 @@ interface IoTWirelessService$ {
1055
1055
  options?: HttpHandlerOptions,
1056
1056
  ): Effect.Effect<
1057
1057
  DisassociateWirelessDeviceFromFuotaTaskCommandOutput,
1058
- | Cause.TimeoutException
1058
+ | Cause.TimeoutError
1059
1059
  | SdkError
1060
1060
  | AccessDeniedError
1061
1061
  | ConflictError
@@ -1073,7 +1073,7 @@ interface IoTWirelessService$ {
1073
1073
  options?: HttpHandlerOptions,
1074
1074
  ): Effect.Effect<
1075
1075
  DisassociateWirelessDeviceFromMulticastGroupCommandOutput,
1076
- | Cause.TimeoutException
1076
+ | Cause.TimeoutError
1077
1077
  | SdkError
1078
1078
  | AccessDeniedError
1079
1079
  | InternalServerError
@@ -1090,7 +1090,7 @@ interface IoTWirelessService$ {
1090
1090
  options?: HttpHandlerOptions,
1091
1091
  ): Effect.Effect<
1092
1092
  DisassociateWirelessDeviceFromThingCommandOutput,
1093
- | Cause.TimeoutException
1093
+ | Cause.TimeoutError
1094
1094
  | SdkError
1095
1095
  | AccessDeniedError
1096
1096
  | ConflictError
@@ -1108,7 +1108,7 @@ interface IoTWirelessService$ {
1108
1108
  options?: HttpHandlerOptions,
1109
1109
  ): Effect.Effect<
1110
1110
  DisassociateWirelessGatewayFromCertificateCommandOutput,
1111
- | Cause.TimeoutException
1111
+ | Cause.TimeoutError
1112
1112
  | SdkError
1113
1113
  | AccessDeniedError
1114
1114
  | InternalServerError
@@ -1125,7 +1125,7 @@ interface IoTWirelessService$ {
1125
1125
  options?: HttpHandlerOptions,
1126
1126
  ): Effect.Effect<
1127
1127
  DisassociateWirelessGatewayFromThingCommandOutput,
1128
- | Cause.TimeoutException
1128
+ | Cause.TimeoutError
1129
1129
  | SdkError
1130
1130
  | AccessDeniedError
1131
1131
  | ConflictError
@@ -1143,7 +1143,7 @@ interface IoTWirelessService$ {
1143
1143
  options?: HttpHandlerOptions,
1144
1144
  ): Effect.Effect<
1145
1145
  GetDestinationCommandOutput,
1146
- | Cause.TimeoutException
1146
+ | Cause.TimeoutError
1147
1147
  | SdkError
1148
1148
  | AccessDeniedError
1149
1149
  | InternalServerError
@@ -1160,7 +1160,7 @@ interface IoTWirelessService$ {
1160
1160
  options?: HttpHandlerOptions,
1161
1161
  ): Effect.Effect<
1162
1162
  GetDeviceProfileCommandOutput,
1163
- | Cause.TimeoutException
1163
+ | Cause.TimeoutError
1164
1164
  | SdkError
1165
1165
  | AccessDeniedError
1166
1166
  | InternalServerError
@@ -1177,7 +1177,7 @@ interface IoTWirelessService$ {
1177
1177
  options?: HttpHandlerOptions,
1178
1178
  ): Effect.Effect<
1179
1179
  GetEventConfigurationByResourceTypesCommandOutput,
1180
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError
1180
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError
1181
1181
  >;
1182
1182
 
1183
1183
  /**
@@ -1188,7 +1188,7 @@ interface IoTWirelessService$ {
1188
1188
  options?: HttpHandlerOptions,
1189
1189
  ): Effect.Effect<
1190
1190
  GetFuotaTaskCommandOutput,
1191
- | Cause.TimeoutException
1191
+ | Cause.TimeoutError
1192
1192
  | SdkError
1193
1193
  | AccessDeniedError
1194
1194
  | InternalServerError
@@ -1205,7 +1205,7 @@ interface IoTWirelessService$ {
1205
1205
  options?: HttpHandlerOptions,
1206
1206
  ): Effect.Effect<
1207
1207
  GetLogLevelsByResourceTypesCommandOutput,
1208
- | Cause.TimeoutException
1208
+ | Cause.TimeoutError
1209
1209
  | SdkError
1210
1210
  | AccessDeniedError
1211
1211
  | InternalServerError
@@ -1222,7 +1222,7 @@ interface IoTWirelessService$ {
1222
1222
  options?: HttpHandlerOptions,
1223
1223
  ): Effect.Effect<
1224
1224
  GetMetricConfigurationCommandOutput,
1225
- | Cause.TimeoutException
1225
+ | Cause.TimeoutError
1226
1226
  | SdkError
1227
1227
  | AccessDeniedError
1228
1228
  | ConflictError
@@ -1240,7 +1240,7 @@ interface IoTWirelessService$ {
1240
1240
  options?: HttpHandlerOptions,
1241
1241
  ): Effect.Effect<
1242
1242
  GetMetricsCommandOutput,
1243
- | Cause.TimeoutException
1243
+ | Cause.TimeoutError
1244
1244
  | SdkError
1245
1245
  | AccessDeniedError
1246
1246
  | ConflictError
@@ -1258,7 +1258,7 @@ interface IoTWirelessService$ {
1258
1258
  options?: HttpHandlerOptions,
1259
1259
  ): Effect.Effect<
1260
1260
  GetMulticastGroupCommandOutput,
1261
- | Cause.TimeoutException
1261
+ | Cause.TimeoutError
1262
1262
  | SdkError
1263
1263
  | AccessDeniedError
1264
1264
  | InternalServerError
@@ -1275,7 +1275,7 @@ interface IoTWirelessService$ {
1275
1275
  options?: HttpHandlerOptions,
1276
1276
  ): Effect.Effect<
1277
1277
  GetMulticastGroupSessionCommandOutput,
1278
- | Cause.TimeoutException
1278
+ | Cause.TimeoutError
1279
1279
  | SdkError
1280
1280
  | AccessDeniedError
1281
1281
  | InternalServerError
@@ -1292,7 +1292,7 @@ interface IoTWirelessService$ {
1292
1292
  options?: HttpHandlerOptions,
1293
1293
  ): Effect.Effect<
1294
1294
  GetNetworkAnalyzerConfigurationCommandOutput,
1295
- | Cause.TimeoutException
1295
+ | Cause.TimeoutError
1296
1296
  | SdkError
1297
1297
  | AccessDeniedError
1298
1298
  | InternalServerError
@@ -1309,7 +1309,7 @@ interface IoTWirelessService$ {
1309
1309
  options?: HttpHandlerOptions,
1310
1310
  ): Effect.Effect<
1311
1311
  GetPartnerAccountCommandOutput,
1312
- Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
1312
+ Cause.TimeoutError | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
1313
1313
  >;
1314
1314
 
1315
1315
  /**
@@ -1320,7 +1320,7 @@ interface IoTWirelessService$ {
1320
1320
  options?: HttpHandlerOptions,
1321
1321
  ): Effect.Effect<
1322
1322
  GetPositionCommandOutput,
1323
- | Cause.TimeoutException
1323
+ | Cause.TimeoutError
1324
1324
  | SdkError
1325
1325
  | AccessDeniedError
1326
1326
  | InternalServerError
@@ -1337,7 +1337,7 @@ interface IoTWirelessService$ {
1337
1337
  options?: HttpHandlerOptions,
1338
1338
  ): Effect.Effect<
1339
1339
  GetPositionConfigurationCommandOutput,
1340
- | Cause.TimeoutException
1340
+ | Cause.TimeoutError
1341
1341
  | SdkError
1342
1342
  | AccessDeniedError
1343
1343
  | InternalServerError
@@ -1354,7 +1354,7 @@ interface IoTWirelessService$ {
1354
1354
  options?: HttpHandlerOptions,
1355
1355
  ): Effect.Effect<
1356
1356
  GetPositionEstimateCommandOutput,
1357
- | Cause.TimeoutException
1357
+ | Cause.TimeoutError
1358
1358
  | SdkError
1359
1359
  | AccessDeniedError
1360
1360
  | InternalServerError
@@ -1371,7 +1371,7 @@ interface IoTWirelessService$ {
1371
1371
  options?: HttpHandlerOptions,
1372
1372
  ): Effect.Effect<
1373
1373
  GetResourceEventConfigurationCommandOutput,
1374
- | Cause.TimeoutException
1374
+ | Cause.TimeoutError
1375
1375
  | SdkError
1376
1376
  | AccessDeniedError
1377
1377
  | InternalServerError
@@ -1388,7 +1388,7 @@ interface IoTWirelessService$ {
1388
1388
  options?: HttpHandlerOptions,
1389
1389
  ): Effect.Effect<
1390
1390
  GetResourceLogLevelCommandOutput,
1391
- | Cause.TimeoutException
1391
+ | Cause.TimeoutError
1392
1392
  | SdkError
1393
1393
  | AccessDeniedError
1394
1394
  | InternalServerError
@@ -1405,7 +1405,7 @@ interface IoTWirelessService$ {
1405
1405
  options?: HttpHandlerOptions,
1406
1406
  ): Effect.Effect<
1407
1407
  GetResourcePositionCommandOutput,
1408
- | Cause.TimeoutException
1408
+ | Cause.TimeoutError
1409
1409
  | SdkError
1410
1410
  | AccessDeniedError
1411
1411
  | InternalServerError
@@ -1422,7 +1422,7 @@ interface IoTWirelessService$ {
1422
1422
  options?: HttpHandlerOptions,
1423
1423
  ): Effect.Effect<
1424
1424
  GetServiceEndpointCommandOutput,
1425
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1425
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1426
1426
  >;
1427
1427
 
1428
1428
  /**
@@ -1433,7 +1433,7 @@ interface IoTWirelessService$ {
1433
1433
  options?: HttpHandlerOptions,
1434
1434
  ): Effect.Effect<
1435
1435
  GetServiceProfileCommandOutput,
1436
- | Cause.TimeoutException
1436
+ | Cause.TimeoutError
1437
1437
  | SdkError
1438
1438
  | AccessDeniedError
1439
1439
  | InternalServerError
@@ -1450,7 +1450,7 @@ interface IoTWirelessService$ {
1450
1450
  options?: HttpHandlerOptions,
1451
1451
  ): Effect.Effect<
1452
1452
  GetWirelessDeviceCommandOutput,
1453
- | Cause.TimeoutException
1453
+ | Cause.TimeoutError
1454
1454
  | SdkError
1455
1455
  | AccessDeniedError
1456
1456
  | InternalServerError
@@ -1467,7 +1467,7 @@ interface IoTWirelessService$ {
1467
1467
  options?: HttpHandlerOptions,
1468
1468
  ): Effect.Effect<
1469
1469
  GetWirelessDeviceImportTaskCommandOutput,
1470
- | Cause.TimeoutException
1470
+ | Cause.TimeoutError
1471
1471
  | SdkError
1472
1472
  | AccessDeniedError
1473
1473
  | ConflictError
@@ -1485,7 +1485,7 @@ interface IoTWirelessService$ {
1485
1485
  options?: HttpHandlerOptions,
1486
1486
  ): Effect.Effect<
1487
1487
  GetWirelessDeviceStatisticsCommandOutput,
1488
- | Cause.TimeoutException
1488
+ | Cause.TimeoutError
1489
1489
  | SdkError
1490
1490
  | AccessDeniedError
1491
1491
  | InternalServerError
@@ -1502,7 +1502,7 @@ interface IoTWirelessService$ {
1502
1502
  options?: HttpHandlerOptions,
1503
1503
  ): Effect.Effect<
1504
1504
  GetWirelessGatewayCommandOutput,
1505
- | Cause.TimeoutException
1505
+ | Cause.TimeoutError
1506
1506
  | SdkError
1507
1507
  | AccessDeniedError
1508
1508
  | InternalServerError
@@ -1519,7 +1519,7 @@ interface IoTWirelessService$ {
1519
1519
  options?: HttpHandlerOptions,
1520
1520
  ): Effect.Effect<
1521
1521
  GetWirelessGatewayCertificateCommandOutput,
1522
- | Cause.TimeoutException
1522
+ | Cause.TimeoutError
1523
1523
  | SdkError
1524
1524
  | AccessDeniedError
1525
1525
  | InternalServerError
@@ -1536,7 +1536,7 @@ interface IoTWirelessService$ {
1536
1536
  options?: HttpHandlerOptions,
1537
1537
  ): Effect.Effect<
1538
1538
  GetWirelessGatewayFirmwareInformationCommandOutput,
1539
- | Cause.TimeoutException
1539
+ | Cause.TimeoutError
1540
1540
  | SdkError
1541
1541
  | AccessDeniedError
1542
1542
  | InternalServerError
@@ -1553,7 +1553,7 @@ interface IoTWirelessService$ {
1553
1553
  options?: HttpHandlerOptions,
1554
1554
  ): Effect.Effect<
1555
1555
  GetWirelessGatewayStatisticsCommandOutput,
1556
- | Cause.TimeoutException
1556
+ | Cause.TimeoutError
1557
1557
  | SdkError
1558
1558
  | AccessDeniedError
1559
1559
  | InternalServerError
@@ -1570,7 +1570,7 @@ interface IoTWirelessService$ {
1570
1570
  options?: HttpHandlerOptions,
1571
1571
  ): Effect.Effect<
1572
1572
  GetWirelessGatewayTaskCommandOutput,
1573
- | Cause.TimeoutException
1573
+ | Cause.TimeoutError
1574
1574
  | SdkError
1575
1575
  | AccessDeniedError
1576
1576
  | InternalServerError
@@ -1587,7 +1587,7 @@ interface IoTWirelessService$ {
1587
1587
  options?: HttpHandlerOptions,
1588
1588
  ): Effect.Effect<
1589
1589
  GetWirelessGatewayTaskDefinitionCommandOutput,
1590
- | Cause.TimeoutException
1590
+ | Cause.TimeoutError
1591
1591
  | SdkError
1592
1592
  | AccessDeniedError
1593
1593
  | InternalServerError
@@ -1604,7 +1604,7 @@ interface IoTWirelessService$ {
1604
1604
  options?: HttpHandlerOptions,
1605
1605
  ): Effect.Effect<
1606
1606
  ListDestinationsCommandOutput,
1607
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1607
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1608
1608
  >;
1609
1609
 
1610
1610
  /**
@@ -1615,7 +1615,7 @@ interface IoTWirelessService$ {
1615
1615
  options?: HttpHandlerOptions,
1616
1616
  ): Effect.Effect<
1617
1617
  ListDeviceProfilesCommandOutput,
1618
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1618
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1619
1619
  >;
1620
1620
 
1621
1621
  /**
@@ -1626,7 +1626,7 @@ interface IoTWirelessService$ {
1626
1626
  options?: HttpHandlerOptions,
1627
1627
  ): Effect.Effect<
1628
1628
  ListDevicesForWirelessDeviceImportTaskCommandOutput,
1629
- | Cause.TimeoutException
1629
+ | Cause.TimeoutError
1630
1630
  | SdkError
1631
1631
  | AccessDeniedError
1632
1632
  | ConflictError
@@ -1644,7 +1644,7 @@ interface IoTWirelessService$ {
1644
1644
  options?: HttpHandlerOptions,
1645
1645
  ): Effect.Effect<
1646
1646
  ListEventConfigurationsCommandOutput,
1647
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1647
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1648
1648
  >;
1649
1649
 
1650
1650
  /**
@@ -1655,7 +1655,7 @@ interface IoTWirelessService$ {
1655
1655
  options?: HttpHandlerOptions,
1656
1656
  ): Effect.Effect<
1657
1657
  ListFuotaTasksCommandOutput,
1658
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1658
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1659
1659
  >;
1660
1660
 
1661
1661
  /**
@@ -1666,7 +1666,7 @@ interface IoTWirelessService$ {
1666
1666
  options?: HttpHandlerOptions,
1667
1667
  ): Effect.Effect<
1668
1668
  ListMulticastGroupsCommandOutput,
1669
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1669
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1670
1670
  >;
1671
1671
 
1672
1672
  /**
@@ -1677,7 +1677,7 @@ interface IoTWirelessService$ {
1677
1677
  options?: HttpHandlerOptions,
1678
1678
  ): Effect.Effect<
1679
1679
  ListMulticastGroupsByFuotaTaskCommandOutput,
1680
- | Cause.TimeoutException
1680
+ | Cause.TimeoutError
1681
1681
  | SdkError
1682
1682
  | AccessDeniedError
1683
1683
  | InternalServerError
@@ -1694,7 +1694,7 @@ interface IoTWirelessService$ {
1694
1694
  options?: HttpHandlerOptions,
1695
1695
  ): Effect.Effect<
1696
1696
  ListNetworkAnalyzerConfigurationsCommandOutput,
1697
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1697
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1698
1698
  >;
1699
1699
 
1700
1700
  /**
@@ -1705,7 +1705,7 @@ interface IoTWirelessService$ {
1705
1705
  options?: HttpHandlerOptions,
1706
1706
  ): Effect.Effect<
1707
1707
  ListPartnerAccountsCommandOutput,
1708
- Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
1708
+ Cause.TimeoutError | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
1709
1709
  >;
1710
1710
 
1711
1711
  /**
@@ -1716,7 +1716,7 @@ interface IoTWirelessService$ {
1716
1716
  options?: HttpHandlerOptions,
1717
1717
  ): Effect.Effect<
1718
1718
  ListPositionConfigurationsCommandOutput,
1719
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1719
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1720
1720
  >;
1721
1721
 
1722
1722
  /**
@@ -1727,7 +1727,7 @@ interface IoTWirelessService$ {
1727
1727
  options?: HttpHandlerOptions,
1728
1728
  ): Effect.Effect<
1729
1729
  ListQueuedMessagesCommandOutput,
1730
- | Cause.TimeoutException
1730
+ | Cause.TimeoutError
1731
1731
  | SdkError
1732
1732
  | AccessDeniedError
1733
1733
  | InternalServerError
@@ -1744,7 +1744,7 @@ interface IoTWirelessService$ {
1744
1744
  options?: HttpHandlerOptions,
1745
1745
  ): Effect.Effect<
1746
1746
  ListServiceProfilesCommandOutput,
1747
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1747
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1748
1748
  >;
1749
1749
 
1750
1750
  /**
@@ -1755,7 +1755,7 @@ interface IoTWirelessService$ {
1755
1755
  options?: HttpHandlerOptions,
1756
1756
  ): Effect.Effect<
1757
1757
  ListTagsForResourceCommandOutput,
1758
- | Cause.TimeoutException
1758
+ | Cause.TimeoutError
1759
1759
  | SdkError
1760
1760
  | ConflictError
1761
1761
  | InternalServerError
@@ -1772,7 +1772,7 @@ interface IoTWirelessService$ {
1772
1772
  options?: HttpHandlerOptions,
1773
1773
  ): Effect.Effect<
1774
1774
  ListWirelessDeviceImportTasksCommandOutput,
1775
- | Cause.TimeoutException
1775
+ | Cause.TimeoutError
1776
1776
  | SdkError
1777
1777
  | AccessDeniedError
1778
1778
  | ConflictError
@@ -1790,7 +1790,7 @@ interface IoTWirelessService$ {
1790
1790
  options?: HttpHandlerOptions,
1791
1791
  ): Effect.Effect<
1792
1792
  ListWirelessDevicesCommandOutput,
1793
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1793
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1794
1794
  >;
1795
1795
 
1796
1796
  /**
@@ -1801,7 +1801,7 @@ interface IoTWirelessService$ {
1801
1801
  options?: HttpHandlerOptions,
1802
1802
  ): Effect.Effect<
1803
1803
  ListWirelessGatewayTaskDefinitionsCommandOutput,
1804
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1804
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1805
1805
  >;
1806
1806
 
1807
1807
  /**
@@ -1812,7 +1812,7 @@ interface IoTWirelessService$ {
1812
1812
  options?: HttpHandlerOptions,
1813
1813
  ): Effect.Effect<
1814
1814
  ListWirelessGatewaysCommandOutput,
1815
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1815
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
1816
1816
  >;
1817
1817
 
1818
1818
  /**
@@ -1823,7 +1823,7 @@ interface IoTWirelessService$ {
1823
1823
  options?: HttpHandlerOptions,
1824
1824
  ): Effect.Effect<
1825
1825
  PutPositionConfigurationCommandOutput,
1826
- | Cause.TimeoutException
1826
+ | Cause.TimeoutError
1827
1827
  | SdkError
1828
1828
  | AccessDeniedError
1829
1829
  | InternalServerError
@@ -1840,7 +1840,7 @@ interface IoTWirelessService$ {
1840
1840
  options?: HttpHandlerOptions,
1841
1841
  ): Effect.Effect<
1842
1842
  PutResourceLogLevelCommandOutput,
1843
- | Cause.TimeoutException
1843
+ | Cause.TimeoutError
1844
1844
  | SdkError
1845
1845
  | AccessDeniedError
1846
1846
  | InternalServerError
@@ -1857,7 +1857,7 @@ interface IoTWirelessService$ {
1857
1857
  options?: HttpHandlerOptions,
1858
1858
  ): Effect.Effect<
1859
1859
  ResetAllResourceLogLevelsCommandOutput,
1860
- | Cause.TimeoutException
1860
+ | Cause.TimeoutError
1861
1861
  | SdkError
1862
1862
  | AccessDeniedError
1863
1863
  | InternalServerError
@@ -1874,7 +1874,7 @@ interface IoTWirelessService$ {
1874
1874
  options?: HttpHandlerOptions,
1875
1875
  ): Effect.Effect<
1876
1876
  ResetResourceLogLevelCommandOutput,
1877
- | Cause.TimeoutException
1877
+ | Cause.TimeoutError
1878
1878
  | SdkError
1879
1879
  | AccessDeniedError
1880
1880
  | InternalServerError
@@ -1891,7 +1891,7 @@ interface IoTWirelessService$ {
1891
1891
  options?: HttpHandlerOptions,
1892
1892
  ): Effect.Effect<
1893
1893
  SendDataToMulticastGroupCommandOutput,
1894
- | Cause.TimeoutException
1894
+ | Cause.TimeoutError
1895
1895
  | SdkError
1896
1896
  | AccessDeniedError
1897
1897
  | ConflictError
@@ -1909,7 +1909,7 @@ interface IoTWirelessService$ {
1909
1909
  options?: HttpHandlerOptions,
1910
1910
  ): Effect.Effect<
1911
1911
  SendDataToWirelessDeviceCommandOutput,
1912
- Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
1912
+ Cause.TimeoutError | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
1913
1913
  >;
1914
1914
 
1915
1915
  /**
@@ -1920,7 +1920,7 @@ interface IoTWirelessService$ {
1920
1920
  options?: HttpHandlerOptions,
1921
1921
  ): Effect.Effect<
1922
1922
  StartBulkAssociateWirelessDeviceWithMulticastGroupCommandOutput,
1923
- | Cause.TimeoutException
1923
+ | Cause.TimeoutError
1924
1924
  | SdkError
1925
1925
  | AccessDeniedError
1926
1926
  | InternalServerError
@@ -1937,7 +1937,7 @@ interface IoTWirelessService$ {
1937
1937
  options?: HttpHandlerOptions,
1938
1938
  ): Effect.Effect<
1939
1939
  StartBulkDisassociateWirelessDeviceFromMulticastGroupCommandOutput,
1940
- | Cause.TimeoutException
1940
+ | Cause.TimeoutError
1941
1941
  | SdkError
1942
1942
  | AccessDeniedError
1943
1943
  | InternalServerError
@@ -1954,7 +1954,7 @@ interface IoTWirelessService$ {
1954
1954
  options?: HttpHandlerOptions,
1955
1955
  ): Effect.Effect<
1956
1956
  StartFuotaTaskCommandOutput,
1957
- | Cause.TimeoutException
1957
+ | Cause.TimeoutError
1958
1958
  | SdkError
1959
1959
  | AccessDeniedError
1960
1960
  | ConflictError
@@ -1972,7 +1972,7 @@ interface IoTWirelessService$ {
1972
1972
  options?: HttpHandlerOptions,
1973
1973
  ): Effect.Effect<
1974
1974
  StartMulticastGroupSessionCommandOutput,
1975
- | Cause.TimeoutException
1975
+ | Cause.TimeoutError
1976
1976
  | SdkError
1977
1977
  | AccessDeniedError
1978
1978
  | ConflictError
@@ -1990,7 +1990,7 @@ interface IoTWirelessService$ {
1990
1990
  options?: HttpHandlerOptions,
1991
1991
  ): Effect.Effect<
1992
1992
  StartSingleWirelessDeviceImportTaskCommandOutput,
1993
- | Cause.TimeoutException
1993
+ | Cause.TimeoutError
1994
1994
  | SdkError
1995
1995
  | AccessDeniedError
1996
1996
  | ConflictError
@@ -2008,7 +2008,7 @@ interface IoTWirelessService$ {
2008
2008
  options?: HttpHandlerOptions,
2009
2009
  ): Effect.Effect<
2010
2010
  StartWirelessDeviceImportTaskCommandOutput,
2011
- | Cause.TimeoutException
2011
+ | Cause.TimeoutError
2012
2012
  | SdkError
2013
2013
  | AccessDeniedError
2014
2014
  | ConflictError
@@ -2026,7 +2026,7 @@ interface IoTWirelessService$ {
2026
2026
  options?: HttpHandlerOptions,
2027
2027
  ): Effect.Effect<
2028
2028
  TagResourceCommandOutput,
2029
- | Cause.TimeoutException
2029
+ | Cause.TimeoutError
2030
2030
  | SdkError
2031
2031
  | ConflictError
2032
2032
  | InternalServerError
@@ -2044,7 +2044,7 @@ interface IoTWirelessService$ {
2044
2044
  options?: HttpHandlerOptions,
2045
2045
  ): Effect.Effect<
2046
2046
  TestWirelessDeviceCommandOutput,
2047
- Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
2047
+ Cause.TimeoutError | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
2048
2048
  >;
2049
2049
 
2050
2050
  /**
@@ -2055,7 +2055,7 @@ interface IoTWirelessService$ {
2055
2055
  options?: HttpHandlerOptions,
2056
2056
  ): Effect.Effect<
2057
2057
  UntagResourceCommandOutput,
2058
- | Cause.TimeoutException
2058
+ | Cause.TimeoutError
2059
2059
  | SdkError
2060
2060
  | ConflictError
2061
2061
  | InternalServerError
@@ -2072,7 +2072,7 @@ interface IoTWirelessService$ {
2072
2072
  options?: HttpHandlerOptions,
2073
2073
  ): Effect.Effect<
2074
2074
  UpdateDestinationCommandOutput,
2075
- | Cause.TimeoutException
2075
+ | Cause.TimeoutError
2076
2076
  | SdkError
2077
2077
  | AccessDeniedError
2078
2078
  | InternalServerError
@@ -2089,7 +2089,7 @@ interface IoTWirelessService$ {
2089
2089
  options?: HttpHandlerOptions,
2090
2090
  ): Effect.Effect<
2091
2091
  UpdateEventConfigurationByResourceTypesCommandOutput,
2092
- Cause.TimeoutException | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2092
+ Cause.TimeoutError | SdkError | AccessDeniedError | InternalServerError | ThrottlingError | ValidationError
2093
2093
  >;
2094
2094
 
2095
2095
  /**
@@ -2100,7 +2100,7 @@ interface IoTWirelessService$ {
2100
2100
  options?: HttpHandlerOptions,
2101
2101
  ): Effect.Effect<
2102
2102
  UpdateFuotaTaskCommandOutput,
2103
- | Cause.TimeoutException
2103
+ | Cause.TimeoutError
2104
2104
  | SdkError
2105
2105
  | AccessDeniedError
2106
2106
  | ConflictError
@@ -2118,7 +2118,7 @@ interface IoTWirelessService$ {
2118
2118
  options?: HttpHandlerOptions,
2119
2119
  ): Effect.Effect<
2120
2120
  UpdateLogLevelsByResourceTypesCommandOutput,
2121
- | Cause.TimeoutException
2121
+ | Cause.TimeoutError
2122
2122
  | SdkError
2123
2123
  | AccessDeniedError
2124
2124
  | ConflictError
@@ -2136,7 +2136,7 @@ interface IoTWirelessService$ {
2136
2136
  options?: HttpHandlerOptions,
2137
2137
  ): Effect.Effect<
2138
2138
  UpdateMetricConfigurationCommandOutput,
2139
- | Cause.TimeoutException
2139
+ | Cause.TimeoutError
2140
2140
  | SdkError
2141
2141
  | AccessDeniedError
2142
2142
  | ConflictError
@@ -2154,7 +2154,7 @@ interface IoTWirelessService$ {
2154
2154
  options?: HttpHandlerOptions,
2155
2155
  ): Effect.Effect<
2156
2156
  UpdateMulticastGroupCommandOutput,
2157
- | Cause.TimeoutException
2157
+ | Cause.TimeoutError
2158
2158
  | SdkError
2159
2159
  | AccessDeniedError
2160
2160
  | ConflictError
@@ -2172,7 +2172,7 @@ interface IoTWirelessService$ {
2172
2172
  options?: HttpHandlerOptions,
2173
2173
  ): Effect.Effect<
2174
2174
  UpdateNetworkAnalyzerConfigurationCommandOutput,
2175
- | Cause.TimeoutException
2175
+ | Cause.TimeoutError
2176
2176
  | SdkError
2177
2177
  | AccessDeniedError
2178
2178
  | InternalServerError
@@ -2189,7 +2189,7 @@ interface IoTWirelessService$ {
2189
2189
  options?: HttpHandlerOptions,
2190
2190
  ): Effect.Effect<
2191
2191
  UpdatePartnerAccountCommandOutput,
2192
- Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
2192
+ Cause.TimeoutError | SdkError | InternalServerError | ResourceNotFoundError | ThrottlingError | ValidationError
2193
2193
  >;
2194
2194
 
2195
2195
  /**
@@ -2200,7 +2200,7 @@ interface IoTWirelessService$ {
2200
2200
  options?: HttpHandlerOptions,
2201
2201
  ): Effect.Effect<
2202
2202
  UpdatePositionCommandOutput,
2203
- | Cause.TimeoutException
2203
+ | Cause.TimeoutError
2204
2204
  | SdkError
2205
2205
  | AccessDeniedError
2206
2206
  | InternalServerError
@@ -2217,7 +2217,7 @@ interface IoTWirelessService$ {
2217
2217
  options?: HttpHandlerOptions,
2218
2218
  ): Effect.Effect<
2219
2219
  UpdateResourceEventConfigurationCommandOutput,
2220
- | Cause.TimeoutException
2220
+ | Cause.TimeoutError
2221
2221
  | SdkError
2222
2222
  | AccessDeniedError
2223
2223
  | ConflictError
@@ -2235,7 +2235,7 @@ interface IoTWirelessService$ {
2235
2235
  options?: HttpHandlerOptions,
2236
2236
  ): Effect.Effect<
2237
2237
  UpdateResourcePositionCommandOutput,
2238
- | Cause.TimeoutException
2238
+ | Cause.TimeoutError
2239
2239
  | SdkError
2240
2240
  | AccessDeniedError
2241
2241
  | InternalServerError
@@ -2252,7 +2252,7 @@ interface IoTWirelessService$ {
2252
2252
  options?: HttpHandlerOptions,
2253
2253
  ): Effect.Effect<
2254
2254
  UpdateWirelessDeviceCommandOutput,
2255
- | Cause.TimeoutException
2255
+ | Cause.TimeoutError
2256
2256
  | SdkError
2257
2257
  | AccessDeniedError
2258
2258
  | InternalServerError
@@ -2269,7 +2269,7 @@ interface IoTWirelessService$ {
2269
2269
  options?: HttpHandlerOptions,
2270
2270
  ): Effect.Effect<
2271
2271
  UpdateWirelessDeviceImportTaskCommandOutput,
2272
- | Cause.TimeoutException
2272
+ | Cause.TimeoutError
2273
2273
  | SdkError
2274
2274
  | AccessDeniedError
2275
2275
  | ConflictError
@@ -2287,7 +2287,7 @@ interface IoTWirelessService$ {
2287
2287
  options?: HttpHandlerOptions,
2288
2288
  ): Effect.Effect<
2289
2289
  UpdateWirelessGatewayCommandOutput,
2290
- | Cause.TimeoutException
2290
+ | Cause.TimeoutError
2291
2291
  | SdkError
2292
2292
  | AccessDeniedError
2293
2293
  | InternalServerError
@@ -2318,10 +2318,10 @@ export const makeIoTWirelessService = Effect.gen(function*() {
2318
2318
  * @since 1.0.0
2319
2319
  * @category models
2320
2320
  */
2321
- export class IoTWirelessService extends Effect.Tag("@effect-aws/client-iot-wireless/IoTWirelessService")<
2321
+ export class IoTWirelessService extends ServiceMap.Service<
2322
2322
  IoTWirelessService,
2323
2323
  IoTWirelessService$
2324
- >() {
2324
+ >()("@effect-aws/client-iot-wireless/IoTWirelessService") {
2325
2325
  static readonly defaultLayer = Layer.effect(this, makeIoTWirelessService).pipe(Layer.provide(Instance.layer));
2326
2326
  static readonly layer = (config: IoTWirelessService.Config) =>
2327
2327
  Layer.effect(this, makeIoTWirelessService).pipe(