@effect-aws/client-iam 1.9.5 → 1.10.2
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.
- package/dist/cjs/Errors.d.ts +3 -3
- package/dist/cjs/Errors.d.ts.map +1 -1
- package/dist/cjs/Errors.js +1 -3
- package/dist/cjs/Errors.js.map +1 -1
- package/dist/cjs/IAMService.d.ts +168 -167
- package/dist/cjs/IAMService.d.ts.map +1 -1
- package/dist/cjs/IAMService.js +1 -1
- package/dist/cjs/IAMService.js.map +1 -1
- package/dist/dts/Errors.d.ts +3 -3
- package/dist/dts/Errors.d.ts.map +1 -1
- package/dist/dts/IAMService.d.ts +168 -167
- package/dist/dts/IAMService.d.ts.map +1 -1
- package/dist/esm/Errors.js +0 -2
- package/dist/esm/Errors.js.map +1 -1
- package/dist/esm/IAMService.js +1 -1
- package/dist/esm/IAMService.js.map +1 -1
- package/package.json +2 -2
- package/src/Errors.ts +1 -4
- package/src/IAMService.ts +290 -123
package/src/IAMService.ts
CHANGED
|
@@ -497,8 +497,9 @@ import {
|
|
|
497
497
|
type UploadSSHPublicKeyCommandInput,
|
|
498
498
|
type UploadSSHPublicKeyCommandOutput,
|
|
499
499
|
} from "@aws-sdk/client-iam";
|
|
500
|
-
import type { HttpHandlerOptions,
|
|
500
|
+
import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
|
|
501
501
|
import { Service } from "@effect-aws/commons";
|
|
502
|
+
import type { Cause } from "effect";
|
|
502
503
|
import { Effect, Layer } from "effect";
|
|
503
504
|
import type {
|
|
504
505
|
AccountNotManagementOrDelegatedAdministratorError,
|
|
@@ -529,6 +530,7 @@ import type {
|
|
|
529
530
|
PolicyEvaluationError,
|
|
530
531
|
PolicyNotAttachableError,
|
|
531
532
|
ReportGenerationLimitExceededError,
|
|
533
|
+
SdkError,
|
|
532
534
|
ServiceAccessNotEnabledError,
|
|
533
535
|
ServiceFailureError,
|
|
534
536
|
ServiceNotSupportedError,
|
|
@@ -717,7 +719,7 @@ interface IAMService$ {
|
|
|
717
719
|
options?: HttpHandlerOptions,
|
|
718
720
|
): Effect.Effect<
|
|
719
721
|
AddClientIDToOpenIDConnectProviderCommandOutput,
|
|
720
|
-
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
722
|
+
Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
721
723
|
>;
|
|
722
724
|
|
|
723
725
|
/**
|
|
@@ -728,6 +730,7 @@ interface IAMService$ {
|
|
|
728
730
|
options?: HttpHandlerOptions,
|
|
729
731
|
): Effect.Effect<
|
|
730
732
|
AddRoleToInstanceProfileCommandOutput,
|
|
733
|
+
| Cause.TimeoutException
|
|
731
734
|
| SdkError
|
|
732
735
|
| EntityAlreadyExistsError
|
|
733
736
|
| LimitExceededError
|
|
@@ -744,7 +747,7 @@ interface IAMService$ {
|
|
|
744
747
|
options?: HttpHandlerOptions,
|
|
745
748
|
): Effect.Effect<
|
|
746
749
|
AddUserToGroupCommandOutput,
|
|
747
|
-
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
750
|
+
Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
748
751
|
>;
|
|
749
752
|
|
|
750
753
|
/**
|
|
@@ -755,6 +758,7 @@ interface IAMService$ {
|
|
|
755
758
|
options?: HttpHandlerOptions,
|
|
756
759
|
): Effect.Effect<
|
|
757
760
|
AttachGroupPolicyCommandOutput,
|
|
761
|
+
| Cause.TimeoutException
|
|
758
762
|
| SdkError
|
|
759
763
|
| InvalidInputError
|
|
760
764
|
| LimitExceededError
|
|
@@ -771,6 +775,7 @@ interface IAMService$ {
|
|
|
771
775
|
options?: HttpHandlerOptions,
|
|
772
776
|
): Effect.Effect<
|
|
773
777
|
AttachRolePolicyCommandOutput,
|
|
778
|
+
| Cause.TimeoutException
|
|
774
779
|
| SdkError
|
|
775
780
|
| InvalidInputError
|
|
776
781
|
| LimitExceededError
|
|
@@ -788,6 +793,7 @@ interface IAMService$ {
|
|
|
788
793
|
options?: HttpHandlerOptions,
|
|
789
794
|
): Effect.Effect<
|
|
790
795
|
AttachUserPolicyCommandOutput,
|
|
796
|
+
| Cause.TimeoutException
|
|
791
797
|
| SdkError
|
|
792
798
|
| InvalidInputError
|
|
793
799
|
| LimitExceededError
|
|
@@ -804,6 +810,7 @@ interface IAMService$ {
|
|
|
804
810
|
options?: HttpHandlerOptions,
|
|
805
811
|
): Effect.Effect<
|
|
806
812
|
ChangePasswordCommandOutput,
|
|
813
|
+
| Cause.TimeoutException
|
|
807
814
|
| SdkError
|
|
808
815
|
| EntityTemporarilyUnmodifiableError
|
|
809
816
|
| InvalidUserTypeError
|
|
@@ -821,7 +828,7 @@ interface IAMService$ {
|
|
|
821
828
|
options?: HttpHandlerOptions,
|
|
822
829
|
): Effect.Effect<
|
|
823
830
|
CreateAccessKeyCommandOutput,
|
|
824
|
-
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
831
|
+
Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
825
832
|
>;
|
|
826
833
|
|
|
827
834
|
/**
|
|
@@ -832,7 +839,12 @@ interface IAMService$ {
|
|
|
832
839
|
options?: HttpHandlerOptions,
|
|
833
840
|
): Effect.Effect<
|
|
834
841
|
CreateAccountAliasCommandOutput,
|
|
835
|
-
|
|
842
|
+
| Cause.TimeoutException
|
|
843
|
+
| SdkError
|
|
844
|
+
| ConcurrentModificationError
|
|
845
|
+
| EntityAlreadyExistsError
|
|
846
|
+
| LimitExceededError
|
|
847
|
+
| ServiceFailureError
|
|
836
848
|
>;
|
|
837
849
|
|
|
838
850
|
/**
|
|
@@ -843,7 +855,12 @@ interface IAMService$ {
|
|
|
843
855
|
options?: HttpHandlerOptions,
|
|
844
856
|
): Effect.Effect<
|
|
845
857
|
CreateGroupCommandOutput,
|
|
846
|
-
|
|
858
|
+
| Cause.TimeoutException
|
|
859
|
+
| SdkError
|
|
860
|
+
| EntityAlreadyExistsError
|
|
861
|
+
| LimitExceededError
|
|
862
|
+
| NoSuchEntityError
|
|
863
|
+
| ServiceFailureError
|
|
847
864
|
>;
|
|
848
865
|
|
|
849
866
|
/**
|
|
@@ -854,6 +871,7 @@ interface IAMService$ {
|
|
|
854
871
|
options?: HttpHandlerOptions,
|
|
855
872
|
): Effect.Effect<
|
|
856
873
|
CreateInstanceProfileCommandOutput,
|
|
874
|
+
| Cause.TimeoutException
|
|
857
875
|
| SdkError
|
|
858
876
|
| ConcurrentModificationError
|
|
859
877
|
| EntityAlreadyExistsError
|
|
@@ -870,6 +888,7 @@ interface IAMService$ {
|
|
|
870
888
|
options?: HttpHandlerOptions,
|
|
871
889
|
): Effect.Effect<
|
|
872
890
|
CreateLoginProfileCommandOutput,
|
|
891
|
+
| Cause.TimeoutException
|
|
873
892
|
| SdkError
|
|
874
893
|
| EntityAlreadyExistsError
|
|
875
894
|
| LimitExceededError
|
|
@@ -886,6 +905,7 @@ interface IAMService$ {
|
|
|
886
905
|
options?: HttpHandlerOptions,
|
|
887
906
|
): Effect.Effect<
|
|
888
907
|
CreateOpenIDConnectProviderCommandOutput,
|
|
908
|
+
| Cause.TimeoutException
|
|
889
909
|
| SdkError
|
|
890
910
|
| ConcurrentModificationError
|
|
891
911
|
| EntityAlreadyExistsError
|
|
@@ -903,6 +923,7 @@ interface IAMService$ {
|
|
|
903
923
|
options?: HttpHandlerOptions,
|
|
904
924
|
): Effect.Effect<
|
|
905
925
|
CreatePolicyCommandOutput,
|
|
926
|
+
| Cause.TimeoutException
|
|
906
927
|
| SdkError
|
|
907
928
|
| ConcurrentModificationError
|
|
908
929
|
| EntityAlreadyExistsError
|
|
@@ -920,6 +941,7 @@ interface IAMService$ {
|
|
|
920
941
|
options?: HttpHandlerOptions,
|
|
921
942
|
): Effect.Effect<
|
|
922
943
|
CreatePolicyVersionCommandOutput,
|
|
944
|
+
| Cause.TimeoutException
|
|
923
945
|
| SdkError
|
|
924
946
|
| InvalidInputError
|
|
925
947
|
| LimitExceededError
|
|
@@ -936,6 +958,7 @@ interface IAMService$ {
|
|
|
936
958
|
options?: HttpHandlerOptions,
|
|
937
959
|
): Effect.Effect<
|
|
938
960
|
CreateRoleCommandOutput,
|
|
961
|
+
| Cause.TimeoutException
|
|
939
962
|
| SdkError
|
|
940
963
|
| ConcurrentModificationError
|
|
941
964
|
| EntityAlreadyExistsError
|
|
@@ -953,6 +976,7 @@ interface IAMService$ {
|
|
|
953
976
|
options?: HttpHandlerOptions,
|
|
954
977
|
): Effect.Effect<
|
|
955
978
|
CreateSAMLProviderCommandOutput,
|
|
979
|
+
| Cause.TimeoutException
|
|
956
980
|
| SdkError
|
|
957
981
|
| ConcurrentModificationError
|
|
958
982
|
| EntityAlreadyExistsError
|
|
@@ -969,7 +993,7 @@ interface IAMService$ {
|
|
|
969
993
|
options?: HttpHandlerOptions,
|
|
970
994
|
): Effect.Effect<
|
|
971
995
|
CreateServiceLinkedRoleCommandOutput,
|
|
972
|
-
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
996
|
+
Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
973
997
|
>;
|
|
974
998
|
|
|
975
999
|
/**
|
|
@@ -980,7 +1004,7 @@ interface IAMService$ {
|
|
|
980
1004
|
options?: HttpHandlerOptions,
|
|
981
1005
|
): Effect.Effect<
|
|
982
1006
|
CreateServiceSpecificCredentialCommandOutput,
|
|
983
|
-
SdkError | LimitExceededError | NoSuchEntityError | ServiceNotSupportedError
|
|
1007
|
+
Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceNotSupportedError
|
|
984
1008
|
>;
|
|
985
1009
|
|
|
986
1010
|
/**
|
|
@@ -991,6 +1015,7 @@ interface IAMService$ {
|
|
|
991
1015
|
options?: HttpHandlerOptions,
|
|
992
1016
|
): Effect.Effect<
|
|
993
1017
|
CreateUserCommandOutput,
|
|
1018
|
+
| Cause.TimeoutException
|
|
994
1019
|
| SdkError
|
|
995
1020
|
| ConcurrentModificationError
|
|
996
1021
|
| EntityAlreadyExistsError
|
|
@@ -1008,6 +1033,7 @@ interface IAMService$ {
|
|
|
1008
1033
|
options?: HttpHandlerOptions,
|
|
1009
1034
|
): Effect.Effect<
|
|
1010
1035
|
CreateVirtualMFADeviceCommandOutput,
|
|
1036
|
+
| Cause.TimeoutException
|
|
1011
1037
|
| SdkError
|
|
1012
1038
|
| ConcurrentModificationError
|
|
1013
1039
|
| EntityAlreadyExistsError
|
|
@@ -1024,6 +1050,7 @@ interface IAMService$ {
|
|
|
1024
1050
|
options?: HttpHandlerOptions,
|
|
1025
1051
|
): Effect.Effect<
|
|
1026
1052
|
DeactivateMFADeviceCommandOutput,
|
|
1053
|
+
| Cause.TimeoutException
|
|
1027
1054
|
| SdkError
|
|
1028
1055
|
| ConcurrentModificationError
|
|
1029
1056
|
| EntityTemporarilyUnmodifiableError
|
|
@@ -1040,7 +1067,7 @@ interface IAMService$ {
|
|
|
1040
1067
|
options?: HttpHandlerOptions,
|
|
1041
1068
|
): Effect.Effect<
|
|
1042
1069
|
DeleteAccessKeyCommandOutput,
|
|
1043
|
-
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1070
|
+
Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1044
1071
|
>;
|
|
1045
1072
|
|
|
1046
1073
|
/**
|
|
@@ -1051,7 +1078,12 @@ interface IAMService$ {
|
|
|
1051
1078
|
options?: HttpHandlerOptions,
|
|
1052
1079
|
): Effect.Effect<
|
|
1053
1080
|
DeleteAccountAliasCommandOutput,
|
|
1054
|
-
|
|
1081
|
+
| Cause.TimeoutException
|
|
1082
|
+
| SdkError
|
|
1083
|
+
| ConcurrentModificationError
|
|
1084
|
+
| LimitExceededError
|
|
1085
|
+
| NoSuchEntityError
|
|
1086
|
+
| ServiceFailureError
|
|
1055
1087
|
>;
|
|
1056
1088
|
|
|
1057
1089
|
/**
|
|
@@ -1062,7 +1094,7 @@ interface IAMService$ {
|
|
|
1062
1094
|
options?: HttpHandlerOptions,
|
|
1063
1095
|
): Effect.Effect<
|
|
1064
1096
|
DeleteAccountPasswordPolicyCommandOutput,
|
|
1065
|
-
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1097
|
+
Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1066
1098
|
>;
|
|
1067
1099
|
|
|
1068
1100
|
/**
|
|
@@ -1073,7 +1105,12 @@ interface IAMService$ {
|
|
|
1073
1105
|
options?: HttpHandlerOptions,
|
|
1074
1106
|
): Effect.Effect<
|
|
1075
1107
|
DeleteGroupCommandOutput,
|
|
1076
|
-
|
|
1108
|
+
| Cause.TimeoutException
|
|
1109
|
+
| SdkError
|
|
1110
|
+
| DeleteConflictError
|
|
1111
|
+
| LimitExceededError
|
|
1112
|
+
| NoSuchEntityError
|
|
1113
|
+
| ServiceFailureError
|
|
1077
1114
|
>;
|
|
1078
1115
|
|
|
1079
1116
|
/**
|
|
@@ -1084,7 +1121,7 @@ interface IAMService$ {
|
|
|
1084
1121
|
options?: HttpHandlerOptions,
|
|
1085
1122
|
): Effect.Effect<
|
|
1086
1123
|
DeleteGroupPolicyCommandOutput,
|
|
1087
|
-
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1124
|
+
Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1088
1125
|
>;
|
|
1089
1126
|
|
|
1090
1127
|
/**
|
|
@@ -1095,7 +1132,12 @@ interface IAMService$ {
|
|
|
1095
1132
|
options?: HttpHandlerOptions,
|
|
1096
1133
|
): Effect.Effect<
|
|
1097
1134
|
DeleteInstanceProfileCommandOutput,
|
|
1098
|
-
|
|
1135
|
+
| Cause.TimeoutException
|
|
1136
|
+
| SdkError
|
|
1137
|
+
| DeleteConflictError
|
|
1138
|
+
| LimitExceededError
|
|
1139
|
+
| NoSuchEntityError
|
|
1140
|
+
| ServiceFailureError
|
|
1099
1141
|
>;
|
|
1100
1142
|
|
|
1101
1143
|
/**
|
|
@@ -1106,7 +1148,12 @@ interface IAMService$ {
|
|
|
1106
1148
|
options?: HttpHandlerOptions,
|
|
1107
1149
|
): Effect.Effect<
|
|
1108
1150
|
DeleteLoginProfileCommandOutput,
|
|
1109
|
-
|
|
1151
|
+
| Cause.TimeoutException
|
|
1152
|
+
| SdkError
|
|
1153
|
+
| EntityTemporarilyUnmodifiableError
|
|
1154
|
+
| LimitExceededError
|
|
1155
|
+
| NoSuchEntityError
|
|
1156
|
+
| ServiceFailureError
|
|
1110
1157
|
>;
|
|
1111
1158
|
|
|
1112
1159
|
/**
|
|
@@ -1117,7 +1164,7 @@ interface IAMService$ {
|
|
|
1117
1164
|
options?: HttpHandlerOptions,
|
|
1118
1165
|
): Effect.Effect<
|
|
1119
1166
|
DeleteOpenIDConnectProviderCommandOutput,
|
|
1120
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1167
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1121
1168
|
>;
|
|
1122
1169
|
|
|
1123
1170
|
/**
|
|
@@ -1128,7 +1175,13 @@ interface IAMService$ {
|
|
|
1128
1175
|
options?: HttpHandlerOptions,
|
|
1129
1176
|
): Effect.Effect<
|
|
1130
1177
|
DeletePolicyCommandOutput,
|
|
1131
|
-
|
|
1178
|
+
| Cause.TimeoutException
|
|
1179
|
+
| SdkError
|
|
1180
|
+
| DeleteConflictError
|
|
1181
|
+
| InvalidInputError
|
|
1182
|
+
| LimitExceededError
|
|
1183
|
+
| NoSuchEntityError
|
|
1184
|
+
| ServiceFailureError
|
|
1132
1185
|
>;
|
|
1133
1186
|
|
|
1134
1187
|
/**
|
|
@@ -1139,7 +1192,13 @@ interface IAMService$ {
|
|
|
1139
1192
|
options?: HttpHandlerOptions,
|
|
1140
1193
|
): Effect.Effect<
|
|
1141
1194
|
DeletePolicyVersionCommandOutput,
|
|
1142
|
-
|
|
1195
|
+
| Cause.TimeoutException
|
|
1196
|
+
| SdkError
|
|
1197
|
+
| DeleteConflictError
|
|
1198
|
+
| InvalidInputError
|
|
1199
|
+
| LimitExceededError
|
|
1200
|
+
| NoSuchEntityError
|
|
1201
|
+
| ServiceFailureError
|
|
1143
1202
|
>;
|
|
1144
1203
|
|
|
1145
1204
|
/**
|
|
@@ -1150,6 +1209,7 @@ interface IAMService$ {
|
|
|
1150
1209
|
options?: HttpHandlerOptions,
|
|
1151
1210
|
): Effect.Effect<
|
|
1152
1211
|
DeleteRoleCommandOutput,
|
|
1212
|
+
| Cause.TimeoutException
|
|
1153
1213
|
| SdkError
|
|
1154
1214
|
| ConcurrentModificationError
|
|
1155
1215
|
| DeleteConflictError
|
|
@@ -1167,7 +1227,7 @@ interface IAMService$ {
|
|
|
1167
1227
|
options?: HttpHandlerOptions,
|
|
1168
1228
|
): Effect.Effect<
|
|
1169
1229
|
DeleteRolePermissionsBoundaryCommandOutput,
|
|
1170
|
-
SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
1230
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
1171
1231
|
>;
|
|
1172
1232
|
|
|
1173
1233
|
/**
|
|
@@ -1178,7 +1238,12 @@ interface IAMService$ {
|
|
|
1178
1238
|
options?: HttpHandlerOptions,
|
|
1179
1239
|
): Effect.Effect<
|
|
1180
1240
|
DeleteRolePolicyCommandOutput,
|
|
1181
|
-
|
|
1241
|
+
| Cause.TimeoutException
|
|
1242
|
+
| SdkError
|
|
1243
|
+
| LimitExceededError
|
|
1244
|
+
| NoSuchEntityError
|
|
1245
|
+
| ServiceFailureError
|
|
1246
|
+
| UnmodifiableEntityError
|
|
1182
1247
|
>;
|
|
1183
1248
|
|
|
1184
1249
|
/**
|
|
@@ -1189,7 +1254,7 @@ interface IAMService$ {
|
|
|
1189
1254
|
options?: HttpHandlerOptions,
|
|
1190
1255
|
): Effect.Effect<
|
|
1191
1256
|
DeleteSAMLProviderCommandOutput,
|
|
1192
|
-
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1257
|
+
Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1193
1258
|
>;
|
|
1194
1259
|
|
|
1195
1260
|
/**
|
|
@@ -1200,7 +1265,7 @@ interface IAMService$ {
|
|
|
1200
1265
|
options?: HttpHandlerOptions,
|
|
1201
1266
|
): Effect.Effect<
|
|
1202
1267
|
DeleteSSHPublicKeyCommandOutput,
|
|
1203
|
-
SdkError | NoSuchEntityError
|
|
1268
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError
|
|
1204
1269
|
>;
|
|
1205
1270
|
|
|
1206
1271
|
/**
|
|
@@ -1211,7 +1276,12 @@ interface IAMService$ {
|
|
|
1211
1276
|
options?: HttpHandlerOptions,
|
|
1212
1277
|
): Effect.Effect<
|
|
1213
1278
|
DeleteServerCertificateCommandOutput,
|
|
1214
|
-
|
|
1279
|
+
| Cause.TimeoutException
|
|
1280
|
+
| SdkError
|
|
1281
|
+
| DeleteConflictError
|
|
1282
|
+
| LimitExceededError
|
|
1283
|
+
| NoSuchEntityError
|
|
1284
|
+
| ServiceFailureError
|
|
1215
1285
|
>;
|
|
1216
1286
|
|
|
1217
1287
|
/**
|
|
@@ -1222,7 +1292,7 @@ interface IAMService$ {
|
|
|
1222
1292
|
options?: HttpHandlerOptions,
|
|
1223
1293
|
): Effect.Effect<
|
|
1224
1294
|
DeleteServiceLinkedRoleCommandOutput,
|
|
1225
|
-
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1295
|
+
Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1226
1296
|
>;
|
|
1227
1297
|
|
|
1228
1298
|
/**
|
|
@@ -1233,7 +1303,7 @@ interface IAMService$ {
|
|
|
1233
1303
|
options?: HttpHandlerOptions,
|
|
1234
1304
|
): Effect.Effect<
|
|
1235
1305
|
DeleteServiceSpecificCredentialCommandOutput,
|
|
1236
|
-
SdkError | NoSuchEntityError
|
|
1306
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError
|
|
1237
1307
|
>;
|
|
1238
1308
|
|
|
1239
1309
|
/**
|
|
@@ -1244,7 +1314,12 @@ interface IAMService$ {
|
|
|
1244
1314
|
options?: HttpHandlerOptions,
|
|
1245
1315
|
): Effect.Effect<
|
|
1246
1316
|
DeleteSigningCertificateCommandOutput,
|
|
1247
|
-
|
|
1317
|
+
| Cause.TimeoutException
|
|
1318
|
+
| SdkError
|
|
1319
|
+
| ConcurrentModificationError
|
|
1320
|
+
| LimitExceededError
|
|
1321
|
+
| NoSuchEntityError
|
|
1322
|
+
| ServiceFailureError
|
|
1248
1323
|
>;
|
|
1249
1324
|
|
|
1250
1325
|
/**
|
|
@@ -1255,6 +1330,7 @@ interface IAMService$ {
|
|
|
1255
1330
|
options?: HttpHandlerOptions,
|
|
1256
1331
|
): Effect.Effect<
|
|
1257
1332
|
DeleteUserCommandOutput,
|
|
1333
|
+
| Cause.TimeoutException
|
|
1258
1334
|
| SdkError
|
|
1259
1335
|
| ConcurrentModificationError
|
|
1260
1336
|
| DeleteConflictError
|
|
@@ -1271,7 +1347,7 @@ interface IAMService$ {
|
|
|
1271
1347
|
options?: HttpHandlerOptions,
|
|
1272
1348
|
): Effect.Effect<
|
|
1273
1349
|
DeleteUserPermissionsBoundaryCommandOutput,
|
|
1274
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1350
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1275
1351
|
>;
|
|
1276
1352
|
|
|
1277
1353
|
/**
|
|
@@ -1282,7 +1358,7 @@ interface IAMService$ {
|
|
|
1282
1358
|
options?: HttpHandlerOptions,
|
|
1283
1359
|
): Effect.Effect<
|
|
1284
1360
|
DeleteUserPolicyCommandOutput,
|
|
1285
|
-
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1361
|
+
Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1286
1362
|
>;
|
|
1287
1363
|
|
|
1288
1364
|
/**
|
|
@@ -1293,6 +1369,7 @@ interface IAMService$ {
|
|
|
1293
1369
|
options?: HttpHandlerOptions,
|
|
1294
1370
|
): Effect.Effect<
|
|
1295
1371
|
DeleteVirtualMFADeviceCommandOutput,
|
|
1372
|
+
| Cause.TimeoutException
|
|
1296
1373
|
| SdkError
|
|
1297
1374
|
| ConcurrentModificationError
|
|
1298
1375
|
| DeleteConflictError
|
|
@@ -1309,7 +1386,7 @@ interface IAMService$ {
|
|
|
1309
1386
|
options?: HttpHandlerOptions,
|
|
1310
1387
|
): Effect.Effect<
|
|
1311
1388
|
DetachGroupPolicyCommandOutput,
|
|
1312
|
-
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1389
|
+
Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1313
1390
|
>;
|
|
1314
1391
|
|
|
1315
1392
|
/**
|
|
@@ -1320,6 +1397,7 @@ interface IAMService$ {
|
|
|
1320
1397
|
options?: HttpHandlerOptions,
|
|
1321
1398
|
): Effect.Effect<
|
|
1322
1399
|
DetachRolePolicyCommandOutput,
|
|
1400
|
+
| Cause.TimeoutException
|
|
1323
1401
|
| SdkError
|
|
1324
1402
|
| InvalidInputError
|
|
1325
1403
|
| LimitExceededError
|
|
@@ -1336,7 +1414,7 @@ interface IAMService$ {
|
|
|
1336
1414
|
options?: HttpHandlerOptions,
|
|
1337
1415
|
): Effect.Effect<
|
|
1338
1416
|
DetachUserPolicyCommandOutput,
|
|
1339
|
-
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1417
|
+
Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1340
1418
|
>;
|
|
1341
1419
|
|
|
1342
1420
|
/**
|
|
@@ -1347,6 +1425,7 @@ interface IAMService$ {
|
|
|
1347
1425
|
options?: HttpHandlerOptions,
|
|
1348
1426
|
): Effect.Effect<
|
|
1349
1427
|
DisableOrganizationsRootCredentialsManagementCommandOutput,
|
|
1428
|
+
| Cause.TimeoutException
|
|
1350
1429
|
| SdkError
|
|
1351
1430
|
| AccountNotManagementOrDelegatedAdministratorError
|
|
1352
1431
|
| OrganizationNotFoundError
|
|
@@ -1362,6 +1441,7 @@ interface IAMService$ {
|
|
|
1362
1441
|
options?: HttpHandlerOptions,
|
|
1363
1442
|
): Effect.Effect<
|
|
1364
1443
|
DisableOrganizationsRootSessionsCommandOutput,
|
|
1444
|
+
| Cause.TimeoutException
|
|
1365
1445
|
| SdkError
|
|
1366
1446
|
| AccountNotManagementOrDelegatedAdministratorError
|
|
1367
1447
|
| OrganizationNotFoundError
|
|
@@ -1377,6 +1457,7 @@ interface IAMService$ {
|
|
|
1377
1457
|
options?: HttpHandlerOptions,
|
|
1378
1458
|
): Effect.Effect<
|
|
1379
1459
|
EnableMFADeviceCommandOutput,
|
|
1460
|
+
| Cause.TimeoutException
|
|
1380
1461
|
| SdkError
|
|
1381
1462
|
| ConcurrentModificationError
|
|
1382
1463
|
| EntityAlreadyExistsError
|
|
@@ -1395,6 +1476,7 @@ interface IAMService$ {
|
|
|
1395
1476
|
options?: HttpHandlerOptions,
|
|
1396
1477
|
): Effect.Effect<
|
|
1397
1478
|
EnableOrganizationsRootCredentialsManagementCommandOutput,
|
|
1479
|
+
| Cause.TimeoutException
|
|
1398
1480
|
| SdkError
|
|
1399
1481
|
| AccountNotManagementOrDelegatedAdministratorError
|
|
1400
1482
|
| CallerIsNotManagementAccountError
|
|
@@ -1411,6 +1493,7 @@ interface IAMService$ {
|
|
|
1411
1493
|
options?: HttpHandlerOptions,
|
|
1412
1494
|
): Effect.Effect<
|
|
1413
1495
|
EnableOrganizationsRootSessionsCommandOutput,
|
|
1496
|
+
| Cause.TimeoutException
|
|
1414
1497
|
| SdkError
|
|
1415
1498
|
| AccountNotManagementOrDelegatedAdministratorError
|
|
1416
1499
|
| CallerIsNotManagementAccountError
|
|
@@ -1427,7 +1510,7 @@ interface IAMService$ {
|
|
|
1427
1510
|
options?: HttpHandlerOptions,
|
|
1428
1511
|
): Effect.Effect<
|
|
1429
1512
|
GenerateCredentialReportCommandOutput,
|
|
1430
|
-
SdkError | LimitExceededError | ServiceFailureError
|
|
1513
|
+
Cause.TimeoutException | SdkError | LimitExceededError | ServiceFailureError
|
|
1431
1514
|
>;
|
|
1432
1515
|
|
|
1433
1516
|
/**
|
|
@@ -1438,7 +1521,7 @@ interface IAMService$ {
|
|
|
1438
1521
|
options?: HttpHandlerOptions,
|
|
1439
1522
|
): Effect.Effect<
|
|
1440
1523
|
GenerateOrganizationsAccessReportCommandOutput,
|
|
1441
|
-
SdkError | ReportGenerationLimitExceededError
|
|
1524
|
+
Cause.TimeoutException | SdkError | ReportGenerationLimitExceededError
|
|
1442
1525
|
>;
|
|
1443
1526
|
|
|
1444
1527
|
/**
|
|
@@ -1449,7 +1532,7 @@ interface IAMService$ {
|
|
|
1449
1532
|
options?: HttpHandlerOptions,
|
|
1450
1533
|
): Effect.Effect<
|
|
1451
1534
|
GenerateServiceLastAccessedDetailsCommandOutput,
|
|
1452
|
-
SdkError | InvalidInputError | NoSuchEntityError
|
|
1535
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError
|
|
1453
1536
|
>;
|
|
1454
1537
|
|
|
1455
1538
|
/**
|
|
@@ -1460,7 +1543,7 @@ interface IAMService$ {
|
|
|
1460
1543
|
options?: HttpHandlerOptions,
|
|
1461
1544
|
): Effect.Effect<
|
|
1462
1545
|
GetAccessKeyLastUsedCommandOutput,
|
|
1463
|
-
SdkError
|
|
1546
|
+
Cause.TimeoutException | SdkError
|
|
1464
1547
|
>;
|
|
1465
1548
|
|
|
1466
1549
|
/**
|
|
@@ -1471,7 +1554,7 @@ interface IAMService$ {
|
|
|
1471
1554
|
options?: HttpHandlerOptions,
|
|
1472
1555
|
): Effect.Effect<
|
|
1473
1556
|
GetAccountAuthorizationDetailsCommandOutput,
|
|
1474
|
-
SdkError | ServiceFailureError
|
|
1557
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
1475
1558
|
>;
|
|
1476
1559
|
|
|
1477
1560
|
/**
|
|
@@ -1482,7 +1565,7 @@ interface IAMService$ {
|
|
|
1482
1565
|
options?: HttpHandlerOptions,
|
|
1483
1566
|
): Effect.Effect<
|
|
1484
1567
|
GetAccountPasswordPolicyCommandOutput,
|
|
1485
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1568
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1486
1569
|
>;
|
|
1487
1570
|
|
|
1488
1571
|
/**
|
|
@@ -1493,7 +1576,7 @@ interface IAMService$ {
|
|
|
1493
1576
|
options?: HttpHandlerOptions,
|
|
1494
1577
|
): Effect.Effect<
|
|
1495
1578
|
GetAccountSummaryCommandOutput,
|
|
1496
|
-
SdkError | ServiceFailureError
|
|
1579
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
1497
1580
|
>;
|
|
1498
1581
|
|
|
1499
1582
|
/**
|
|
@@ -1504,7 +1587,7 @@ interface IAMService$ {
|
|
|
1504
1587
|
options?: HttpHandlerOptions,
|
|
1505
1588
|
): Effect.Effect<
|
|
1506
1589
|
GetContextKeysForCustomPolicyCommandOutput,
|
|
1507
|
-
SdkError | InvalidInputError
|
|
1590
|
+
Cause.TimeoutException | SdkError | InvalidInputError
|
|
1508
1591
|
>;
|
|
1509
1592
|
|
|
1510
1593
|
/**
|
|
@@ -1515,7 +1598,7 @@ interface IAMService$ {
|
|
|
1515
1598
|
options?: HttpHandlerOptions,
|
|
1516
1599
|
): Effect.Effect<
|
|
1517
1600
|
GetContextKeysForPrincipalPolicyCommandOutput,
|
|
1518
|
-
SdkError | InvalidInputError | NoSuchEntityError
|
|
1601
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError
|
|
1519
1602
|
>;
|
|
1520
1603
|
|
|
1521
1604
|
/**
|
|
@@ -1526,6 +1609,7 @@ interface IAMService$ {
|
|
|
1526
1609
|
options?: HttpHandlerOptions,
|
|
1527
1610
|
): Effect.Effect<
|
|
1528
1611
|
GetCredentialReportCommandOutput,
|
|
1612
|
+
| Cause.TimeoutException
|
|
1529
1613
|
| SdkError
|
|
1530
1614
|
| CredentialReportExpiredError
|
|
1531
1615
|
| CredentialReportNotPresentError
|
|
@@ -1541,7 +1625,7 @@ interface IAMService$ {
|
|
|
1541
1625
|
options?: HttpHandlerOptions,
|
|
1542
1626
|
): Effect.Effect<
|
|
1543
1627
|
GetGroupCommandOutput,
|
|
1544
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1628
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1545
1629
|
>;
|
|
1546
1630
|
|
|
1547
1631
|
/**
|
|
@@ -1552,7 +1636,7 @@ interface IAMService$ {
|
|
|
1552
1636
|
options?: HttpHandlerOptions,
|
|
1553
1637
|
): Effect.Effect<
|
|
1554
1638
|
GetGroupPolicyCommandOutput,
|
|
1555
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1639
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1556
1640
|
>;
|
|
1557
1641
|
|
|
1558
1642
|
/**
|
|
@@ -1563,7 +1647,7 @@ interface IAMService$ {
|
|
|
1563
1647
|
options?: HttpHandlerOptions,
|
|
1564
1648
|
): Effect.Effect<
|
|
1565
1649
|
GetInstanceProfileCommandOutput,
|
|
1566
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1650
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1567
1651
|
>;
|
|
1568
1652
|
|
|
1569
1653
|
/**
|
|
@@ -1574,7 +1658,7 @@ interface IAMService$ {
|
|
|
1574
1658
|
options?: HttpHandlerOptions,
|
|
1575
1659
|
): Effect.Effect<
|
|
1576
1660
|
GetLoginProfileCommandOutput,
|
|
1577
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1661
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1578
1662
|
>;
|
|
1579
1663
|
|
|
1580
1664
|
/**
|
|
@@ -1585,7 +1669,7 @@ interface IAMService$ {
|
|
|
1585
1669
|
options?: HttpHandlerOptions,
|
|
1586
1670
|
): Effect.Effect<
|
|
1587
1671
|
GetMFADeviceCommandOutput,
|
|
1588
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1672
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1589
1673
|
>;
|
|
1590
1674
|
|
|
1591
1675
|
/**
|
|
@@ -1596,7 +1680,7 @@ interface IAMService$ {
|
|
|
1596
1680
|
options?: HttpHandlerOptions,
|
|
1597
1681
|
): Effect.Effect<
|
|
1598
1682
|
GetOpenIDConnectProviderCommandOutput,
|
|
1599
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1683
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1600
1684
|
>;
|
|
1601
1685
|
|
|
1602
1686
|
/**
|
|
@@ -1607,7 +1691,7 @@ interface IAMService$ {
|
|
|
1607
1691
|
options?: HttpHandlerOptions,
|
|
1608
1692
|
): Effect.Effect<
|
|
1609
1693
|
GetOrganizationsAccessReportCommandOutput,
|
|
1610
|
-
SdkError | NoSuchEntityError
|
|
1694
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError
|
|
1611
1695
|
>;
|
|
1612
1696
|
|
|
1613
1697
|
/**
|
|
@@ -1618,7 +1702,7 @@ interface IAMService$ {
|
|
|
1618
1702
|
options?: HttpHandlerOptions,
|
|
1619
1703
|
): Effect.Effect<
|
|
1620
1704
|
GetPolicyCommandOutput,
|
|
1621
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1705
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1622
1706
|
>;
|
|
1623
1707
|
|
|
1624
1708
|
/**
|
|
@@ -1629,7 +1713,7 @@ interface IAMService$ {
|
|
|
1629
1713
|
options?: HttpHandlerOptions,
|
|
1630
1714
|
): Effect.Effect<
|
|
1631
1715
|
GetPolicyVersionCommandOutput,
|
|
1632
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1716
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1633
1717
|
>;
|
|
1634
1718
|
|
|
1635
1719
|
/**
|
|
@@ -1640,7 +1724,7 @@ interface IAMService$ {
|
|
|
1640
1724
|
options?: HttpHandlerOptions,
|
|
1641
1725
|
): Effect.Effect<
|
|
1642
1726
|
GetRoleCommandOutput,
|
|
1643
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1727
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1644
1728
|
>;
|
|
1645
1729
|
|
|
1646
1730
|
/**
|
|
@@ -1651,7 +1735,7 @@ interface IAMService$ {
|
|
|
1651
1735
|
options?: HttpHandlerOptions,
|
|
1652
1736
|
): Effect.Effect<
|
|
1653
1737
|
GetRolePolicyCommandOutput,
|
|
1654
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1738
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1655
1739
|
>;
|
|
1656
1740
|
|
|
1657
1741
|
/**
|
|
@@ -1662,7 +1746,7 @@ interface IAMService$ {
|
|
|
1662
1746
|
options?: HttpHandlerOptions,
|
|
1663
1747
|
): Effect.Effect<
|
|
1664
1748
|
GetSAMLProviderCommandOutput,
|
|
1665
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1749
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1666
1750
|
>;
|
|
1667
1751
|
|
|
1668
1752
|
/**
|
|
@@ -1673,7 +1757,7 @@ interface IAMService$ {
|
|
|
1673
1757
|
options?: HttpHandlerOptions,
|
|
1674
1758
|
): Effect.Effect<
|
|
1675
1759
|
GetSSHPublicKeyCommandOutput,
|
|
1676
|
-
SdkError | NoSuchEntityError | UnrecognizedPublicKeyEncodingError
|
|
1760
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | UnrecognizedPublicKeyEncodingError
|
|
1677
1761
|
>;
|
|
1678
1762
|
|
|
1679
1763
|
/**
|
|
@@ -1684,7 +1768,7 @@ interface IAMService$ {
|
|
|
1684
1768
|
options?: HttpHandlerOptions,
|
|
1685
1769
|
): Effect.Effect<
|
|
1686
1770
|
GetServerCertificateCommandOutput,
|
|
1687
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1771
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1688
1772
|
>;
|
|
1689
1773
|
|
|
1690
1774
|
/**
|
|
@@ -1695,7 +1779,7 @@ interface IAMService$ {
|
|
|
1695
1779
|
options?: HttpHandlerOptions,
|
|
1696
1780
|
): Effect.Effect<
|
|
1697
1781
|
GetServiceLastAccessedDetailsCommandOutput,
|
|
1698
|
-
SdkError | InvalidInputError | NoSuchEntityError
|
|
1782
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError
|
|
1699
1783
|
>;
|
|
1700
1784
|
|
|
1701
1785
|
/**
|
|
@@ -1706,7 +1790,7 @@ interface IAMService$ {
|
|
|
1706
1790
|
options?: HttpHandlerOptions,
|
|
1707
1791
|
): Effect.Effect<
|
|
1708
1792
|
GetServiceLastAccessedDetailsWithEntitiesCommandOutput,
|
|
1709
|
-
SdkError | InvalidInputError | NoSuchEntityError
|
|
1793
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError
|
|
1710
1794
|
>;
|
|
1711
1795
|
|
|
1712
1796
|
/**
|
|
@@ -1717,7 +1801,7 @@ interface IAMService$ {
|
|
|
1717
1801
|
options?: HttpHandlerOptions,
|
|
1718
1802
|
): Effect.Effect<
|
|
1719
1803
|
GetServiceLinkedRoleDeletionStatusCommandOutput,
|
|
1720
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1804
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1721
1805
|
>;
|
|
1722
1806
|
|
|
1723
1807
|
/**
|
|
@@ -1728,7 +1812,7 @@ interface IAMService$ {
|
|
|
1728
1812
|
options?: HttpHandlerOptions,
|
|
1729
1813
|
): Effect.Effect<
|
|
1730
1814
|
GetUserCommandOutput,
|
|
1731
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1815
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1732
1816
|
>;
|
|
1733
1817
|
|
|
1734
1818
|
/**
|
|
@@ -1739,7 +1823,7 @@ interface IAMService$ {
|
|
|
1739
1823
|
options?: HttpHandlerOptions,
|
|
1740
1824
|
): Effect.Effect<
|
|
1741
1825
|
GetUserPolicyCommandOutput,
|
|
1742
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1826
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1743
1827
|
>;
|
|
1744
1828
|
|
|
1745
1829
|
/**
|
|
@@ -1750,7 +1834,7 @@ interface IAMService$ {
|
|
|
1750
1834
|
options?: HttpHandlerOptions,
|
|
1751
1835
|
): Effect.Effect<
|
|
1752
1836
|
ListAccessKeysCommandOutput,
|
|
1753
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1837
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1754
1838
|
>;
|
|
1755
1839
|
|
|
1756
1840
|
/**
|
|
@@ -1761,7 +1845,7 @@ interface IAMService$ {
|
|
|
1761
1845
|
options?: HttpHandlerOptions,
|
|
1762
1846
|
): Effect.Effect<
|
|
1763
1847
|
ListAccountAliasesCommandOutput,
|
|
1764
|
-
SdkError | ServiceFailureError
|
|
1848
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
1765
1849
|
>;
|
|
1766
1850
|
|
|
1767
1851
|
/**
|
|
@@ -1772,7 +1856,7 @@ interface IAMService$ {
|
|
|
1772
1856
|
options?: HttpHandlerOptions,
|
|
1773
1857
|
): Effect.Effect<
|
|
1774
1858
|
ListAttachedGroupPoliciesCommandOutput,
|
|
1775
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1859
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1776
1860
|
>;
|
|
1777
1861
|
|
|
1778
1862
|
/**
|
|
@@ -1783,7 +1867,7 @@ interface IAMService$ {
|
|
|
1783
1867
|
options?: HttpHandlerOptions,
|
|
1784
1868
|
): Effect.Effect<
|
|
1785
1869
|
ListAttachedRolePoliciesCommandOutput,
|
|
1786
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1870
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1787
1871
|
>;
|
|
1788
1872
|
|
|
1789
1873
|
/**
|
|
@@ -1794,7 +1878,7 @@ interface IAMService$ {
|
|
|
1794
1878
|
options?: HttpHandlerOptions,
|
|
1795
1879
|
): Effect.Effect<
|
|
1796
1880
|
ListAttachedUserPoliciesCommandOutput,
|
|
1797
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1881
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1798
1882
|
>;
|
|
1799
1883
|
|
|
1800
1884
|
/**
|
|
@@ -1805,7 +1889,7 @@ interface IAMService$ {
|
|
|
1805
1889
|
options?: HttpHandlerOptions,
|
|
1806
1890
|
): Effect.Effect<
|
|
1807
1891
|
ListEntitiesForPolicyCommandOutput,
|
|
1808
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1892
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1809
1893
|
>;
|
|
1810
1894
|
|
|
1811
1895
|
/**
|
|
@@ -1816,7 +1900,7 @@ interface IAMService$ {
|
|
|
1816
1900
|
options?: HttpHandlerOptions,
|
|
1817
1901
|
): Effect.Effect<
|
|
1818
1902
|
ListGroupPoliciesCommandOutput,
|
|
1819
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1903
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1820
1904
|
>;
|
|
1821
1905
|
|
|
1822
1906
|
/**
|
|
@@ -1827,7 +1911,7 @@ interface IAMService$ {
|
|
|
1827
1911
|
options?: HttpHandlerOptions,
|
|
1828
1912
|
): Effect.Effect<
|
|
1829
1913
|
ListGroupsCommandOutput,
|
|
1830
|
-
SdkError | ServiceFailureError
|
|
1914
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
1831
1915
|
>;
|
|
1832
1916
|
|
|
1833
1917
|
/**
|
|
@@ -1838,7 +1922,7 @@ interface IAMService$ {
|
|
|
1838
1922
|
options?: HttpHandlerOptions,
|
|
1839
1923
|
): Effect.Effect<
|
|
1840
1924
|
ListGroupsForUserCommandOutput,
|
|
1841
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1925
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1842
1926
|
>;
|
|
1843
1927
|
|
|
1844
1928
|
/**
|
|
@@ -1849,7 +1933,7 @@ interface IAMService$ {
|
|
|
1849
1933
|
options?: HttpHandlerOptions,
|
|
1850
1934
|
): Effect.Effect<
|
|
1851
1935
|
ListInstanceProfileTagsCommandOutput,
|
|
1852
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1936
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1853
1937
|
>;
|
|
1854
1938
|
|
|
1855
1939
|
/**
|
|
@@ -1860,7 +1944,7 @@ interface IAMService$ {
|
|
|
1860
1944
|
options?: HttpHandlerOptions,
|
|
1861
1945
|
): Effect.Effect<
|
|
1862
1946
|
ListInstanceProfilesCommandOutput,
|
|
1863
|
-
SdkError | ServiceFailureError
|
|
1947
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
1864
1948
|
>;
|
|
1865
1949
|
|
|
1866
1950
|
/**
|
|
@@ -1871,7 +1955,7 @@ interface IAMService$ {
|
|
|
1871
1955
|
options?: HttpHandlerOptions,
|
|
1872
1956
|
): Effect.Effect<
|
|
1873
1957
|
ListInstanceProfilesForRoleCommandOutput,
|
|
1874
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1958
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1875
1959
|
>;
|
|
1876
1960
|
|
|
1877
1961
|
/**
|
|
@@ -1882,7 +1966,7 @@ interface IAMService$ {
|
|
|
1882
1966
|
options?: HttpHandlerOptions,
|
|
1883
1967
|
): Effect.Effect<
|
|
1884
1968
|
ListMFADeviceTagsCommandOutput,
|
|
1885
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1969
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1886
1970
|
>;
|
|
1887
1971
|
|
|
1888
1972
|
/**
|
|
@@ -1893,7 +1977,7 @@ interface IAMService$ {
|
|
|
1893
1977
|
options?: HttpHandlerOptions,
|
|
1894
1978
|
): Effect.Effect<
|
|
1895
1979
|
ListMFADevicesCommandOutput,
|
|
1896
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1980
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1897
1981
|
>;
|
|
1898
1982
|
|
|
1899
1983
|
/**
|
|
@@ -1904,7 +1988,7 @@ interface IAMService$ {
|
|
|
1904
1988
|
options?: HttpHandlerOptions,
|
|
1905
1989
|
): Effect.Effect<
|
|
1906
1990
|
ListOpenIDConnectProviderTagsCommandOutput,
|
|
1907
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1991
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1908
1992
|
>;
|
|
1909
1993
|
|
|
1910
1994
|
/**
|
|
@@ -1915,7 +1999,7 @@ interface IAMService$ {
|
|
|
1915
1999
|
options?: HttpHandlerOptions,
|
|
1916
2000
|
): Effect.Effect<
|
|
1917
2001
|
ListOpenIDConnectProvidersCommandOutput,
|
|
1918
|
-
SdkError | ServiceFailureError
|
|
2002
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
1919
2003
|
>;
|
|
1920
2004
|
|
|
1921
2005
|
/**
|
|
@@ -1926,6 +2010,7 @@ interface IAMService$ {
|
|
|
1926
2010
|
options?: HttpHandlerOptions,
|
|
1927
2011
|
): Effect.Effect<
|
|
1928
2012
|
ListOrganizationsFeaturesCommandOutput,
|
|
2013
|
+
| Cause.TimeoutException
|
|
1929
2014
|
| SdkError
|
|
1930
2015
|
| AccountNotManagementOrDelegatedAdministratorError
|
|
1931
2016
|
| OrganizationNotFoundError
|
|
@@ -1941,7 +2026,7 @@ interface IAMService$ {
|
|
|
1941
2026
|
options?: HttpHandlerOptions,
|
|
1942
2027
|
): Effect.Effect<
|
|
1943
2028
|
ListPoliciesCommandOutput,
|
|
1944
|
-
SdkError | ServiceFailureError
|
|
2029
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
1945
2030
|
>;
|
|
1946
2031
|
|
|
1947
2032
|
/**
|
|
@@ -1952,7 +2037,7 @@ interface IAMService$ {
|
|
|
1952
2037
|
options?: HttpHandlerOptions,
|
|
1953
2038
|
): Effect.Effect<
|
|
1954
2039
|
ListPoliciesGrantingServiceAccessCommandOutput,
|
|
1955
|
-
SdkError | InvalidInputError | NoSuchEntityError
|
|
2040
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError
|
|
1956
2041
|
>;
|
|
1957
2042
|
|
|
1958
2043
|
/**
|
|
@@ -1963,7 +2048,7 @@ interface IAMService$ {
|
|
|
1963
2048
|
options?: HttpHandlerOptions,
|
|
1964
2049
|
): Effect.Effect<
|
|
1965
2050
|
ListPolicyTagsCommandOutput,
|
|
1966
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2051
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1967
2052
|
>;
|
|
1968
2053
|
|
|
1969
2054
|
/**
|
|
@@ -1974,7 +2059,7 @@ interface IAMService$ {
|
|
|
1974
2059
|
options?: HttpHandlerOptions,
|
|
1975
2060
|
): Effect.Effect<
|
|
1976
2061
|
ListPolicyVersionsCommandOutput,
|
|
1977
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2062
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1978
2063
|
>;
|
|
1979
2064
|
|
|
1980
2065
|
/**
|
|
@@ -1985,7 +2070,7 @@ interface IAMService$ {
|
|
|
1985
2070
|
options?: HttpHandlerOptions,
|
|
1986
2071
|
): Effect.Effect<
|
|
1987
2072
|
ListRolePoliciesCommandOutput,
|
|
1988
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
2073
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1989
2074
|
>;
|
|
1990
2075
|
|
|
1991
2076
|
/**
|
|
@@ -1996,7 +2081,7 @@ interface IAMService$ {
|
|
|
1996
2081
|
options?: HttpHandlerOptions,
|
|
1997
2082
|
): Effect.Effect<
|
|
1998
2083
|
ListRoleTagsCommandOutput,
|
|
1999
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
2084
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2000
2085
|
>;
|
|
2001
2086
|
|
|
2002
2087
|
/**
|
|
@@ -2007,7 +2092,7 @@ interface IAMService$ {
|
|
|
2007
2092
|
options?: HttpHandlerOptions,
|
|
2008
2093
|
): Effect.Effect<
|
|
2009
2094
|
ListRolesCommandOutput,
|
|
2010
|
-
SdkError | ServiceFailureError
|
|
2095
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
2011
2096
|
>;
|
|
2012
2097
|
|
|
2013
2098
|
/**
|
|
@@ -2018,7 +2103,7 @@ interface IAMService$ {
|
|
|
2018
2103
|
options?: HttpHandlerOptions,
|
|
2019
2104
|
): Effect.Effect<
|
|
2020
2105
|
ListSAMLProviderTagsCommandOutput,
|
|
2021
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2106
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2022
2107
|
>;
|
|
2023
2108
|
|
|
2024
2109
|
/**
|
|
@@ -2029,7 +2114,7 @@ interface IAMService$ {
|
|
|
2029
2114
|
options?: HttpHandlerOptions,
|
|
2030
2115
|
): Effect.Effect<
|
|
2031
2116
|
ListSAMLProvidersCommandOutput,
|
|
2032
|
-
SdkError | ServiceFailureError
|
|
2117
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
2033
2118
|
>;
|
|
2034
2119
|
|
|
2035
2120
|
/**
|
|
@@ -2040,7 +2125,7 @@ interface IAMService$ {
|
|
|
2040
2125
|
options?: HttpHandlerOptions,
|
|
2041
2126
|
): Effect.Effect<
|
|
2042
2127
|
ListSSHPublicKeysCommandOutput,
|
|
2043
|
-
SdkError | NoSuchEntityError
|
|
2128
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError
|
|
2044
2129
|
>;
|
|
2045
2130
|
|
|
2046
2131
|
/**
|
|
@@ -2051,7 +2136,7 @@ interface IAMService$ {
|
|
|
2051
2136
|
options?: HttpHandlerOptions,
|
|
2052
2137
|
): Effect.Effect<
|
|
2053
2138
|
ListServerCertificateTagsCommandOutput,
|
|
2054
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
2139
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2055
2140
|
>;
|
|
2056
2141
|
|
|
2057
2142
|
/**
|
|
@@ -2062,7 +2147,7 @@ interface IAMService$ {
|
|
|
2062
2147
|
options?: HttpHandlerOptions,
|
|
2063
2148
|
): Effect.Effect<
|
|
2064
2149
|
ListServerCertificatesCommandOutput,
|
|
2065
|
-
SdkError | ServiceFailureError
|
|
2150
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
2066
2151
|
>;
|
|
2067
2152
|
|
|
2068
2153
|
/**
|
|
@@ -2073,7 +2158,7 @@ interface IAMService$ {
|
|
|
2073
2158
|
options?: HttpHandlerOptions,
|
|
2074
2159
|
): Effect.Effect<
|
|
2075
2160
|
ListServiceSpecificCredentialsCommandOutput,
|
|
2076
|
-
SdkError | NoSuchEntityError | ServiceNotSupportedError
|
|
2161
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceNotSupportedError
|
|
2077
2162
|
>;
|
|
2078
2163
|
|
|
2079
2164
|
/**
|
|
@@ -2084,7 +2169,7 @@ interface IAMService$ {
|
|
|
2084
2169
|
options?: HttpHandlerOptions,
|
|
2085
2170
|
): Effect.Effect<
|
|
2086
2171
|
ListSigningCertificatesCommandOutput,
|
|
2087
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
2172
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2088
2173
|
>;
|
|
2089
2174
|
|
|
2090
2175
|
/**
|
|
@@ -2095,7 +2180,7 @@ interface IAMService$ {
|
|
|
2095
2180
|
options?: HttpHandlerOptions,
|
|
2096
2181
|
): Effect.Effect<
|
|
2097
2182
|
ListUserPoliciesCommandOutput,
|
|
2098
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
2183
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2099
2184
|
>;
|
|
2100
2185
|
|
|
2101
2186
|
/**
|
|
@@ -2106,7 +2191,7 @@ interface IAMService$ {
|
|
|
2106
2191
|
options?: HttpHandlerOptions,
|
|
2107
2192
|
): Effect.Effect<
|
|
2108
2193
|
ListUserTagsCommandOutput,
|
|
2109
|
-
SdkError | NoSuchEntityError | ServiceFailureError
|
|
2194
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2110
2195
|
>;
|
|
2111
2196
|
|
|
2112
2197
|
/**
|
|
@@ -2117,7 +2202,7 @@ interface IAMService$ {
|
|
|
2117
2202
|
options?: HttpHandlerOptions,
|
|
2118
2203
|
): Effect.Effect<
|
|
2119
2204
|
ListUsersCommandOutput,
|
|
2120
|
-
SdkError | ServiceFailureError
|
|
2205
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
2121
2206
|
>;
|
|
2122
2207
|
|
|
2123
2208
|
/**
|
|
@@ -2128,7 +2213,7 @@ interface IAMService$ {
|
|
|
2128
2213
|
options?: HttpHandlerOptions,
|
|
2129
2214
|
): Effect.Effect<
|
|
2130
2215
|
ListVirtualMFADevicesCommandOutput,
|
|
2131
|
-
SdkError
|
|
2216
|
+
Cause.TimeoutException | SdkError
|
|
2132
2217
|
>;
|
|
2133
2218
|
|
|
2134
2219
|
/**
|
|
@@ -2139,7 +2224,12 @@ interface IAMService$ {
|
|
|
2139
2224
|
options?: HttpHandlerOptions,
|
|
2140
2225
|
): Effect.Effect<
|
|
2141
2226
|
PutGroupPolicyCommandOutput,
|
|
2142
|
-
|
|
2227
|
+
| Cause.TimeoutException
|
|
2228
|
+
| SdkError
|
|
2229
|
+
| LimitExceededError
|
|
2230
|
+
| MalformedPolicyDocumentError
|
|
2231
|
+
| NoSuchEntityError
|
|
2232
|
+
| ServiceFailureError
|
|
2143
2233
|
>;
|
|
2144
2234
|
|
|
2145
2235
|
/**
|
|
@@ -2150,6 +2240,7 @@ interface IAMService$ {
|
|
|
2150
2240
|
options?: HttpHandlerOptions,
|
|
2151
2241
|
): Effect.Effect<
|
|
2152
2242
|
PutRolePermissionsBoundaryCommandOutput,
|
|
2243
|
+
| Cause.TimeoutException
|
|
2153
2244
|
| SdkError
|
|
2154
2245
|
| InvalidInputError
|
|
2155
2246
|
| NoSuchEntityError
|
|
@@ -2166,6 +2257,7 @@ interface IAMService$ {
|
|
|
2166
2257
|
options?: HttpHandlerOptions,
|
|
2167
2258
|
): Effect.Effect<
|
|
2168
2259
|
PutRolePolicyCommandOutput,
|
|
2260
|
+
| Cause.TimeoutException
|
|
2169
2261
|
| SdkError
|
|
2170
2262
|
| LimitExceededError
|
|
2171
2263
|
| MalformedPolicyDocumentError
|
|
@@ -2182,7 +2274,12 @@ interface IAMService$ {
|
|
|
2182
2274
|
options?: HttpHandlerOptions,
|
|
2183
2275
|
): Effect.Effect<
|
|
2184
2276
|
PutUserPermissionsBoundaryCommandOutput,
|
|
2185
|
-
|
|
2277
|
+
| Cause.TimeoutException
|
|
2278
|
+
| SdkError
|
|
2279
|
+
| InvalidInputError
|
|
2280
|
+
| NoSuchEntityError
|
|
2281
|
+
| PolicyNotAttachableError
|
|
2282
|
+
| ServiceFailureError
|
|
2186
2283
|
>;
|
|
2187
2284
|
|
|
2188
2285
|
/**
|
|
@@ -2193,7 +2290,12 @@ interface IAMService$ {
|
|
|
2193
2290
|
options?: HttpHandlerOptions,
|
|
2194
2291
|
): Effect.Effect<
|
|
2195
2292
|
PutUserPolicyCommandOutput,
|
|
2196
|
-
|
|
2293
|
+
| Cause.TimeoutException
|
|
2294
|
+
| SdkError
|
|
2295
|
+
| LimitExceededError
|
|
2296
|
+
| MalformedPolicyDocumentError
|
|
2297
|
+
| NoSuchEntityError
|
|
2298
|
+
| ServiceFailureError
|
|
2197
2299
|
>;
|
|
2198
2300
|
|
|
2199
2301
|
/**
|
|
@@ -2204,7 +2306,7 @@ interface IAMService$ {
|
|
|
2204
2306
|
options?: HttpHandlerOptions,
|
|
2205
2307
|
): Effect.Effect<
|
|
2206
2308
|
RemoveClientIDFromOpenIDConnectProviderCommandOutput,
|
|
2207
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2309
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2208
2310
|
>;
|
|
2209
2311
|
|
|
2210
2312
|
/**
|
|
@@ -2215,7 +2317,12 @@ interface IAMService$ {
|
|
|
2215
2317
|
options?: HttpHandlerOptions,
|
|
2216
2318
|
): Effect.Effect<
|
|
2217
2319
|
RemoveRoleFromInstanceProfileCommandOutput,
|
|
2218
|
-
|
|
2320
|
+
| Cause.TimeoutException
|
|
2321
|
+
| SdkError
|
|
2322
|
+
| LimitExceededError
|
|
2323
|
+
| NoSuchEntityError
|
|
2324
|
+
| ServiceFailureError
|
|
2325
|
+
| UnmodifiableEntityError
|
|
2219
2326
|
>;
|
|
2220
2327
|
|
|
2221
2328
|
/**
|
|
@@ -2226,7 +2333,7 @@ interface IAMService$ {
|
|
|
2226
2333
|
options?: HttpHandlerOptions,
|
|
2227
2334
|
): Effect.Effect<
|
|
2228
2335
|
RemoveUserFromGroupCommandOutput,
|
|
2229
|
-
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2336
|
+
Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2230
2337
|
>;
|
|
2231
2338
|
|
|
2232
2339
|
/**
|
|
@@ -2237,7 +2344,7 @@ interface IAMService$ {
|
|
|
2237
2344
|
options?: HttpHandlerOptions,
|
|
2238
2345
|
): Effect.Effect<
|
|
2239
2346
|
ResetServiceSpecificCredentialCommandOutput,
|
|
2240
|
-
SdkError | NoSuchEntityError
|
|
2347
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError
|
|
2241
2348
|
>;
|
|
2242
2349
|
|
|
2243
2350
|
/**
|
|
@@ -2248,6 +2355,7 @@ interface IAMService$ {
|
|
|
2248
2355
|
options?: HttpHandlerOptions,
|
|
2249
2356
|
): Effect.Effect<
|
|
2250
2357
|
ResyncMFADeviceCommandOutput,
|
|
2358
|
+
| Cause.TimeoutException
|
|
2251
2359
|
| SdkError
|
|
2252
2360
|
| ConcurrentModificationError
|
|
2253
2361
|
| InvalidAuthenticationCodeError
|
|
@@ -2264,7 +2372,7 @@ interface IAMService$ {
|
|
|
2264
2372
|
options?: HttpHandlerOptions,
|
|
2265
2373
|
): Effect.Effect<
|
|
2266
2374
|
SetDefaultPolicyVersionCommandOutput,
|
|
2267
|
-
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2375
|
+
Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2268
2376
|
>;
|
|
2269
2377
|
|
|
2270
2378
|
/**
|
|
@@ -2275,7 +2383,7 @@ interface IAMService$ {
|
|
|
2275
2383
|
options?: HttpHandlerOptions,
|
|
2276
2384
|
): Effect.Effect<
|
|
2277
2385
|
SetSecurityTokenServicePreferencesCommandOutput,
|
|
2278
|
-
SdkError | ServiceFailureError
|
|
2386
|
+
Cause.TimeoutException | SdkError | ServiceFailureError
|
|
2279
2387
|
>;
|
|
2280
2388
|
|
|
2281
2389
|
/**
|
|
@@ -2286,7 +2394,7 @@ interface IAMService$ {
|
|
|
2286
2394
|
options?: HttpHandlerOptions,
|
|
2287
2395
|
): Effect.Effect<
|
|
2288
2396
|
SimulateCustomPolicyCommandOutput,
|
|
2289
|
-
SdkError | InvalidInputError | PolicyEvaluationError
|
|
2397
|
+
Cause.TimeoutException | SdkError | InvalidInputError | PolicyEvaluationError
|
|
2290
2398
|
>;
|
|
2291
2399
|
|
|
2292
2400
|
/**
|
|
@@ -2297,7 +2405,7 @@ interface IAMService$ {
|
|
|
2297
2405
|
options?: HttpHandlerOptions,
|
|
2298
2406
|
): Effect.Effect<
|
|
2299
2407
|
SimulatePrincipalPolicyCommandOutput,
|
|
2300
|
-
SdkError | InvalidInputError | NoSuchEntityError | PolicyEvaluationError
|
|
2408
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | PolicyEvaluationError
|
|
2301
2409
|
>;
|
|
2302
2410
|
|
|
2303
2411
|
/**
|
|
@@ -2308,6 +2416,7 @@ interface IAMService$ {
|
|
|
2308
2416
|
options?: HttpHandlerOptions,
|
|
2309
2417
|
): Effect.Effect<
|
|
2310
2418
|
TagInstanceProfileCommandOutput,
|
|
2419
|
+
| Cause.TimeoutException
|
|
2311
2420
|
| SdkError
|
|
2312
2421
|
| ConcurrentModificationError
|
|
2313
2422
|
| InvalidInputError
|
|
@@ -2324,6 +2433,7 @@ interface IAMService$ {
|
|
|
2324
2433
|
options?: HttpHandlerOptions,
|
|
2325
2434
|
): Effect.Effect<
|
|
2326
2435
|
TagMFADeviceCommandOutput,
|
|
2436
|
+
| Cause.TimeoutException
|
|
2327
2437
|
| SdkError
|
|
2328
2438
|
| ConcurrentModificationError
|
|
2329
2439
|
| InvalidInputError
|
|
@@ -2340,6 +2450,7 @@ interface IAMService$ {
|
|
|
2340
2450
|
options?: HttpHandlerOptions,
|
|
2341
2451
|
): Effect.Effect<
|
|
2342
2452
|
TagOpenIDConnectProviderCommandOutput,
|
|
2453
|
+
| Cause.TimeoutException
|
|
2343
2454
|
| SdkError
|
|
2344
2455
|
| ConcurrentModificationError
|
|
2345
2456
|
| InvalidInputError
|
|
@@ -2356,6 +2467,7 @@ interface IAMService$ {
|
|
|
2356
2467
|
options?: HttpHandlerOptions,
|
|
2357
2468
|
): Effect.Effect<
|
|
2358
2469
|
TagPolicyCommandOutput,
|
|
2470
|
+
| Cause.TimeoutException
|
|
2359
2471
|
| SdkError
|
|
2360
2472
|
| ConcurrentModificationError
|
|
2361
2473
|
| InvalidInputError
|
|
@@ -2372,6 +2484,7 @@ interface IAMService$ {
|
|
|
2372
2484
|
options?: HttpHandlerOptions,
|
|
2373
2485
|
): Effect.Effect<
|
|
2374
2486
|
TagRoleCommandOutput,
|
|
2487
|
+
| Cause.TimeoutException
|
|
2375
2488
|
| SdkError
|
|
2376
2489
|
| ConcurrentModificationError
|
|
2377
2490
|
| InvalidInputError
|
|
@@ -2388,6 +2501,7 @@ interface IAMService$ {
|
|
|
2388
2501
|
options?: HttpHandlerOptions,
|
|
2389
2502
|
): Effect.Effect<
|
|
2390
2503
|
TagSAMLProviderCommandOutput,
|
|
2504
|
+
| Cause.TimeoutException
|
|
2391
2505
|
| SdkError
|
|
2392
2506
|
| ConcurrentModificationError
|
|
2393
2507
|
| InvalidInputError
|
|
@@ -2404,6 +2518,7 @@ interface IAMService$ {
|
|
|
2404
2518
|
options?: HttpHandlerOptions,
|
|
2405
2519
|
): Effect.Effect<
|
|
2406
2520
|
TagServerCertificateCommandOutput,
|
|
2521
|
+
| Cause.TimeoutException
|
|
2407
2522
|
| SdkError
|
|
2408
2523
|
| ConcurrentModificationError
|
|
2409
2524
|
| InvalidInputError
|
|
@@ -2420,6 +2535,7 @@ interface IAMService$ {
|
|
|
2420
2535
|
options?: HttpHandlerOptions,
|
|
2421
2536
|
): Effect.Effect<
|
|
2422
2537
|
TagUserCommandOutput,
|
|
2538
|
+
| Cause.TimeoutException
|
|
2423
2539
|
| SdkError
|
|
2424
2540
|
| ConcurrentModificationError
|
|
2425
2541
|
| InvalidInputError
|
|
@@ -2436,7 +2552,12 @@ interface IAMService$ {
|
|
|
2436
2552
|
options?: HttpHandlerOptions,
|
|
2437
2553
|
): Effect.Effect<
|
|
2438
2554
|
UntagInstanceProfileCommandOutput,
|
|
2439
|
-
|
|
2555
|
+
| Cause.TimeoutException
|
|
2556
|
+
| SdkError
|
|
2557
|
+
| ConcurrentModificationError
|
|
2558
|
+
| InvalidInputError
|
|
2559
|
+
| NoSuchEntityError
|
|
2560
|
+
| ServiceFailureError
|
|
2440
2561
|
>;
|
|
2441
2562
|
|
|
2442
2563
|
/**
|
|
@@ -2447,7 +2568,12 @@ interface IAMService$ {
|
|
|
2447
2568
|
options?: HttpHandlerOptions,
|
|
2448
2569
|
): Effect.Effect<
|
|
2449
2570
|
UntagMFADeviceCommandOutput,
|
|
2450
|
-
|
|
2571
|
+
| Cause.TimeoutException
|
|
2572
|
+
| SdkError
|
|
2573
|
+
| ConcurrentModificationError
|
|
2574
|
+
| InvalidInputError
|
|
2575
|
+
| NoSuchEntityError
|
|
2576
|
+
| ServiceFailureError
|
|
2451
2577
|
>;
|
|
2452
2578
|
|
|
2453
2579
|
/**
|
|
@@ -2458,7 +2584,12 @@ interface IAMService$ {
|
|
|
2458
2584
|
options?: HttpHandlerOptions,
|
|
2459
2585
|
): Effect.Effect<
|
|
2460
2586
|
UntagOpenIDConnectProviderCommandOutput,
|
|
2461
|
-
|
|
2587
|
+
| Cause.TimeoutException
|
|
2588
|
+
| SdkError
|
|
2589
|
+
| ConcurrentModificationError
|
|
2590
|
+
| InvalidInputError
|
|
2591
|
+
| NoSuchEntityError
|
|
2592
|
+
| ServiceFailureError
|
|
2462
2593
|
>;
|
|
2463
2594
|
|
|
2464
2595
|
/**
|
|
@@ -2469,7 +2600,12 @@ interface IAMService$ {
|
|
|
2469
2600
|
options?: HttpHandlerOptions,
|
|
2470
2601
|
): Effect.Effect<
|
|
2471
2602
|
UntagPolicyCommandOutput,
|
|
2472
|
-
|
|
2603
|
+
| Cause.TimeoutException
|
|
2604
|
+
| SdkError
|
|
2605
|
+
| ConcurrentModificationError
|
|
2606
|
+
| InvalidInputError
|
|
2607
|
+
| NoSuchEntityError
|
|
2608
|
+
| ServiceFailureError
|
|
2473
2609
|
>;
|
|
2474
2610
|
|
|
2475
2611
|
/**
|
|
@@ -2480,7 +2616,7 @@ interface IAMService$ {
|
|
|
2480
2616
|
options?: HttpHandlerOptions,
|
|
2481
2617
|
): Effect.Effect<
|
|
2482
2618
|
UntagRoleCommandOutput,
|
|
2483
|
-
SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
|
|
2619
|
+
Cause.TimeoutException | SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
|
|
2484
2620
|
>;
|
|
2485
2621
|
|
|
2486
2622
|
/**
|
|
@@ -2491,7 +2627,12 @@ interface IAMService$ {
|
|
|
2491
2627
|
options?: HttpHandlerOptions,
|
|
2492
2628
|
): Effect.Effect<
|
|
2493
2629
|
UntagSAMLProviderCommandOutput,
|
|
2494
|
-
|
|
2630
|
+
| Cause.TimeoutException
|
|
2631
|
+
| SdkError
|
|
2632
|
+
| ConcurrentModificationError
|
|
2633
|
+
| InvalidInputError
|
|
2634
|
+
| NoSuchEntityError
|
|
2635
|
+
| ServiceFailureError
|
|
2495
2636
|
>;
|
|
2496
2637
|
|
|
2497
2638
|
/**
|
|
@@ -2502,7 +2643,12 @@ interface IAMService$ {
|
|
|
2502
2643
|
options?: HttpHandlerOptions,
|
|
2503
2644
|
): Effect.Effect<
|
|
2504
2645
|
UntagServerCertificateCommandOutput,
|
|
2505
|
-
|
|
2646
|
+
| Cause.TimeoutException
|
|
2647
|
+
| SdkError
|
|
2648
|
+
| ConcurrentModificationError
|
|
2649
|
+
| InvalidInputError
|
|
2650
|
+
| NoSuchEntityError
|
|
2651
|
+
| ServiceFailureError
|
|
2506
2652
|
>;
|
|
2507
2653
|
|
|
2508
2654
|
/**
|
|
@@ -2513,7 +2659,7 @@ interface IAMService$ {
|
|
|
2513
2659
|
options?: HttpHandlerOptions,
|
|
2514
2660
|
): Effect.Effect<
|
|
2515
2661
|
UntagUserCommandOutput,
|
|
2516
|
-
SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
|
|
2662
|
+
Cause.TimeoutException | SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
|
|
2517
2663
|
>;
|
|
2518
2664
|
|
|
2519
2665
|
/**
|
|
@@ -2524,7 +2670,7 @@ interface IAMService$ {
|
|
|
2524
2670
|
options?: HttpHandlerOptions,
|
|
2525
2671
|
): Effect.Effect<
|
|
2526
2672
|
UpdateAccessKeyCommandOutput,
|
|
2527
|
-
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2673
|
+
Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2528
2674
|
>;
|
|
2529
2675
|
|
|
2530
2676
|
/**
|
|
@@ -2535,7 +2681,12 @@ interface IAMService$ {
|
|
|
2535
2681
|
options?: HttpHandlerOptions,
|
|
2536
2682
|
): Effect.Effect<
|
|
2537
2683
|
UpdateAccountPasswordPolicyCommandOutput,
|
|
2538
|
-
|
|
2684
|
+
| Cause.TimeoutException
|
|
2685
|
+
| SdkError
|
|
2686
|
+
| LimitExceededError
|
|
2687
|
+
| MalformedPolicyDocumentError
|
|
2688
|
+
| NoSuchEntityError
|
|
2689
|
+
| ServiceFailureError
|
|
2539
2690
|
>;
|
|
2540
2691
|
|
|
2541
2692
|
/**
|
|
@@ -2546,6 +2697,7 @@ interface IAMService$ {
|
|
|
2546
2697
|
options?: HttpHandlerOptions,
|
|
2547
2698
|
): Effect.Effect<
|
|
2548
2699
|
UpdateAssumeRolePolicyCommandOutput,
|
|
2700
|
+
| Cause.TimeoutException
|
|
2549
2701
|
| SdkError
|
|
2550
2702
|
| LimitExceededError
|
|
2551
2703
|
| MalformedPolicyDocumentError
|
|
@@ -2562,7 +2714,12 @@ interface IAMService$ {
|
|
|
2562
2714
|
options?: HttpHandlerOptions,
|
|
2563
2715
|
): Effect.Effect<
|
|
2564
2716
|
UpdateGroupCommandOutput,
|
|
2565
|
-
|
|
2717
|
+
| Cause.TimeoutException
|
|
2718
|
+
| SdkError
|
|
2719
|
+
| EntityAlreadyExistsError
|
|
2720
|
+
| LimitExceededError
|
|
2721
|
+
| NoSuchEntityError
|
|
2722
|
+
| ServiceFailureError
|
|
2566
2723
|
>;
|
|
2567
2724
|
|
|
2568
2725
|
/**
|
|
@@ -2573,6 +2730,7 @@ interface IAMService$ {
|
|
|
2573
2730
|
options?: HttpHandlerOptions,
|
|
2574
2731
|
): Effect.Effect<
|
|
2575
2732
|
UpdateLoginProfileCommandOutput,
|
|
2733
|
+
| Cause.TimeoutException
|
|
2576
2734
|
| SdkError
|
|
2577
2735
|
| EntityTemporarilyUnmodifiableError
|
|
2578
2736
|
| LimitExceededError
|
|
@@ -2589,7 +2747,7 @@ interface IAMService$ {
|
|
|
2589
2747
|
options?: HttpHandlerOptions,
|
|
2590
2748
|
): Effect.Effect<
|
|
2591
2749
|
UpdateOpenIDConnectProviderThumbprintCommandOutput,
|
|
2592
|
-
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2750
|
+
Cause.TimeoutException | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2593
2751
|
>;
|
|
2594
2752
|
|
|
2595
2753
|
/**
|
|
@@ -2600,7 +2758,7 @@ interface IAMService$ {
|
|
|
2600
2758
|
options?: HttpHandlerOptions,
|
|
2601
2759
|
): Effect.Effect<
|
|
2602
2760
|
UpdateRoleCommandOutput,
|
|
2603
|
-
SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
2761
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
2604
2762
|
>;
|
|
2605
2763
|
|
|
2606
2764
|
/**
|
|
@@ -2611,7 +2769,7 @@ interface IAMService$ {
|
|
|
2611
2769
|
options?: HttpHandlerOptions,
|
|
2612
2770
|
): Effect.Effect<
|
|
2613
2771
|
UpdateRoleDescriptionCommandOutput,
|
|
2614
|
-
SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
2772
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
2615
2773
|
>;
|
|
2616
2774
|
|
|
2617
2775
|
/**
|
|
@@ -2622,7 +2780,7 @@ interface IAMService$ {
|
|
|
2622
2780
|
options?: HttpHandlerOptions,
|
|
2623
2781
|
): Effect.Effect<
|
|
2624
2782
|
UpdateSAMLProviderCommandOutput,
|
|
2625
|
-
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2783
|
+
Cause.TimeoutException | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2626
2784
|
>;
|
|
2627
2785
|
|
|
2628
2786
|
/**
|
|
@@ -2633,7 +2791,7 @@ interface IAMService$ {
|
|
|
2633
2791
|
options?: HttpHandlerOptions,
|
|
2634
2792
|
): Effect.Effect<
|
|
2635
2793
|
UpdateSSHPublicKeyCommandOutput,
|
|
2636
|
-
SdkError | NoSuchEntityError
|
|
2794
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError
|
|
2637
2795
|
>;
|
|
2638
2796
|
|
|
2639
2797
|
/**
|
|
@@ -2644,7 +2802,12 @@ interface IAMService$ {
|
|
|
2644
2802
|
options?: HttpHandlerOptions,
|
|
2645
2803
|
): Effect.Effect<
|
|
2646
2804
|
UpdateServerCertificateCommandOutput,
|
|
2647
|
-
|
|
2805
|
+
| Cause.TimeoutException
|
|
2806
|
+
| SdkError
|
|
2807
|
+
| EntityAlreadyExistsError
|
|
2808
|
+
| LimitExceededError
|
|
2809
|
+
| NoSuchEntityError
|
|
2810
|
+
| ServiceFailureError
|
|
2648
2811
|
>;
|
|
2649
2812
|
|
|
2650
2813
|
/**
|
|
@@ -2655,7 +2818,7 @@ interface IAMService$ {
|
|
|
2655
2818
|
options?: HttpHandlerOptions,
|
|
2656
2819
|
): Effect.Effect<
|
|
2657
2820
|
UpdateServiceSpecificCredentialCommandOutput,
|
|
2658
|
-
SdkError | NoSuchEntityError
|
|
2821
|
+
Cause.TimeoutException | SdkError | NoSuchEntityError
|
|
2659
2822
|
>;
|
|
2660
2823
|
|
|
2661
2824
|
/**
|
|
@@ -2666,7 +2829,7 @@ interface IAMService$ {
|
|
|
2666
2829
|
options?: HttpHandlerOptions,
|
|
2667
2830
|
): Effect.Effect<
|
|
2668
2831
|
UpdateSigningCertificateCommandOutput,
|
|
2669
|
-
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2832
|
+
Cause.TimeoutException | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2670
2833
|
>;
|
|
2671
2834
|
|
|
2672
2835
|
/**
|
|
@@ -2677,6 +2840,7 @@ interface IAMService$ {
|
|
|
2677
2840
|
options?: HttpHandlerOptions,
|
|
2678
2841
|
): Effect.Effect<
|
|
2679
2842
|
UpdateUserCommandOutput,
|
|
2843
|
+
| Cause.TimeoutException
|
|
2680
2844
|
| SdkError
|
|
2681
2845
|
| ConcurrentModificationError
|
|
2682
2846
|
| EntityAlreadyExistsError
|
|
@@ -2694,6 +2858,7 @@ interface IAMService$ {
|
|
|
2694
2858
|
options?: HttpHandlerOptions,
|
|
2695
2859
|
): Effect.Effect<
|
|
2696
2860
|
UploadSSHPublicKeyCommandOutput,
|
|
2861
|
+
| Cause.TimeoutException
|
|
2697
2862
|
| SdkError
|
|
2698
2863
|
| DuplicateSSHPublicKeyError
|
|
2699
2864
|
| InvalidPublicKeyError
|
|
@@ -2710,6 +2875,7 @@ interface IAMService$ {
|
|
|
2710
2875
|
options?: HttpHandlerOptions,
|
|
2711
2876
|
): Effect.Effect<
|
|
2712
2877
|
UploadServerCertificateCommandOutput,
|
|
2878
|
+
| Cause.TimeoutException
|
|
2713
2879
|
| SdkError
|
|
2714
2880
|
| ConcurrentModificationError
|
|
2715
2881
|
| EntityAlreadyExistsError
|
|
@@ -2728,6 +2894,7 @@ interface IAMService$ {
|
|
|
2728
2894
|
options?: HttpHandlerOptions,
|
|
2729
2895
|
): Effect.Effect<
|
|
2730
2896
|
UploadSigningCertificateCommandOutput,
|
|
2897
|
+
| Cause.TimeoutException
|
|
2731
2898
|
| SdkError
|
|
2732
2899
|
| ConcurrentModificationError
|
|
2733
2900
|
| DuplicateCertificateError
|
|
@@ -2747,7 +2914,7 @@ interface IAMService$ {
|
|
|
2747
2914
|
export const makeIAMService = Effect.gen(function*() {
|
|
2748
2915
|
const client = yield* Instance.IAMClientInstance;
|
|
2749
2916
|
|
|
2750
|
-
return Service.fromClientAndCommands<IAMService$>(
|
|
2917
|
+
return yield* Service.fromClientAndCommands<IAMService$>(
|
|
2751
2918
|
client,
|
|
2752
2919
|
commands,
|
|
2753
2920
|
{
|