@effect-aws/client-iam 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.
- package/LICENSE +1 -1
- package/README.md +3 -3
- package/dist/dts/IAMClientInstance.d.ts +2 -2
- package/dist/dts/IAMClientInstance.d.ts.map +1 -1
- package/dist/dts/IAMService.d.ts +178 -180
- package/dist/dts/IAMService.d.ts.map +1 -1
- package/dist/dts/IAMServiceConfig.d.ts.map +1 -1
- package/dist/esm/IAMClientInstance.js +3 -3
- package/dist/esm/IAMClientInstance.js.map +1 -1
- package/dist/esm/IAMService.js +2 -2
- package/dist/esm/IAMService.js.map +1 -1
- package/dist/esm/IAMServiceConfig.js +5 -6
- package/dist/esm/IAMServiceConfig.js.map +1 -1
- package/package.json +8 -14
- package/src/IAMClientInstance.ts +4 -4
- package/src/IAMService.ts +179 -194
- package/src/IAMServiceConfig.ts +6 -7
- package/dist/cjs/Errors.d.ts +0 -42
- package/dist/cjs/Errors.d.ts.map +0 -1
- package/dist/cjs/Errors.js +0 -41
- package/dist/cjs/Errors.js.map +0 -1
- package/dist/cjs/IAMClientInstance.d.ts +0 -24
- package/dist/cjs/IAMClientInstance.d.ts.map +0 -1
- package/dist/cjs/IAMClientInstance.js +0 -50
- package/dist/cjs/IAMClientInstance.js.map +0 -1
- package/dist/cjs/IAMService.d.ts +0 -750
- package/dist/cjs/IAMService.d.ts.map +0 -1
- package/dist/cjs/IAMService.js +0 -235
- package/dist/cjs/IAMService.js.map +0 -1
- package/dist/cjs/IAMServiceConfig.d.ts +0 -25
- package/dist/cjs/IAMServiceConfig.d.ts.map +0 -1
- package/dist/cjs/IAMServiceConfig.js +0 -35
- package/dist/cjs/IAMServiceConfig.js.map +0 -1
- package/dist/cjs/index.d.ts +0 -44
- package/dist/cjs/index.d.ts.map +0 -1
- package/dist/cjs/index.js +0 -56
- package/dist/cjs/index.js.map +0 -1
package/src/IAMService.ts
CHANGED
|
@@ -536,7 +536,7 @@ import {
|
|
|
536
536
|
import type { HttpHandlerOptions, ServiceLogger } from "@effect-aws/commons";
|
|
537
537
|
import { Service } from "@effect-aws/commons";
|
|
538
538
|
import type { Cause } from "effect";
|
|
539
|
-
import { Effect, Layer } from "effect";
|
|
539
|
+
import { Effect, Layer, ServiceMap } from "effect";
|
|
540
540
|
import type {
|
|
541
541
|
AccountNotManagementOrDelegatedAdministratorError,
|
|
542
542
|
CallerIsNotManagementAccountError,
|
|
@@ -769,7 +769,7 @@ interface IAMService$ {
|
|
|
769
769
|
options?: HttpHandlerOptions,
|
|
770
770
|
): Effect.Effect<
|
|
771
771
|
AcceptDelegationRequestCommandOutput,
|
|
772
|
-
Cause.
|
|
772
|
+
Cause.TimeoutError | SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
|
|
773
773
|
>;
|
|
774
774
|
|
|
775
775
|
/**
|
|
@@ -780,7 +780,7 @@ interface IAMService$ {
|
|
|
780
780
|
options?: HttpHandlerOptions,
|
|
781
781
|
): Effect.Effect<
|
|
782
782
|
AddClientIDToOpenIDConnectProviderCommandOutput,
|
|
783
|
-
| Cause.
|
|
783
|
+
| Cause.TimeoutError
|
|
784
784
|
| SdkError
|
|
785
785
|
| ConcurrentModificationError
|
|
786
786
|
| InvalidInputError
|
|
@@ -797,7 +797,7 @@ interface IAMService$ {
|
|
|
797
797
|
options?: HttpHandlerOptions,
|
|
798
798
|
): Effect.Effect<
|
|
799
799
|
AddRoleToInstanceProfileCommandOutput,
|
|
800
|
-
| Cause.
|
|
800
|
+
| Cause.TimeoutError
|
|
801
801
|
| SdkError
|
|
802
802
|
| EntityAlreadyExistsError
|
|
803
803
|
| LimitExceededError
|
|
@@ -814,7 +814,7 @@ interface IAMService$ {
|
|
|
814
814
|
options?: HttpHandlerOptions,
|
|
815
815
|
): Effect.Effect<
|
|
816
816
|
AddUserToGroupCommandOutput,
|
|
817
|
-
Cause.
|
|
817
|
+
Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
818
818
|
>;
|
|
819
819
|
|
|
820
820
|
/**
|
|
@@ -825,7 +825,7 @@ interface IAMService$ {
|
|
|
825
825
|
options?: HttpHandlerOptions,
|
|
826
826
|
): Effect.Effect<
|
|
827
827
|
AssociateDelegationRequestCommandOutput,
|
|
828
|
-
| Cause.
|
|
828
|
+
| Cause.TimeoutError
|
|
829
829
|
| SdkError
|
|
830
830
|
| ConcurrentModificationError
|
|
831
831
|
| InvalidInputError
|
|
@@ -841,7 +841,7 @@ interface IAMService$ {
|
|
|
841
841
|
options?: HttpHandlerOptions,
|
|
842
842
|
): Effect.Effect<
|
|
843
843
|
AttachGroupPolicyCommandOutput,
|
|
844
|
-
| Cause.
|
|
844
|
+
| Cause.TimeoutError
|
|
845
845
|
| SdkError
|
|
846
846
|
| InvalidInputError
|
|
847
847
|
| LimitExceededError
|
|
@@ -858,7 +858,7 @@ interface IAMService$ {
|
|
|
858
858
|
options?: HttpHandlerOptions,
|
|
859
859
|
): Effect.Effect<
|
|
860
860
|
AttachRolePolicyCommandOutput,
|
|
861
|
-
| Cause.
|
|
861
|
+
| Cause.TimeoutError
|
|
862
862
|
| SdkError
|
|
863
863
|
| InvalidInputError
|
|
864
864
|
| LimitExceededError
|
|
@@ -876,7 +876,7 @@ interface IAMService$ {
|
|
|
876
876
|
options?: HttpHandlerOptions,
|
|
877
877
|
): Effect.Effect<
|
|
878
878
|
AttachUserPolicyCommandOutput,
|
|
879
|
-
| Cause.
|
|
879
|
+
| Cause.TimeoutError
|
|
880
880
|
| SdkError
|
|
881
881
|
| InvalidInputError
|
|
882
882
|
| LimitExceededError
|
|
@@ -893,7 +893,7 @@ interface IAMService$ {
|
|
|
893
893
|
options?: HttpHandlerOptions,
|
|
894
894
|
): Effect.Effect<
|
|
895
895
|
ChangePasswordCommandOutput,
|
|
896
|
-
| Cause.
|
|
896
|
+
| Cause.TimeoutError
|
|
897
897
|
| SdkError
|
|
898
898
|
| EntityTemporarilyUnmodifiableError
|
|
899
899
|
| InvalidUserTypeError
|
|
@@ -911,7 +911,7 @@ interface IAMService$ {
|
|
|
911
911
|
options?: HttpHandlerOptions,
|
|
912
912
|
): Effect.Effect<
|
|
913
913
|
CreateAccessKeyCommandOutput,
|
|
914
|
-
Cause.
|
|
914
|
+
Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
915
915
|
>;
|
|
916
916
|
|
|
917
917
|
/**
|
|
@@ -922,7 +922,7 @@ interface IAMService$ {
|
|
|
922
922
|
options?: HttpHandlerOptions,
|
|
923
923
|
): Effect.Effect<
|
|
924
924
|
CreateAccountAliasCommandOutput,
|
|
925
|
-
| Cause.
|
|
925
|
+
| Cause.TimeoutError
|
|
926
926
|
| SdkError
|
|
927
927
|
| ConcurrentModificationError
|
|
928
928
|
| EntityAlreadyExistsError
|
|
@@ -938,7 +938,7 @@ interface IAMService$ {
|
|
|
938
938
|
options?: HttpHandlerOptions,
|
|
939
939
|
): Effect.Effect<
|
|
940
940
|
CreateDelegationRequestCommandOutput,
|
|
941
|
-
| Cause.
|
|
941
|
+
| Cause.TimeoutError
|
|
942
942
|
| SdkError
|
|
943
943
|
| ConcurrentModificationError
|
|
944
944
|
| EntityAlreadyExistsError
|
|
@@ -955,7 +955,7 @@ interface IAMService$ {
|
|
|
955
955
|
options?: HttpHandlerOptions,
|
|
956
956
|
): Effect.Effect<
|
|
957
957
|
CreateGroupCommandOutput,
|
|
958
|
-
| Cause.
|
|
958
|
+
| Cause.TimeoutError
|
|
959
959
|
| SdkError
|
|
960
960
|
| EntityAlreadyExistsError
|
|
961
961
|
| LimitExceededError
|
|
@@ -971,7 +971,7 @@ interface IAMService$ {
|
|
|
971
971
|
options?: HttpHandlerOptions,
|
|
972
972
|
): Effect.Effect<
|
|
973
973
|
CreateInstanceProfileCommandOutput,
|
|
974
|
-
| Cause.
|
|
974
|
+
| Cause.TimeoutError
|
|
975
975
|
| SdkError
|
|
976
976
|
| ConcurrentModificationError
|
|
977
977
|
| EntityAlreadyExistsError
|
|
@@ -988,7 +988,7 @@ interface IAMService$ {
|
|
|
988
988
|
options?: HttpHandlerOptions,
|
|
989
989
|
): Effect.Effect<
|
|
990
990
|
CreateLoginProfileCommandOutput,
|
|
991
|
-
| Cause.
|
|
991
|
+
| Cause.TimeoutError
|
|
992
992
|
| SdkError
|
|
993
993
|
| EntityAlreadyExistsError
|
|
994
994
|
| LimitExceededError
|
|
@@ -1005,7 +1005,7 @@ interface IAMService$ {
|
|
|
1005
1005
|
options?: HttpHandlerOptions,
|
|
1006
1006
|
): Effect.Effect<
|
|
1007
1007
|
CreateOpenIDConnectProviderCommandOutput,
|
|
1008
|
-
| Cause.
|
|
1008
|
+
| Cause.TimeoutError
|
|
1009
1009
|
| SdkError
|
|
1010
1010
|
| ConcurrentModificationError
|
|
1011
1011
|
| EntityAlreadyExistsError
|
|
@@ -1023,7 +1023,7 @@ interface IAMService$ {
|
|
|
1023
1023
|
options?: HttpHandlerOptions,
|
|
1024
1024
|
): Effect.Effect<
|
|
1025
1025
|
CreatePolicyCommandOutput,
|
|
1026
|
-
| Cause.
|
|
1026
|
+
| Cause.TimeoutError
|
|
1027
1027
|
| SdkError
|
|
1028
1028
|
| ConcurrentModificationError
|
|
1029
1029
|
| EntityAlreadyExistsError
|
|
@@ -1041,7 +1041,7 @@ interface IAMService$ {
|
|
|
1041
1041
|
options?: HttpHandlerOptions,
|
|
1042
1042
|
): Effect.Effect<
|
|
1043
1043
|
CreatePolicyVersionCommandOutput,
|
|
1044
|
-
| Cause.
|
|
1044
|
+
| Cause.TimeoutError
|
|
1045
1045
|
| SdkError
|
|
1046
1046
|
| InvalidInputError
|
|
1047
1047
|
| LimitExceededError
|
|
@@ -1058,7 +1058,7 @@ interface IAMService$ {
|
|
|
1058
1058
|
options?: HttpHandlerOptions,
|
|
1059
1059
|
): Effect.Effect<
|
|
1060
1060
|
CreateRoleCommandOutput,
|
|
1061
|
-
| Cause.
|
|
1061
|
+
| Cause.TimeoutError
|
|
1062
1062
|
| SdkError
|
|
1063
1063
|
| ConcurrentModificationError
|
|
1064
1064
|
| EntityAlreadyExistsError
|
|
@@ -1076,7 +1076,7 @@ interface IAMService$ {
|
|
|
1076
1076
|
options?: HttpHandlerOptions,
|
|
1077
1077
|
): Effect.Effect<
|
|
1078
1078
|
CreateSAMLProviderCommandOutput,
|
|
1079
|
-
| Cause.
|
|
1079
|
+
| Cause.TimeoutError
|
|
1080
1080
|
| SdkError
|
|
1081
1081
|
| ConcurrentModificationError
|
|
1082
1082
|
| EntityAlreadyExistsError
|
|
@@ -1093,7 +1093,7 @@ interface IAMService$ {
|
|
|
1093
1093
|
options?: HttpHandlerOptions,
|
|
1094
1094
|
): Effect.Effect<
|
|
1095
1095
|
CreateServiceLinkedRoleCommandOutput,
|
|
1096
|
-
Cause.
|
|
1096
|
+
Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1097
1097
|
>;
|
|
1098
1098
|
|
|
1099
1099
|
/**
|
|
@@ -1104,7 +1104,7 @@ interface IAMService$ {
|
|
|
1104
1104
|
options?: HttpHandlerOptions,
|
|
1105
1105
|
): Effect.Effect<
|
|
1106
1106
|
CreateServiceSpecificCredentialCommandOutput,
|
|
1107
|
-
Cause.
|
|
1107
|
+
Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceNotSupportedError
|
|
1108
1108
|
>;
|
|
1109
1109
|
|
|
1110
1110
|
/**
|
|
@@ -1115,7 +1115,7 @@ interface IAMService$ {
|
|
|
1115
1115
|
options?: HttpHandlerOptions,
|
|
1116
1116
|
): Effect.Effect<
|
|
1117
1117
|
CreateUserCommandOutput,
|
|
1118
|
-
| Cause.
|
|
1118
|
+
| Cause.TimeoutError
|
|
1119
1119
|
| SdkError
|
|
1120
1120
|
| ConcurrentModificationError
|
|
1121
1121
|
| EntityAlreadyExistsError
|
|
@@ -1133,7 +1133,7 @@ interface IAMService$ {
|
|
|
1133
1133
|
options?: HttpHandlerOptions,
|
|
1134
1134
|
): Effect.Effect<
|
|
1135
1135
|
CreateVirtualMFADeviceCommandOutput,
|
|
1136
|
-
| Cause.
|
|
1136
|
+
| Cause.TimeoutError
|
|
1137
1137
|
| SdkError
|
|
1138
1138
|
| ConcurrentModificationError
|
|
1139
1139
|
| EntityAlreadyExistsError
|
|
@@ -1150,7 +1150,7 @@ interface IAMService$ {
|
|
|
1150
1150
|
options?: HttpHandlerOptions,
|
|
1151
1151
|
): Effect.Effect<
|
|
1152
1152
|
DeactivateMFADeviceCommandOutput,
|
|
1153
|
-
| Cause.
|
|
1153
|
+
| Cause.TimeoutError
|
|
1154
1154
|
| SdkError
|
|
1155
1155
|
| ConcurrentModificationError
|
|
1156
1156
|
| EntityTemporarilyUnmodifiableError
|
|
@@ -1167,7 +1167,7 @@ interface IAMService$ {
|
|
|
1167
1167
|
options?: HttpHandlerOptions,
|
|
1168
1168
|
): Effect.Effect<
|
|
1169
1169
|
DeleteAccessKeyCommandOutput,
|
|
1170
|
-
Cause.
|
|
1170
|
+
Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1171
1171
|
>;
|
|
1172
1172
|
|
|
1173
1173
|
/**
|
|
@@ -1178,7 +1178,7 @@ interface IAMService$ {
|
|
|
1178
1178
|
options?: HttpHandlerOptions,
|
|
1179
1179
|
): Effect.Effect<
|
|
1180
1180
|
DeleteAccountAliasCommandOutput,
|
|
1181
|
-
| Cause.
|
|
1181
|
+
| Cause.TimeoutError
|
|
1182
1182
|
| SdkError
|
|
1183
1183
|
| ConcurrentModificationError
|
|
1184
1184
|
| LimitExceededError
|
|
@@ -1194,7 +1194,7 @@ interface IAMService$ {
|
|
|
1194
1194
|
options?: HttpHandlerOptions,
|
|
1195
1195
|
): Effect.Effect<
|
|
1196
1196
|
DeleteAccountPasswordPolicyCommandOutput,
|
|
1197
|
-
Cause.
|
|
1197
|
+
Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1198
1198
|
>;
|
|
1199
1199
|
|
|
1200
1200
|
/**
|
|
@@ -1205,12 +1205,7 @@ interface IAMService$ {
|
|
|
1205
1205
|
options?: HttpHandlerOptions,
|
|
1206
1206
|
): Effect.Effect<
|
|
1207
1207
|
DeleteGroupCommandOutput,
|
|
1208
|
-
|
|
|
1209
|
-
| SdkError
|
|
1210
|
-
| DeleteConflictError
|
|
1211
|
-
| LimitExceededError
|
|
1212
|
-
| NoSuchEntityError
|
|
1213
|
-
| ServiceFailureError
|
|
1208
|
+
Cause.TimeoutError | SdkError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1214
1209
|
>;
|
|
1215
1210
|
|
|
1216
1211
|
/**
|
|
@@ -1221,7 +1216,7 @@ interface IAMService$ {
|
|
|
1221
1216
|
options?: HttpHandlerOptions,
|
|
1222
1217
|
): Effect.Effect<
|
|
1223
1218
|
DeleteGroupPolicyCommandOutput,
|
|
1224
|
-
Cause.
|
|
1219
|
+
Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1225
1220
|
>;
|
|
1226
1221
|
|
|
1227
1222
|
/**
|
|
@@ -1232,12 +1227,7 @@ interface IAMService$ {
|
|
|
1232
1227
|
options?: HttpHandlerOptions,
|
|
1233
1228
|
): Effect.Effect<
|
|
1234
1229
|
DeleteInstanceProfileCommandOutput,
|
|
1235
|
-
|
|
|
1236
|
-
| SdkError
|
|
1237
|
-
| DeleteConflictError
|
|
1238
|
-
| LimitExceededError
|
|
1239
|
-
| NoSuchEntityError
|
|
1240
|
-
| ServiceFailureError
|
|
1230
|
+
Cause.TimeoutError | SdkError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1241
1231
|
>;
|
|
1242
1232
|
|
|
1243
1233
|
/**
|
|
@@ -1248,7 +1238,7 @@ interface IAMService$ {
|
|
|
1248
1238
|
options?: HttpHandlerOptions,
|
|
1249
1239
|
): Effect.Effect<
|
|
1250
1240
|
DeleteLoginProfileCommandOutput,
|
|
1251
|
-
| Cause.
|
|
1241
|
+
| Cause.TimeoutError
|
|
1252
1242
|
| SdkError
|
|
1253
1243
|
| EntityTemporarilyUnmodifiableError
|
|
1254
1244
|
| LimitExceededError
|
|
@@ -1264,7 +1254,7 @@ interface IAMService$ {
|
|
|
1264
1254
|
options?: HttpHandlerOptions,
|
|
1265
1255
|
): Effect.Effect<
|
|
1266
1256
|
DeleteOpenIDConnectProviderCommandOutput,
|
|
1267
|
-
Cause.
|
|
1257
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1268
1258
|
>;
|
|
1269
1259
|
|
|
1270
1260
|
/**
|
|
@@ -1275,7 +1265,7 @@ interface IAMService$ {
|
|
|
1275
1265
|
options?: HttpHandlerOptions,
|
|
1276
1266
|
): Effect.Effect<
|
|
1277
1267
|
DeletePolicyCommandOutput,
|
|
1278
|
-
| Cause.
|
|
1268
|
+
| Cause.TimeoutError
|
|
1279
1269
|
| SdkError
|
|
1280
1270
|
| DeleteConflictError
|
|
1281
1271
|
| InvalidInputError
|
|
@@ -1292,7 +1282,7 @@ interface IAMService$ {
|
|
|
1292
1282
|
options?: HttpHandlerOptions,
|
|
1293
1283
|
): Effect.Effect<
|
|
1294
1284
|
DeletePolicyVersionCommandOutput,
|
|
1295
|
-
| Cause.
|
|
1285
|
+
| Cause.TimeoutError
|
|
1296
1286
|
| SdkError
|
|
1297
1287
|
| DeleteConflictError
|
|
1298
1288
|
| InvalidInputError
|
|
@@ -1309,7 +1299,7 @@ interface IAMService$ {
|
|
|
1309
1299
|
options?: HttpHandlerOptions,
|
|
1310
1300
|
): Effect.Effect<
|
|
1311
1301
|
DeleteRoleCommandOutput,
|
|
1312
|
-
| Cause.
|
|
1302
|
+
| Cause.TimeoutError
|
|
1313
1303
|
| SdkError
|
|
1314
1304
|
| ConcurrentModificationError
|
|
1315
1305
|
| DeleteConflictError
|
|
@@ -1327,7 +1317,7 @@ interface IAMService$ {
|
|
|
1327
1317
|
options?: HttpHandlerOptions,
|
|
1328
1318
|
): Effect.Effect<
|
|
1329
1319
|
DeleteRolePermissionsBoundaryCommandOutput,
|
|
1330
|
-
Cause.
|
|
1320
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
1331
1321
|
>;
|
|
1332
1322
|
|
|
1333
1323
|
/**
|
|
@@ -1338,7 +1328,7 @@ interface IAMService$ {
|
|
|
1338
1328
|
options?: HttpHandlerOptions,
|
|
1339
1329
|
): Effect.Effect<
|
|
1340
1330
|
DeleteRolePolicyCommandOutput,
|
|
1341
|
-
| Cause.
|
|
1331
|
+
| Cause.TimeoutError
|
|
1342
1332
|
| SdkError
|
|
1343
1333
|
| LimitExceededError
|
|
1344
1334
|
| NoSuchEntityError
|
|
@@ -1354,7 +1344,7 @@ interface IAMService$ {
|
|
|
1354
1344
|
options?: HttpHandlerOptions,
|
|
1355
1345
|
): Effect.Effect<
|
|
1356
1346
|
DeleteSAMLProviderCommandOutput,
|
|
1357
|
-
Cause.
|
|
1347
|
+
Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1358
1348
|
>;
|
|
1359
1349
|
|
|
1360
1350
|
/**
|
|
@@ -1365,7 +1355,7 @@ interface IAMService$ {
|
|
|
1365
1355
|
options?: HttpHandlerOptions,
|
|
1366
1356
|
): Effect.Effect<
|
|
1367
1357
|
DeleteSSHPublicKeyCommandOutput,
|
|
1368
|
-
Cause.
|
|
1358
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError
|
|
1369
1359
|
>;
|
|
1370
1360
|
|
|
1371
1361
|
/**
|
|
@@ -1376,12 +1366,7 @@ interface IAMService$ {
|
|
|
1376
1366
|
options?: HttpHandlerOptions,
|
|
1377
1367
|
): Effect.Effect<
|
|
1378
1368
|
DeleteServerCertificateCommandOutput,
|
|
1379
|
-
|
|
|
1380
|
-
| SdkError
|
|
1381
|
-
| DeleteConflictError
|
|
1382
|
-
| LimitExceededError
|
|
1383
|
-
| NoSuchEntityError
|
|
1384
|
-
| ServiceFailureError
|
|
1369
|
+
Cause.TimeoutError | SdkError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1385
1370
|
>;
|
|
1386
1371
|
|
|
1387
1372
|
/**
|
|
@@ -1392,7 +1377,7 @@ interface IAMService$ {
|
|
|
1392
1377
|
options?: HttpHandlerOptions,
|
|
1393
1378
|
): Effect.Effect<
|
|
1394
1379
|
DeleteServiceLinkedRoleCommandOutput,
|
|
1395
|
-
Cause.
|
|
1380
|
+
Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1396
1381
|
>;
|
|
1397
1382
|
|
|
1398
1383
|
/**
|
|
@@ -1403,7 +1388,7 @@ interface IAMService$ {
|
|
|
1403
1388
|
options?: HttpHandlerOptions,
|
|
1404
1389
|
): Effect.Effect<
|
|
1405
1390
|
DeleteServiceSpecificCredentialCommandOutput,
|
|
1406
|
-
Cause.
|
|
1391
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError
|
|
1407
1392
|
>;
|
|
1408
1393
|
|
|
1409
1394
|
/**
|
|
@@ -1414,7 +1399,7 @@ interface IAMService$ {
|
|
|
1414
1399
|
options?: HttpHandlerOptions,
|
|
1415
1400
|
): Effect.Effect<
|
|
1416
1401
|
DeleteSigningCertificateCommandOutput,
|
|
1417
|
-
| Cause.
|
|
1402
|
+
| Cause.TimeoutError
|
|
1418
1403
|
| SdkError
|
|
1419
1404
|
| ConcurrentModificationError
|
|
1420
1405
|
| LimitExceededError
|
|
@@ -1430,7 +1415,7 @@ interface IAMService$ {
|
|
|
1430
1415
|
options?: HttpHandlerOptions,
|
|
1431
1416
|
): Effect.Effect<
|
|
1432
1417
|
DeleteUserCommandOutput,
|
|
1433
|
-
| Cause.
|
|
1418
|
+
| Cause.TimeoutError
|
|
1434
1419
|
| SdkError
|
|
1435
1420
|
| ConcurrentModificationError
|
|
1436
1421
|
| DeleteConflictError
|
|
@@ -1447,7 +1432,7 @@ interface IAMService$ {
|
|
|
1447
1432
|
options?: HttpHandlerOptions,
|
|
1448
1433
|
): Effect.Effect<
|
|
1449
1434
|
DeleteUserPermissionsBoundaryCommandOutput,
|
|
1450
|
-
Cause.
|
|
1435
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1451
1436
|
>;
|
|
1452
1437
|
|
|
1453
1438
|
/**
|
|
@@ -1458,7 +1443,7 @@ interface IAMService$ {
|
|
|
1458
1443
|
options?: HttpHandlerOptions,
|
|
1459
1444
|
): Effect.Effect<
|
|
1460
1445
|
DeleteUserPolicyCommandOutput,
|
|
1461
|
-
Cause.
|
|
1446
|
+
Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1462
1447
|
>;
|
|
1463
1448
|
|
|
1464
1449
|
/**
|
|
@@ -1469,7 +1454,7 @@ interface IAMService$ {
|
|
|
1469
1454
|
options?: HttpHandlerOptions,
|
|
1470
1455
|
): Effect.Effect<
|
|
1471
1456
|
DeleteVirtualMFADeviceCommandOutput,
|
|
1472
|
-
| Cause.
|
|
1457
|
+
| Cause.TimeoutError
|
|
1473
1458
|
| SdkError
|
|
1474
1459
|
| ConcurrentModificationError
|
|
1475
1460
|
| DeleteConflictError
|
|
@@ -1486,7 +1471,7 @@ interface IAMService$ {
|
|
|
1486
1471
|
options?: HttpHandlerOptions,
|
|
1487
1472
|
): Effect.Effect<
|
|
1488
1473
|
DetachGroupPolicyCommandOutput,
|
|
1489
|
-
Cause.
|
|
1474
|
+
Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1490
1475
|
>;
|
|
1491
1476
|
|
|
1492
1477
|
/**
|
|
@@ -1497,7 +1482,7 @@ interface IAMService$ {
|
|
|
1497
1482
|
options?: HttpHandlerOptions,
|
|
1498
1483
|
): Effect.Effect<
|
|
1499
1484
|
DetachRolePolicyCommandOutput,
|
|
1500
|
-
| Cause.
|
|
1485
|
+
| Cause.TimeoutError
|
|
1501
1486
|
| SdkError
|
|
1502
1487
|
| InvalidInputError
|
|
1503
1488
|
| LimitExceededError
|
|
@@ -1514,7 +1499,7 @@ interface IAMService$ {
|
|
|
1514
1499
|
options?: HttpHandlerOptions,
|
|
1515
1500
|
): Effect.Effect<
|
|
1516
1501
|
DetachUserPolicyCommandOutput,
|
|
1517
|
-
Cause.
|
|
1502
|
+
Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1518
1503
|
>;
|
|
1519
1504
|
|
|
1520
1505
|
/**
|
|
@@ -1525,7 +1510,7 @@ interface IAMService$ {
|
|
|
1525
1510
|
options?: HttpHandlerOptions,
|
|
1526
1511
|
): Effect.Effect<
|
|
1527
1512
|
DisableOrganizationsRootCredentialsManagementCommandOutput,
|
|
1528
|
-
| Cause.
|
|
1513
|
+
| Cause.TimeoutError
|
|
1529
1514
|
| SdkError
|
|
1530
1515
|
| AccountNotManagementOrDelegatedAdministratorError
|
|
1531
1516
|
| OrganizationNotFoundError
|
|
@@ -1541,7 +1526,7 @@ interface IAMService$ {
|
|
|
1541
1526
|
options?: HttpHandlerOptions,
|
|
1542
1527
|
): Effect.Effect<
|
|
1543
1528
|
DisableOrganizationsRootSessionsCommandOutput,
|
|
1544
|
-
| Cause.
|
|
1529
|
+
| Cause.TimeoutError
|
|
1545
1530
|
| SdkError
|
|
1546
1531
|
| AccountNotManagementOrDelegatedAdministratorError
|
|
1547
1532
|
| OrganizationNotFoundError
|
|
@@ -1557,7 +1542,7 @@ interface IAMService$ {
|
|
|
1557
1542
|
options?: HttpHandlerOptions,
|
|
1558
1543
|
): Effect.Effect<
|
|
1559
1544
|
DisableOutboundWebIdentityFederationCommandOutput,
|
|
1560
|
-
Cause.
|
|
1545
|
+
Cause.TimeoutError | SdkError | FeatureDisabledError
|
|
1561
1546
|
>;
|
|
1562
1547
|
|
|
1563
1548
|
/**
|
|
@@ -1568,7 +1553,7 @@ interface IAMService$ {
|
|
|
1568
1553
|
options?: HttpHandlerOptions,
|
|
1569
1554
|
): Effect.Effect<
|
|
1570
1555
|
EnableMFADeviceCommandOutput,
|
|
1571
|
-
| Cause.
|
|
1556
|
+
| Cause.TimeoutError
|
|
1572
1557
|
| SdkError
|
|
1573
1558
|
| ConcurrentModificationError
|
|
1574
1559
|
| EntityAlreadyExistsError
|
|
@@ -1587,7 +1572,7 @@ interface IAMService$ {
|
|
|
1587
1572
|
options?: HttpHandlerOptions,
|
|
1588
1573
|
): Effect.Effect<
|
|
1589
1574
|
EnableOrganizationsRootCredentialsManagementCommandOutput,
|
|
1590
|
-
| Cause.
|
|
1575
|
+
| Cause.TimeoutError
|
|
1591
1576
|
| SdkError
|
|
1592
1577
|
| AccountNotManagementOrDelegatedAdministratorError
|
|
1593
1578
|
| CallerIsNotManagementAccountError
|
|
@@ -1604,7 +1589,7 @@ interface IAMService$ {
|
|
|
1604
1589
|
options?: HttpHandlerOptions,
|
|
1605
1590
|
): Effect.Effect<
|
|
1606
1591
|
EnableOrganizationsRootSessionsCommandOutput,
|
|
1607
|
-
| Cause.
|
|
1592
|
+
| Cause.TimeoutError
|
|
1608
1593
|
| SdkError
|
|
1609
1594
|
| AccountNotManagementOrDelegatedAdministratorError
|
|
1610
1595
|
| CallerIsNotManagementAccountError
|
|
@@ -1621,7 +1606,7 @@ interface IAMService$ {
|
|
|
1621
1606
|
options?: HttpHandlerOptions,
|
|
1622
1607
|
): Effect.Effect<
|
|
1623
1608
|
EnableOutboundWebIdentityFederationCommandOutput,
|
|
1624
|
-
Cause.
|
|
1609
|
+
Cause.TimeoutError | SdkError | FeatureEnabledError
|
|
1625
1610
|
>;
|
|
1626
1611
|
|
|
1627
1612
|
/**
|
|
@@ -1632,7 +1617,7 @@ interface IAMService$ {
|
|
|
1632
1617
|
options?: HttpHandlerOptions,
|
|
1633
1618
|
): Effect.Effect<
|
|
1634
1619
|
GenerateCredentialReportCommandOutput,
|
|
1635
|
-
Cause.
|
|
1620
|
+
Cause.TimeoutError | SdkError | LimitExceededError | ServiceFailureError
|
|
1636
1621
|
>;
|
|
1637
1622
|
|
|
1638
1623
|
/**
|
|
@@ -1643,7 +1628,7 @@ interface IAMService$ {
|
|
|
1643
1628
|
options?: HttpHandlerOptions,
|
|
1644
1629
|
): Effect.Effect<
|
|
1645
1630
|
GenerateOrganizationsAccessReportCommandOutput,
|
|
1646
|
-
Cause.
|
|
1631
|
+
Cause.TimeoutError | SdkError | ReportGenerationLimitExceededError
|
|
1647
1632
|
>;
|
|
1648
1633
|
|
|
1649
1634
|
/**
|
|
@@ -1654,7 +1639,7 @@ interface IAMService$ {
|
|
|
1654
1639
|
options?: HttpHandlerOptions,
|
|
1655
1640
|
): Effect.Effect<
|
|
1656
1641
|
GenerateServiceLastAccessedDetailsCommandOutput,
|
|
1657
|
-
Cause.
|
|
1642
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
|
|
1658
1643
|
>;
|
|
1659
1644
|
|
|
1660
1645
|
/**
|
|
@@ -1665,7 +1650,7 @@ interface IAMService$ {
|
|
|
1665
1650
|
options?: HttpHandlerOptions,
|
|
1666
1651
|
): Effect.Effect<
|
|
1667
1652
|
GetAccessKeyLastUsedCommandOutput,
|
|
1668
|
-
Cause.
|
|
1653
|
+
Cause.TimeoutError | SdkError
|
|
1669
1654
|
>;
|
|
1670
1655
|
|
|
1671
1656
|
/**
|
|
@@ -1676,7 +1661,7 @@ interface IAMService$ {
|
|
|
1676
1661
|
options?: HttpHandlerOptions,
|
|
1677
1662
|
): Effect.Effect<
|
|
1678
1663
|
GetAccountAuthorizationDetailsCommandOutput,
|
|
1679
|
-
Cause.
|
|
1664
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
1680
1665
|
>;
|
|
1681
1666
|
|
|
1682
1667
|
/**
|
|
@@ -1687,7 +1672,7 @@ interface IAMService$ {
|
|
|
1687
1672
|
options?: HttpHandlerOptions,
|
|
1688
1673
|
): Effect.Effect<
|
|
1689
1674
|
GetAccountPasswordPolicyCommandOutput,
|
|
1690
|
-
Cause.
|
|
1675
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1691
1676
|
>;
|
|
1692
1677
|
|
|
1693
1678
|
/**
|
|
@@ -1698,7 +1683,7 @@ interface IAMService$ {
|
|
|
1698
1683
|
options?: HttpHandlerOptions,
|
|
1699
1684
|
): Effect.Effect<
|
|
1700
1685
|
GetAccountSummaryCommandOutput,
|
|
1701
|
-
Cause.
|
|
1686
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
1702
1687
|
>;
|
|
1703
1688
|
|
|
1704
1689
|
/**
|
|
@@ -1709,7 +1694,7 @@ interface IAMService$ {
|
|
|
1709
1694
|
options?: HttpHandlerOptions,
|
|
1710
1695
|
): Effect.Effect<
|
|
1711
1696
|
GetContextKeysForCustomPolicyCommandOutput,
|
|
1712
|
-
Cause.
|
|
1697
|
+
Cause.TimeoutError | SdkError | InvalidInputError
|
|
1713
1698
|
>;
|
|
1714
1699
|
|
|
1715
1700
|
/**
|
|
@@ -1720,7 +1705,7 @@ interface IAMService$ {
|
|
|
1720
1705
|
options?: HttpHandlerOptions,
|
|
1721
1706
|
): Effect.Effect<
|
|
1722
1707
|
GetContextKeysForPrincipalPolicyCommandOutput,
|
|
1723
|
-
Cause.
|
|
1708
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
|
|
1724
1709
|
>;
|
|
1725
1710
|
|
|
1726
1711
|
/**
|
|
@@ -1731,7 +1716,7 @@ interface IAMService$ {
|
|
|
1731
1716
|
options?: HttpHandlerOptions,
|
|
1732
1717
|
): Effect.Effect<
|
|
1733
1718
|
GetCredentialReportCommandOutput,
|
|
1734
|
-
| Cause.
|
|
1719
|
+
| Cause.TimeoutError
|
|
1735
1720
|
| SdkError
|
|
1736
1721
|
| CredentialReportExpiredError
|
|
1737
1722
|
| CredentialReportNotPresentError
|
|
@@ -1747,7 +1732,7 @@ interface IAMService$ {
|
|
|
1747
1732
|
options?: HttpHandlerOptions,
|
|
1748
1733
|
): Effect.Effect<
|
|
1749
1734
|
GetDelegationRequestCommandOutput,
|
|
1750
|
-
Cause.
|
|
1735
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1751
1736
|
>;
|
|
1752
1737
|
|
|
1753
1738
|
/**
|
|
@@ -1758,7 +1743,7 @@ interface IAMService$ {
|
|
|
1758
1743
|
options?: HttpHandlerOptions,
|
|
1759
1744
|
): Effect.Effect<
|
|
1760
1745
|
GetGroupCommandOutput,
|
|
1761
|
-
Cause.
|
|
1746
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1762
1747
|
>;
|
|
1763
1748
|
|
|
1764
1749
|
/**
|
|
@@ -1769,7 +1754,7 @@ interface IAMService$ {
|
|
|
1769
1754
|
options?: HttpHandlerOptions,
|
|
1770
1755
|
): Effect.Effect<
|
|
1771
1756
|
GetGroupPolicyCommandOutput,
|
|
1772
|
-
Cause.
|
|
1757
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1773
1758
|
>;
|
|
1774
1759
|
|
|
1775
1760
|
/**
|
|
@@ -1780,7 +1765,7 @@ interface IAMService$ {
|
|
|
1780
1765
|
options?: HttpHandlerOptions,
|
|
1781
1766
|
): Effect.Effect<
|
|
1782
1767
|
GetHumanReadableSummaryCommandOutput,
|
|
1783
|
-
Cause.
|
|
1768
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1784
1769
|
>;
|
|
1785
1770
|
|
|
1786
1771
|
/**
|
|
@@ -1791,7 +1776,7 @@ interface IAMService$ {
|
|
|
1791
1776
|
options?: HttpHandlerOptions,
|
|
1792
1777
|
): Effect.Effect<
|
|
1793
1778
|
GetInstanceProfileCommandOutput,
|
|
1794
|
-
Cause.
|
|
1779
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1795
1780
|
>;
|
|
1796
1781
|
|
|
1797
1782
|
/**
|
|
@@ -1802,7 +1787,7 @@ interface IAMService$ {
|
|
|
1802
1787
|
options?: HttpHandlerOptions,
|
|
1803
1788
|
): Effect.Effect<
|
|
1804
1789
|
GetLoginProfileCommandOutput,
|
|
1805
|
-
Cause.
|
|
1790
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1806
1791
|
>;
|
|
1807
1792
|
|
|
1808
1793
|
/**
|
|
@@ -1813,7 +1798,7 @@ interface IAMService$ {
|
|
|
1813
1798
|
options?: HttpHandlerOptions,
|
|
1814
1799
|
): Effect.Effect<
|
|
1815
1800
|
GetMFADeviceCommandOutput,
|
|
1816
|
-
Cause.
|
|
1801
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1817
1802
|
>;
|
|
1818
1803
|
|
|
1819
1804
|
/**
|
|
@@ -1824,7 +1809,7 @@ interface IAMService$ {
|
|
|
1824
1809
|
options?: HttpHandlerOptions,
|
|
1825
1810
|
): Effect.Effect<
|
|
1826
1811
|
GetOpenIDConnectProviderCommandOutput,
|
|
1827
|
-
Cause.
|
|
1812
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1828
1813
|
>;
|
|
1829
1814
|
|
|
1830
1815
|
/**
|
|
@@ -1835,7 +1820,7 @@ interface IAMService$ {
|
|
|
1835
1820
|
options?: HttpHandlerOptions,
|
|
1836
1821
|
): Effect.Effect<
|
|
1837
1822
|
GetOrganizationsAccessReportCommandOutput,
|
|
1838
|
-
Cause.
|
|
1823
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError
|
|
1839
1824
|
>;
|
|
1840
1825
|
|
|
1841
1826
|
/**
|
|
@@ -1846,7 +1831,7 @@ interface IAMService$ {
|
|
|
1846
1831
|
options?: HttpHandlerOptions,
|
|
1847
1832
|
): Effect.Effect<
|
|
1848
1833
|
GetOutboundWebIdentityFederationInfoCommandOutput,
|
|
1849
|
-
Cause.
|
|
1834
|
+
Cause.TimeoutError | SdkError | FeatureDisabledError
|
|
1850
1835
|
>;
|
|
1851
1836
|
|
|
1852
1837
|
/**
|
|
@@ -1857,7 +1842,7 @@ interface IAMService$ {
|
|
|
1857
1842
|
options?: HttpHandlerOptions,
|
|
1858
1843
|
): Effect.Effect<
|
|
1859
1844
|
GetPolicyCommandOutput,
|
|
1860
|
-
Cause.
|
|
1845
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1861
1846
|
>;
|
|
1862
1847
|
|
|
1863
1848
|
/**
|
|
@@ -1868,7 +1853,7 @@ interface IAMService$ {
|
|
|
1868
1853
|
options?: HttpHandlerOptions,
|
|
1869
1854
|
): Effect.Effect<
|
|
1870
1855
|
GetPolicyVersionCommandOutput,
|
|
1871
|
-
Cause.
|
|
1856
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1872
1857
|
>;
|
|
1873
1858
|
|
|
1874
1859
|
/**
|
|
@@ -1879,7 +1864,7 @@ interface IAMService$ {
|
|
|
1879
1864
|
options?: HttpHandlerOptions,
|
|
1880
1865
|
): Effect.Effect<
|
|
1881
1866
|
GetRoleCommandOutput,
|
|
1882
|
-
Cause.
|
|
1867
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1883
1868
|
>;
|
|
1884
1869
|
|
|
1885
1870
|
/**
|
|
@@ -1890,7 +1875,7 @@ interface IAMService$ {
|
|
|
1890
1875
|
options?: HttpHandlerOptions,
|
|
1891
1876
|
): Effect.Effect<
|
|
1892
1877
|
GetRolePolicyCommandOutput,
|
|
1893
|
-
Cause.
|
|
1878
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1894
1879
|
>;
|
|
1895
1880
|
|
|
1896
1881
|
/**
|
|
@@ -1901,7 +1886,7 @@ interface IAMService$ {
|
|
|
1901
1886
|
options?: HttpHandlerOptions,
|
|
1902
1887
|
): Effect.Effect<
|
|
1903
1888
|
GetSAMLProviderCommandOutput,
|
|
1904
|
-
Cause.
|
|
1889
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1905
1890
|
>;
|
|
1906
1891
|
|
|
1907
1892
|
/**
|
|
@@ -1912,7 +1897,7 @@ interface IAMService$ {
|
|
|
1912
1897
|
options?: HttpHandlerOptions,
|
|
1913
1898
|
): Effect.Effect<
|
|
1914
1899
|
GetSSHPublicKeyCommandOutput,
|
|
1915
|
-
Cause.
|
|
1900
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | UnrecognizedPublicKeyEncodingError
|
|
1916
1901
|
>;
|
|
1917
1902
|
|
|
1918
1903
|
/**
|
|
@@ -1923,7 +1908,7 @@ interface IAMService$ {
|
|
|
1923
1908
|
options?: HttpHandlerOptions,
|
|
1924
1909
|
): Effect.Effect<
|
|
1925
1910
|
GetServerCertificateCommandOutput,
|
|
1926
|
-
Cause.
|
|
1911
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1927
1912
|
>;
|
|
1928
1913
|
|
|
1929
1914
|
/**
|
|
@@ -1934,7 +1919,7 @@ interface IAMService$ {
|
|
|
1934
1919
|
options?: HttpHandlerOptions,
|
|
1935
1920
|
): Effect.Effect<
|
|
1936
1921
|
GetServiceLastAccessedDetailsCommandOutput,
|
|
1937
|
-
Cause.
|
|
1922
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
|
|
1938
1923
|
>;
|
|
1939
1924
|
|
|
1940
1925
|
/**
|
|
@@ -1945,7 +1930,7 @@ interface IAMService$ {
|
|
|
1945
1930
|
options?: HttpHandlerOptions,
|
|
1946
1931
|
): Effect.Effect<
|
|
1947
1932
|
GetServiceLastAccessedDetailsWithEntitiesCommandOutput,
|
|
1948
|
-
Cause.
|
|
1933
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
|
|
1949
1934
|
>;
|
|
1950
1935
|
|
|
1951
1936
|
/**
|
|
@@ -1956,7 +1941,7 @@ interface IAMService$ {
|
|
|
1956
1941
|
options?: HttpHandlerOptions,
|
|
1957
1942
|
): Effect.Effect<
|
|
1958
1943
|
GetServiceLinkedRoleDeletionStatusCommandOutput,
|
|
1959
|
-
Cause.
|
|
1944
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1960
1945
|
>;
|
|
1961
1946
|
|
|
1962
1947
|
/**
|
|
@@ -1967,7 +1952,7 @@ interface IAMService$ {
|
|
|
1967
1952
|
options?: HttpHandlerOptions,
|
|
1968
1953
|
): Effect.Effect<
|
|
1969
1954
|
GetUserCommandOutput,
|
|
1970
|
-
Cause.
|
|
1955
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1971
1956
|
>;
|
|
1972
1957
|
|
|
1973
1958
|
/**
|
|
@@ -1978,7 +1963,7 @@ interface IAMService$ {
|
|
|
1978
1963
|
options?: HttpHandlerOptions,
|
|
1979
1964
|
): Effect.Effect<
|
|
1980
1965
|
GetUserPolicyCommandOutput,
|
|
1981
|
-
Cause.
|
|
1966
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1982
1967
|
>;
|
|
1983
1968
|
|
|
1984
1969
|
/**
|
|
@@ -1989,7 +1974,7 @@ interface IAMService$ {
|
|
|
1989
1974
|
options?: HttpHandlerOptions,
|
|
1990
1975
|
): Effect.Effect<
|
|
1991
1976
|
ListAccessKeysCommandOutput,
|
|
1992
|
-
Cause.
|
|
1977
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
1993
1978
|
>;
|
|
1994
1979
|
|
|
1995
1980
|
/**
|
|
@@ -2000,7 +1985,7 @@ interface IAMService$ {
|
|
|
2000
1985
|
options?: HttpHandlerOptions,
|
|
2001
1986
|
): Effect.Effect<
|
|
2002
1987
|
ListAccountAliasesCommandOutput,
|
|
2003
|
-
Cause.
|
|
1988
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
2004
1989
|
>;
|
|
2005
1990
|
|
|
2006
1991
|
/**
|
|
@@ -2011,7 +1996,7 @@ interface IAMService$ {
|
|
|
2011
1996
|
options?: HttpHandlerOptions,
|
|
2012
1997
|
): Effect.Effect<
|
|
2013
1998
|
ListAttachedGroupPoliciesCommandOutput,
|
|
2014
|
-
Cause.
|
|
1999
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2015
2000
|
>;
|
|
2016
2001
|
|
|
2017
2002
|
/**
|
|
@@ -2022,7 +2007,7 @@ interface IAMService$ {
|
|
|
2022
2007
|
options?: HttpHandlerOptions,
|
|
2023
2008
|
): Effect.Effect<
|
|
2024
2009
|
ListAttachedRolePoliciesCommandOutput,
|
|
2025
|
-
Cause.
|
|
2010
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2026
2011
|
>;
|
|
2027
2012
|
|
|
2028
2013
|
/**
|
|
@@ -2033,7 +2018,7 @@ interface IAMService$ {
|
|
|
2033
2018
|
options?: HttpHandlerOptions,
|
|
2034
2019
|
): Effect.Effect<
|
|
2035
2020
|
ListAttachedUserPoliciesCommandOutput,
|
|
2036
|
-
Cause.
|
|
2021
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2037
2022
|
>;
|
|
2038
2023
|
|
|
2039
2024
|
/**
|
|
@@ -2044,7 +2029,7 @@ interface IAMService$ {
|
|
|
2044
2029
|
options?: HttpHandlerOptions,
|
|
2045
2030
|
): Effect.Effect<
|
|
2046
2031
|
ListDelegationRequestsCommandOutput,
|
|
2047
|
-
Cause.
|
|
2032
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2048
2033
|
>;
|
|
2049
2034
|
|
|
2050
2035
|
/**
|
|
@@ -2055,7 +2040,7 @@ interface IAMService$ {
|
|
|
2055
2040
|
options?: HttpHandlerOptions,
|
|
2056
2041
|
): Effect.Effect<
|
|
2057
2042
|
ListEntitiesForPolicyCommandOutput,
|
|
2058
|
-
Cause.
|
|
2043
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2059
2044
|
>;
|
|
2060
2045
|
|
|
2061
2046
|
/**
|
|
@@ -2066,7 +2051,7 @@ interface IAMService$ {
|
|
|
2066
2051
|
options?: HttpHandlerOptions,
|
|
2067
2052
|
): Effect.Effect<
|
|
2068
2053
|
ListGroupPoliciesCommandOutput,
|
|
2069
|
-
Cause.
|
|
2054
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2070
2055
|
>;
|
|
2071
2056
|
|
|
2072
2057
|
/**
|
|
@@ -2077,7 +2062,7 @@ interface IAMService$ {
|
|
|
2077
2062
|
options?: HttpHandlerOptions,
|
|
2078
2063
|
): Effect.Effect<
|
|
2079
2064
|
ListGroupsCommandOutput,
|
|
2080
|
-
Cause.
|
|
2065
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
2081
2066
|
>;
|
|
2082
2067
|
|
|
2083
2068
|
/**
|
|
@@ -2088,7 +2073,7 @@ interface IAMService$ {
|
|
|
2088
2073
|
options?: HttpHandlerOptions,
|
|
2089
2074
|
): Effect.Effect<
|
|
2090
2075
|
ListGroupsForUserCommandOutput,
|
|
2091
|
-
Cause.
|
|
2076
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2092
2077
|
>;
|
|
2093
2078
|
|
|
2094
2079
|
/**
|
|
@@ -2099,7 +2084,7 @@ interface IAMService$ {
|
|
|
2099
2084
|
options?: HttpHandlerOptions,
|
|
2100
2085
|
): Effect.Effect<
|
|
2101
2086
|
ListInstanceProfileTagsCommandOutput,
|
|
2102
|
-
Cause.
|
|
2087
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2103
2088
|
>;
|
|
2104
2089
|
|
|
2105
2090
|
/**
|
|
@@ -2110,7 +2095,7 @@ interface IAMService$ {
|
|
|
2110
2095
|
options?: HttpHandlerOptions,
|
|
2111
2096
|
): Effect.Effect<
|
|
2112
2097
|
ListInstanceProfilesCommandOutput,
|
|
2113
|
-
Cause.
|
|
2098
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
2114
2099
|
>;
|
|
2115
2100
|
|
|
2116
2101
|
/**
|
|
@@ -2121,7 +2106,7 @@ interface IAMService$ {
|
|
|
2121
2106
|
options?: HttpHandlerOptions,
|
|
2122
2107
|
): Effect.Effect<
|
|
2123
2108
|
ListInstanceProfilesForRoleCommandOutput,
|
|
2124
|
-
Cause.
|
|
2109
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2125
2110
|
>;
|
|
2126
2111
|
|
|
2127
2112
|
/**
|
|
@@ -2132,7 +2117,7 @@ interface IAMService$ {
|
|
|
2132
2117
|
options?: HttpHandlerOptions,
|
|
2133
2118
|
): Effect.Effect<
|
|
2134
2119
|
ListMFADeviceTagsCommandOutput,
|
|
2135
|
-
Cause.
|
|
2120
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2136
2121
|
>;
|
|
2137
2122
|
|
|
2138
2123
|
/**
|
|
@@ -2143,7 +2128,7 @@ interface IAMService$ {
|
|
|
2143
2128
|
options?: HttpHandlerOptions,
|
|
2144
2129
|
): Effect.Effect<
|
|
2145
2130
|
ListMFADevicesCommandOutput,
|
|
2146
|
-
Cause.
|
|
2131
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2147
2132
|
>;
|
|
2148
2133
|
|
|
2149
2134
|
/**
|
|
@@ -2154,7 +2139,7 @@ interface IAMService$ {
|
|
|
2154
2139
|
options?: HttpHandlerOptions,
|
|
2155
2140
|
): Effect.Effect<
|
|
2156
2141
|
ListOpenIDConnectProviderTagsCommandOutput,
|
|
2157
|
-
Cause.
|
|
2142
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2158
2143
|
>;
|
|
2159
2144
|
|
|
2160
2145
|
/**
|
|
@@ -2165,7 +2150,7 @@ interface IAMService$ {
|
|
|
2165
2150
|
options?: HttpHandlerOptions,
|
|
2166
2151
|
): Effect.Effect<
|
|
2167
2152
|
ListOpenIDConnectProvidersCommandOutput,
|
|
2168
|
-
Cause.
|
|
2153
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
2169
2154
|
>;
|
|
2170
2155
|
|
|
2171
2156
|
/**
|
|
@@ -2176,7 +2161,7 @@ interface IAMService$ {
|
|
|
2176
2161
|
options?: HttpHandlerOptions,
|
|
2177
2162
|
): Effect.Effect<
|
|
2178
2163
|
ListOrganizationsFeaturesCommandOutput,
|
|
2179
|
-
| Cause.
|
|
2164
|
+
| Cause.TimeoutError
|
|
2180
2165
|
| SdkError
|
|
2181
2166
|
| AccountNotManagementOrDelegatedAdministratorError
|
|
2182
2167
|
| OrganizationNotFoundError
|
|
@@ -2192,7 +2177,7 @@ interface IAMService$ {
|
|
|
2192
2177
|
options?: HttpHandlerOptions,
|
|
2193
2178
|
): Effect.Effect<
|
|
2194
2179
|
ListPoliciesCommandOutput,
|
|
2195
|
-
Cause.
|
|
2180
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
2196
2181
|
>;
|
|
2197
2182
|
|
|
2198
2183
|
/**
|
|
@@ -2203,7 +2188,7 @@ interface IAMService$ {
|
|
|
2203
2188
|
options?: HttpHandlerOptions,
|
|
2204
2189
|
): Effect.Effect<
|
|
2205
2190
|
ListPoliciesGrantingServiceAccessCommandOutput,
|
|
2206
|
-
Cause.
|
|
2191
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
|
|
2207
2192
|
>;
|
|
2208
2193
|
|
|
2209
2194
|
/**
|
|
@@ -2214,7 +2199,7 @@ interface IAMService$ {
|
|
|
2214
2199
|
options?: HttpHandlerOptions,
|
|
2215
2200
|
): Effect.Effect<
|
|
2216
2201
|
ListPolicyTagsCommandOutput,
|
|
2217
|
-
Cause.
|
|
2202
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2218
2203
|
>;
|
|
2219
2204
|
|
|
2220
2205
|
/**
|
|
@@ -2225,7 +2210,7 @@ interface IAMService$ {
|
|
|
2225
2210
|
options?: HttpHandlerOptions,
|
|
2226
2211
|
): Effect.Effect<
|
|
2227
2212
|
ListPolicyVersionsCommandOutput,
|
|
2228
|
-
Cause.
|
|
2213
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2229
2214
|
>;
|
|
2230
2215
|
|
|
2231
2216
|
/**
|
|
@@ -2236,7 +2221,7 @@ interface IAMService$ {
|
|
|
2236
2221
|
options?: HttpHandlerOptions,
|
|
2237
2222
|
): Effect.Effect<
|
|
2238
2223
|
ListRolePoliciesCommandOutput,
|
|
2239
|
-
Cause.
|
|
2224
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2240
2225
|
>;
|
|
2241
2226
|
|
|
2242
2227
|
/**
|
|
@@ -2247,7 +2232,7 @@ interface IAMService$ {
|
|
|
2247
2232
|
options?: HttpHandlerOptions,
|
|
2248
2233
|
): Effect.Effect<
|
|
2249
2234
|
ListRoleTagsCommandOutput,
|
|
2250
|
-
Cause.
|
|
2235
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2251
2236
|
>;
|
|
2252
2237
|
|
|
2253
2238
|
/**
|
|
@@ -2258,7 +2243,7 @@ interface IAMService$ {
|
|
|
2258
2243
|
options?: HttpHandlerOptions,
|
|
2259
2244
|
): Effect.Effect<
|
|
2260
2245
|
ListRolesCommandOutput,
|
|
2261
|
-
Cause.
|
|
2246
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
2262
2247
|
>;
|
|
2263
2248
|
|
|
2264
2249
|
/**
|
|
@@ -2269,7 +2254,7 @@ interface IAMService$ {
|
|
|
2269
2254
|
options?: HttpHandlerOptions,
|
|
2270
2255
|
): Effect.Effect<
|
|
2271
2256
|
ListSAMLProviderTagsCommandOutput,
|
|
2272
|
-
Cause.
|
|
2257
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2273
2258
|
>;
|
|
2274
2259
|
|
|
2275
2260
|
/**
|
|
@@ -2280,7 +2265,7 @@ interface IAMService$ {
|
|
|
2280
2265
|
options?: HttpHandlerOptions,
|
|
2281
2266
|
): Effect.Effect<
|
|
2282
2267
|
ListSAMLProvidersCommandOutput,
|
|
2283
|
-
Cause.
|
|
2268
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
2284
2269
|
>;
|
|
2285
2270
|
|
|
2286
2271
|
/**
|
|
@@ -2291,7 +2276,7 @@ interface IAMService$ {
|
|
|
2291
2276
|
options?: HttpHandlerOptions,
|
|
2292
2277
|
): Effect.Effect<
|
|
2293
2278
|
ListSSHPublicKeysCommandOutput,
|
|
2294
|
-
Cause.
|
|
2279
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError
|
|
2295
2280
|
>;
|
|
2296
2281
|
|
|
2297
2282
|
/**
|
|
@@ -2302,7 +2287,7 @@ interface IAMService$ {
|
|
|
2302
2287
|
options?: HttpHandlerOptions,
|
|
2303
2288
|
): Effect.Effect<
|
|
2304
2289
|
ListServerCertificateTagsCommandOutput,
|
|
2305
|
-
Cause.
|
|
2290
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2306
2291
|
>;
|
|
2307
2292
|
|
|
2308
2293
|
/**
|
|
@@ -2313,7 +2298,7 @@ interface IAMService$ {
|
|
|
2313
2298
|
options?: HttpHandlerOptions,
|
|
2314
2299
|
): Effect.Effect<
|
|
2315
2300
|
ListServerCertificatesCommandOutput,
|
|
2316
|
-
Cause.
|
|
2301
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
2317
2302
|
>;
|
|
2318
2303
|
|
|
2319
2304
|
/**
|
|
@@ -2324,7 +2309,7 @@ interface IAMService$ {
|
|
|
2324
2309
|
options?: HttpHandlerOptions,
|
|
2325
2310
|
): Effect.Effect<
|
|
2326
2311
|
ListServiceSpecificCredentialsCommandOutput,
|
|
2327
|
-
Cause.
|
|
2312
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceNotSupportedError
|
|
2328
2313
|
>;
|
|
2329
2314
|
|
|
2330
2315
|
/**
|
|
@@ -2335,7 +2320,7 @@ interface IAMService$ {
|
|
|
2335
2320
|
options?: HttpHandlerOptions,
|
|
2336
2321
|
): Effect.Effect<
|
|
2337
2322
|
ListSigningCertificatesCommandOutput,
|
|
2338
|
-
Cause.
|
|
2323
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2339
2324
|
>;
|
|
2340
2325
|
|
|
2341
2326
|
/**
|
|
@@ -2346,7 +2331,7 @@ interface IAMService$ {
|
|
|
2346
2331
|
options?: HttpHandlerOptions,
|
|
2347
2332
|
): Effect.Effect<
|
|
2348
2333
|
ListUserPoliciesCommandOutput,
|
|
2349
|
-
Cause.
|
|
2334
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2350
2335
|
>;
|
|
2351
2336
|
|
|
2352
2337
|
/**
|
|
@@ -2357,7 +2342,7 @@ interface IAMService$ {
|
|
|
2357
2342
|
options?: HttpHandlerOptions,
|
|
2358
2343
|
): Effect.Effect<
|
|
2359
2344
|
ListUserTagsCommandOutput,
|
|
2360
|
-
Cause.
|
|
2345
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError
|
|
2361
2346
|
>;
|
|
2362
2347
|
|
|
2363
2348
|
/**
|
|
@@ -2368,7 +2353,7 @@ interface IAMService$ {
|
|
|
2368
2353
|
options?: HttpHandlerOptions,
|
|
2369
2354
|
): Effect.Effect<
|
|
2370
2355
|
ListUsersCommandOutput,
|
|
2371
|
-
Cause.
|
|
2356
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
2372
2357
|
>;
|
|
2373
2358
|
|
|
2374
2359
|
/**
|
|
@@ -2379,7 +2364,7 @@ interface IAMService$ {
|
|
|
2379
2364
|
options?: HttpHandlerOptions,
|
|
2380
2365
|
): Effect.Effect<
|
|
2381
2366
|
ListVirtualMFADevicesCommandOutput,
|
|
2382
|
-
Cause.
|
|
2367
|
+
Cause.TimeoutError | SdkError
|
|
2383
2368
|
>;
|
|
2384
2369
|
|
|
2385
2370
|
/**
|
|
@@ -2390,7 +2375,7 @@ interface IAMService$ {
|
|
|
2390
2375
|
options?: HttpHandlerOptions,
|
|
2391
2376
|
): Effect.Effect<
|
|
2392
2377
|
PutGroupPolicyCommandOutput,
|
|
2393
|
-
| Cause.
|
|
2378
|
+
| Cause.TimeoutError
|
|
2394
2379
|
| SdkError
|
|
2395
2380
|
| LimitExceededError
|
|
2396
2381
|
| MalformedPolicyDocumentError
|
|
@@ -2406,7 +2391,7 @@ interface IAMService$ {
|
|
|
2406
2391
|
options?: HttpHandlerOptions,
|
|
2407
2392
|
): Effect.Effect<
|
|
2408
2393
|
PutRolePermissionsBoundaryCommandOutput,
|
|
2409
|
-
| Cause.
|
|
2394
|
+
| Cause.TimeoutError
|
|
2410
2395
|
| SdkError
|
|
2411
2396
|
| InvalidInputError
|
|
2412
2397
|
| NoSuchEntityError
|
|
@@ -2423,7 +2408,7 @@ interface IAMService$ {
|
|
|
2423
2408
|
options?: HttpHandlerOptions,
|
|
2424
2409
|
): Effect.Effect<
|
|
2425
2410
|
PutRolePolicyCommandOutput,
|
|
2426
|
-
| Cause.
|
|
2411
|
+
| Cause.TimeoutError
|
|
2427
2412
|
| SdkError
|
|
2428
2413
|
| LimitExceededError
|
|
2429
2414
|
| MalformedPolicyDocumentError
|
|
@@ -2440,7 +2425,7 @@ interface IAMService$ {
|
|
|
2440
2425
|
options?: HttpHandlerOptions,
|
|
2441
2426
|
): Effect.Effect<
|
|
2442
2427
|
PutUserPermissionsBoundaryCommandOutput,
|
|
2443
|
-
| Cause.
|
|
2428
|
+
| Cause.TimeoutError
|
|
2444
2429
|
| SdkError
|
|
2445
2430
|
| InvalidInputError
|
|
2446
2431
|
| NoSuchEntityError
|
|
@@ -2456,7 +2441,7 @@ interface IAMService$ {
|
|
|
2456
2441
|
options?: HttpHandlerOptions,
|
|
2457
2442
|
): Effect.Effect<
|
|
2458
2443
|
PutUserPolicyCommandOutput,
|
|
2459
|
-
| Cause.
|
|
2444
|
+
| Cause.TimeoutError
|
|
2460
2445
|
| SdkError
|
|
2461
2446
|
| LimitExceededError
|
|
2462
2447
|
| MalformedPolicyDocumentError
|
|
@@ -2472,7 +2457,7 @@ interface IAMService$ {
|
|
|
2472
2457
|
options?: HttpHandlerOptions,
|
|
2473
2458
|
): Effect.Effect<
|
|
2474
2459
|
RejectDelegationRequestCommandOutput,
|
|
2475
|
-
| Cause.
|
|
2460
|
+
| Cause.TimeoutError
|
|
2476
2461
|
| SdkError
|
|
2477
2462
|
| ConcurrentModificationError
|
|
2478
2463
|
| InvalidInputError
|
|
@@ -2488,7 +2473,7 @@ interface IAMService$ {
|
|
|
2488
2473
|
options?: HttpHandlerOptions,
|
|
2489
2474
|
): Effect.Effect<
|
|
2490
2475
|
RemoveClientIDFromOpenIDConnectProviderCommandOutput,
|
|
2491
|
-
| Cause.
|
|
2476
|
+
| Cause.TimeoutError
|
|
2492
2477
|
| SdkError
|
|
2493
2478
|
| ConcurrentModificationError
|
|
2494
2479
|
| InvalidInputError
|
|
@@ -2504,7 +2489,7 @@ interface IAMService$ {
|
|
|
2504
2489
|
options?: HttpHandlerOptions,
|
|
2505
2490
|
): Effect.Effect<
|
|
2506
2491
|
RemoveRoleFromInstanceProfileCommandOutput,
|
|
2507
|
-
| Cause.
|
|
2492
|
+
| Cause.TimeoutError
|
|
2508
2493
|
| SdkError
|
|
2509
2494
|
| LimitExceededError
|
|
2510
2495
|
| NoSuchEntityError
|
|
@@ -2520,7 +2505,7 @@ interface IAMService$ {
|
|
|
2520
2505
|
options?: HttpHandlerOptions,
|
|
2521
2506
|
): Effect.Effect<
|
|
2522
2507
|
RemoveUserFromGroupCommandOutput,
|
|
2523
|
-
Cause.
|
|
2508
|
+
Cause.TimeoutError | SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2524
2509
|
>;
|
|
2525
2510
|
|
|
2526
2511
|
/**
|
|
@@ -2531,7 +2516,7 @@ interface IAMService$ {
|
|
|
2531
2516
|
options?: HttpHandlerOptions,
|
|
2532
2517
|
): Effect.Effect<
|
|
2533
2518
|
ResetServiceSpecificCredentialCommandOutput,
|
|
2534
|
-
Cause.
|
|
2519
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError
|
|
2535
2520
|
>;
|
|
2536
2521
|
|
|
2537
2522
|
/**
|
|
@@ -2542,7 +2527,7 @@ interface IAMService$ {
|
|
|
2542
2527
|
options?: HttpHandlerOptions,
|
|
2543
2528
|
): Effect.Effect<
|
|
2544
2529
|
ResyncMFADeviceCommandOutput,
|
|
2545
|
-
| Cause.
|
|
2530
|
+
| Cause.TimeoutError
|
|
2546
2531
|
| SdkError
|
|
2547
2532
|
| ConcurrentModificationError
|
|
2548
2533
|
| InvalidAuthenticationCodeError
|
|
@@ -2559,7 +2544,7 @@ interface IAMService$ {
|
|
|
2559
2544
|
options?: HttpHandlerOptions,
|
|
2560
2545
|
): Effect.Effect<
|
|
2561
2546
|
SendDelegationTokenCommandOutput,
|
|
2562
|
-
| Cause.
|
|
2547
|
+
| Cause.TimeoutError
|
|
2563
2548
|
| SdkError
|
|
2564
2549
|
| ConcurrentModificationError
|
|
2565
2550
|
| InvalidInputError
|
|
@@ -2575,7 +2560,7 @@ interface IAMService$ {
|
|
|
2575
2560
|
options?: HttpHandlerOptions,
|
|
2576
2561
|
): Effect.Effect<
|
|
2577
2562
|
SetDefaultPolicyVersionCommandOutput,
|
|
2578
|
-
Cause.
|
|
2563
|
+
Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2579
2564
|
>;
|
|
2580
2565
|
|
|
2581
2566
|
/**
|
|
@@ -2586,7 +2571,7 @@ interface IAMService$ {
|
|
|
2586
2571
|
options?: HttpHandlerOptions,
|
|
2587
2572
|
): Effect.Effect<
|
|
2588
2573
|
SetSecurityTokenServicePreferencesCommandOutput,
|
|
2589
|
-
Cause.
|
|
2574
|
+
Cause.TimeoutError | SdkError | ServiceFailureError
|
|
2590
2575
|
>;
|
|
2591
2576
|
|
|
2592
2577
|
/**
|
|
@@ -2597,7 +2582,7 @@ interface IAMService$ {
|
|
|
2597
2582
|
options?: HttpHandlerOptions,
|
|
2598
2583
|
): Effect.Effect<
|
|
2599
2584
|
SimulateCustomPolicyCommandOutput,
|
|
2600
|
-
Cause.
|
|
2585
|
+
Cause.TimeoutError | SdkError | InvalidInputError | PolicyEvaluationError
|
|
2601
2586
|
>;
|
|
2602
2587
|
|
|
2603
2588
|
/**
|
|
@@ -2608,7 +2593,7 @@ interface IAMService$ {
|
|
|
2608
2593
|
options?: HttpHandlerOptions,
|
|
2609
2594
|
): Effect.Effect<
|
|
2610
2595
|
SimulatePrincipalPolicyCommandOutput,
|
|
2611
|
-
Cause.
|
|
2596
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError | PolicyEvaluationError
|
|
2612
2597
|
>;
|
|
2613
2598
|
|
|
2614
2599
|
/**
|
|
@@ -2619,7 +2604,7 @@ interface IAMService$ {
|
|
|
2619
2604
|
options?: HttpHandlerOptions,
|
|
2620
2605
|
): Effect.Effect<
|
|
2621
2606
|
TagInstanceProfileCommandOutput,
|
|
2622
|
-
| Cause.
|
|
2607
|
+
| Cause.TimeoutError
|
|
2623
2608
|
| SdkError
|
|
2624
2609
|
| ConcurrentModificationError
|
|
2625
2610
|
| InvalidInputError
|
|
@@ -2636,7 +2621,7 @@ interface IAMService$ {
|
|
|
2636
2621
|
options?: HttpHandlerOptions,
|
|
2637
2622
|
): Effect.Effect<
|
|
2638
2623
|
TagMFADeviceCommandOutput,
|
|
2639
|
-
| Cause.
|
|
2624
|
+
| Cause.TimeoutError
|
|
2640
2625
|
| SdkError
|
|
2641
2626
|
| ConcurrentModificationError
|
|
2642
2627
|
| InvalidInputError
|
|
@@ -2653,7 +2638,7 @@ interface IAMService$ {
|
|
|
2653
2638
|
options?: HttpHandlerOptions,
|
|
2654
2639
|
): Effect.Effect<
|
|
2655
2640
|
TagOpenIDConnectProviderCommandOutput,
|
|
2656
|
-
| Cause.
|
|
2641
|
+
| Cause.TimeoutError
|
|
2657
2642
|
| SdkError
|
|
2658
2643
|
| ConcurrentModificationError
|
|
2659
2644
|
| InvalidInputError
|
|
@@ -2670,7 +2655,7 @@ interface IAMService$ {
|
|
|
2670
2655
|
options?: HttpHandlerOptions,
|
|
2671
2656
|
): Effect.Effect<
|
|
2672
2657
|
TagPolicyCommandOutput,
|
|
2673
|
-
| Cause.
|
|
2658
|
+
| Cause.TimeoutError
|
|
2674
2659
|
| SdkError
|
|
2675
2660
|
| ConcurrentModificationError
|
|
2676
2661
|
| InvalidInputError
|
|
@@ -2687,7 +2672,7 @@ interface IAMService$ {
|
|
|
2687
2672
|
options?: HttpHandlerOptions,
|
|
2688
2673
|
): Effect.Effect<
|
|
2689
2674
|
TagRoleCommandOutput,
|
|
2690
|
-
| Cause.
|
|
2675
|
+
| Cause.TimeoutError
|
|
2691
2676
|
| SdkError
|
|
2692
2677
|
| ConcurrentModificationError
|
|
2693
2678
|
| InvalidInputError
|
|
@@ -2704,7 +2689,7 @@ interface IAMService$ {
|
|
|
2704
2689
|
options?: HttpHandlerOptions,
|
|
2705
2690
|
): Effect.Effect<
|
|
2706
2691
|
TagSAMLProviderCommandOutput,
|
|
2707
|
-
| Cause.
|
|
2692
|
+
| Cause.TimeoutError
|
|
2708
2693
|
| SdkError
|
|
2709
2694
|
| ConcurrentModificationError
|
|
2710
2695
|
| InvalidInputError
|
|
@@ -2721,7 +2706,7 @@ interface IAMService$ {
|
|
|
2721
2706
|
options?: HttpHandlerOptions,
|
|
2722
2707
|
): Effect.Effect<
|
|
2723
2708
|
TagServerCertificateCommandOutput,
|
|
2724
|
-
| Cause.
|
|
2709
|
+
| Cause.TimeoutError
|
|
2725
2710
|
| SdkError
|
|
2726
2711
|
| ConcurrentModificationError
|
|
2727
2712
|
| InvalidInputError
|
|
@@ -2738,7 +2723,7 @@ interface IAMService$ {
|
|
|
2738
2723
|
options?: HttpHandlerOptions,
|
|
2739
2724
|
): Effect.Effect<
|
|
2740
2725
|
TagUserCommandOutput,
|
|
2741
|
-
| Cause.
|
|
2726
|
+
| Cause.TimeoutError
|
|
2742
2727
|
| SdkError
|
|
2743
2728
|
| ConcurrentModificationError
|
|
2744
2729
|
| InvalidInputError
|
|
@@ -2755,7 +2740,7 @@ interface IAMService$ {
|
|
|
2755
2740
|
options?: HttpHandlerOptions,
|
|
2756
2741
|
): Effect.Effect<
|
|
2757
2742
|
UntagInstanceProfileCommandOutput,
|
|
2758
|
-
| Cause.
|
|
2743
|
+
| Cause.TimeoutError
|
|
2759
2744
|
| SdkError
|
|
2760
2745
|
| ConcurrentModificationError
|
|
2761
2746
|
| InvalidInputError
|
|
@@ -2771,7 +2756,7 @@ interface IAMService$ {
|
|
|
2771
2756
|
options?: HttpHandlerOptions,
|
|
2772
2757
|
): Effect.Effect<
|
|
2773
2758
|
UntagMFADeviceCommandOutput,
|
|
2774
|
-
| Cause.
|
|
2759
|
+
| Cause.TimeoutError
|
|
2775
2760
|
| SdkError
|
|
2776
2761
|
| ConcurrentModificationError
|
|
2777
2762
|
| InvalidInputError
|
|
@@ -2787,7 +2772,7 @@ interface IAMService$ {
|
|
|
2787
2772
|
options?: HttpHandlerOptions,
|
|
2788
2773
|
): Effect.Effect<
|
|
2789
2774
|
UntagOpenIDConnectProviderCommandOutput,
|
|
2790
|
-
| Cause.
|
|
2775
|
+
| Cause.TimeoutError
|
|
2791
2776
|
| SdkError
|
|
2792
2777
|
| ConcurrentModificationError
|
|
2793
2778
|
| InvalidInputError
|
|
@@ -2803,7 +2788,7 @@ interface IAMService$ {
|
|
|
2803
2788
|
options?: HttpHandlerOptions,
|
|
2804
2789
|
): Effect.Effect<
|
|
2805
2790
|
UntagPolicyCommandOutput,
|
|
2806
|
-
| Cause.
|
|
2791
|
+
| Cause.TimeoutError
|
|
2807
2792
|
| SdkError
|
|
2808
2793
|
| ConcurrentModificationError
|
|
2809
2794
|
| InvalidInputError
|
|
@@ -2819,7 +2804,7 @@ interface IAMService$ {
|
|
|
2819
2804
|
options?: HttpHandlerOptions,
|
|
2820
2805
|
): Effect.Effect<
|
|
2821
2806
|
UntagRoleCommandOutput,
|
|
2822
|
-
Cause.
|
|
2807
|
+
Cause.TimeoutError | SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
|
|
2823
2808
|
>;
|
|
2824
2809
|
|
|
2825
2810
|
/**
|
|
@@ -2830,7 +2815,7 @@ interface IAMService$ {
|
|
|
2830
2815
|
options?: HttpHandlerOptions,
|
|
2831
2816
|
): Effect.Effect<
|
|
2832
2817
|
UntagSAMLProviderCommandOutput,
|
|
2833
|
-
| Cause.
|
|
2818
|
+
| Cause.TimeoutError
|
|
2834
2819
|
| SdkError
|
|
2835
2820
|
| ConcurrentModificationError
|
|
2836
2821
|
| InvalidInputError
|
|
@@ -2846,7 +2831,7 @@ interface IAMService$ {
|
|
|
2846
2831
|
options?: HttpHandlerOptions,
|
|
2847
2832
|
): Effect.Effect<
|
|
2848
2833
|
UntagServerCertificateCommandOutput,
|
|
2849
|
-
| Cause.
|
|
2834
|
+
| Cause.TimeoutError
|
|
2850
2835
|
| SdkError
|
|
2851
2836
|
| ConcurrentModificationError
|
|
2852
2837
|
| InvalidInputError
|
|
@@ -2862,7 +2847,7 @@ interface IAMService$ {
|
|
|
2862
2847
|
options?: HttpHandlerOptions,
|
|
2863
2848
|
): Effect.Effect<
|
|
2864
2849
|
UntagUserCommandOutput,
|
|
2865
|
-
Cause.
|
|
2850
|
+
Cause.TimeoutError | SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
|
|
2866
2851
|
>;
|
|
2867
2852
|
|
|
2868
2853
|
/**
|
|
@@ -2873,7 +2858,7 @@ interface IAMService$ {
|
|
|
2873
2858
|
options?: HttpHandlerOptions,
|
|
2874
2859
|
): Effect.Effect<
|
|
2875
2860
|
UpdateAccessKeyCommandOutput,
|
|
2876
|
-
Cause.
|
|
2861
|
+
Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2877
2862
|
>;
|
|
2878
2863
|
|
|
2879
2864
|
/**
|
|
@@ -2884,7 +2869,7 @@ interface IAMService$ {
|
|
|
2884
2869
|
options?: HttpHandlerOptions,
|
|
2885
2870
|
): Effect.Effect<
|
|
2886
2871
|
UpdateAccountPasswordPolicyCommandOutput,
|
|
2887
|
-
| Cause.
|
|
2872
|
+
| Cause.TimeoutError
|
|
2888
2873
|
| SdkError
|
|
2889
2874
|
| LimitExceededError
|
|
2890
2875
|
| MalformedPolicyDocumentError
|
|
@@ -2900,7 +2885,7 @@ interface IAMService$ {
|
|
|
2900
2885
|
options?: HttpHandlerOptions,
|
|
2901
2886
|
): Effect.Effect<
|
|
2902
2887
|
UpdateAssumeRolePolicyCommandOutput,
|
|
2903
|
-
| Cause.
|
|
2888
|
+
| Cause.TimeoutError
|
|
2904
2889
|
| SdkError
|
|
2905
2890
|
| LimitExceededError
|
|
2906
2891
|
| MalformedPolicyDocumentError
|
|
@@ -2917,7 +2902,7 @@ interface IAMService$ {
|
|
|
2917
2902
|
options?: HttpHandlerOptions,
|
|
2918
2903
|
): Effect.Effect<
|
|
2919
2904
|
UpdateDelegationRequestCommandOutput,
|
|
2920
|
-
| Cause.
|
|
2905
|
+
| Cause.TimeoutError
|
|
2921
2906
|
| SdkError
|
|
2922
2907
|
| ConcurrentModificationError
|
|
2923
2908
|
| InvalidInputError
|
|
@@ -2933,7 +2918,7 @@ interface IAMService$ {
|
|
|
2933
2918
|
options?: HttpHandlerOptions,
|
|
2934
2919
|
): Effect.Effect<
|
|
2935
2920
|
UpdateGroupCommandOutput,
|
|
2936
|
-
| Cause.
|
|
2921
|
+
| Cause.TimeoutError
|
|
2937
2922
|
| SdkError
|
|
2938
2923
|
| EntityAlreadyExistsError
|
|
2939
2924
|
| LimitExceededError
|
|
@@ -2949,7 +2934,7 @@ interface IAMService$ {
|
|
|
2949
2934
|
options?: HttpHandlerOptions,
|
|
2950
2935
|
): Effect.Effect<
|
|
2951
2936
|
UpdateLoginProfileCommandOutput,
|
|
2952
|
-
| Cause.
|
|
2937
|
+
| Cause.TimeoutError
|
|
2953
2938
|
| SdkError
|
|
2954
2939
|
| EntityTemporarilyUnmodifiableError
|
|
2955
2940
|
| LimitExceededError
|
|
@@ -2966,7 +2951,7 @@ interface IAMService$ {
|
|
|
2966
2951
|
options?: HttpHandlerOptions,
|
|
2967
2952
|
): Effect.Effect<
|
|
2968
2953
|
UpdateOpenIDConnectProviderThumbprintCommandOutput,
|
|
2969
|
-
| Cause.
|
|
2954
|
+
| Cause.TimeoutError
|
|
2970
2955
|
| SdkError
|
|
2971
2956
|
| ConcurrentModificationError
|
|
2972
2957
|
| InvalidInputError
|
|
@@ -2982,7 +2967,7 @@ interface IAMService$ {
|
|
|
2982
2967
|
options?: HttpHandlerOptions,
|
|
2983
2968
|
): Effect.Effect<
|
|
2984
2969
|
UpdateRoleCommandOutput,
|
|
2985
|
-
Cause.
|
|
2970
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
2986
2971
|
>;
|
|
2987
2972
|
|
|
2988
2973
|
/**
|
|
@@ -2993,7 +2978,7 @@ interface IAMService$ {
|
|
|
2993
2978
|
options?: HttpHandlerOptions,
|
|
2994
2979
|
): Effect.Effect<
|
|
2995
2980
|
UpdateRoleDescriptionCommandOutput,
|
|
2996
|
-
Cause.
|
|
2981
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
2997
2982
|
>;
|
|
2998
2983
|
|
|
2999
2984
|
/**
|
|
@@ -3004,7 +2989,7 @@ interface IAMService$ {
|
|
|
3004
2989
|
options?: HttpHandlerOptions,
|
|
3005
2990
|
): Effect.Effect<
|
|
3006
2991
|
UpdateSAMLProviderCommandOutput,
|
|
3007
|
-
| Cause.
|
|
2992
|
+
| Cause.TimeoutError
|
|
3008
2993
|
| SdkError
|
|
3009
2994
|
| ConcurrentModificationError
|
|
3010
2995
|
| InvalidInputError
|
|
@@ -3021,7 +3006,7 @@ interface IAMService$ {
|
|
|
3021
3006
|
options?: HttpHandlerOptions,
|
|
3022
3007
|
): Effect.Effect<
|
|
3023
3008
|
UpdateSSHPublicKeyCommandOutput,
|
|
3024
|
-
Cause.
|
|
3009
|
+
Cause.TimeoutError | SdkError | InvalidInputError | NoSuchEntityError
|
|
3025
3010
|
>;
|
|
3026
3011
|
|
|
3027
3012
|
/**
|
|
@@ -3032,7 +3017,7 @@ interface IAMService$ {
|
|
|
3032
3017
|
options?: HttpHandlerOptions,
|
|
3033
3018
|
): Effect.Effect<
|
|
3034
3019
|
UpdateServerCertificateCommandOutput,
|
|
3035
|
-
| Cause.
|
|
3020
|
+
| Cause.TimeoutError
|
|
3036
3021
|
| SdkError
|
|
3037
3022
|
| EntityAlreadyExistsError
|
|
3038
3023
|
| LimitExceededError
|
|
@@ -3048,7 +3033,7 @@ interface IAMService$ {
|
|
|
3048
3033
|
options?: HttpHandlerOptions,
|
|
3049
3034
|
): Effect.Effect<
|
|
3050
3035
|
UpdateServiceSpecificCredentialCommandOutput,
|
|
3051
|
-
Cause.
|
|
3036
|
+
Cause.TimeoutError | SdkError | NoSuchEntityError
|
|
3052
3037
|
>;
|
|
3053
3038
|
|
|
3054
3039
|
/**
|
|
@@ -3059,7 +3044,7 @@ interface IAMService$ {
|
|
|
3059
3044
|
options?: HttpHandlerOptions,
|
|
3060
3045
|
): Effect.Effect<
|
|
3061
3046
|
UpdateSigningCertificateCommandOutput,
|
|
3062
|
-
Cause.
|
|
3047
|
+
Cause.TimeoutError | SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
3063
3048
|
>;
|
|
3064
3049
|
|
|
3065
3050
|
/**
|
|
@@ -3070,7 +3055,7 @@ interface IAMService$ {
|
|
|
3070
3055
|
options?: HttpHandlerOptions,
|
|
3071
3056
|
): Effect.Effect<
|
|
3072
3057
|
UpdateUserCommandOutput,
|
|
3073
|
-
| Cause.
|
|
3058
|
+
| Cause.TimeoutError
|
|
3074
3059
|
| SdkError
|
|
3075
3060
|
| ConcurrentModificationError
|
|
3076
3061
|
| EntityAlreadyExistsError
|
|
@@ -3088,7 +3073,7 @@ interface IAMService$ {
|
|
|
3088
3073
|
options?: HttpHandlerOptions,
|
|
3089
3074
|
): Effect.Effect<
|
|
3090
3075
|
UploadSSHPublicKeyCommandOutput,
|
|
3091
|
-
| Cause.
|
|
3076
|
+
| Cause.TimeoutError
|
|
3092
3077
|
| SdkError
|
|
3093
3078
|
| DuplicateSSHPublicKeyError
|
|
3094
3079
|
| InvalidPublicKeyError
|
|
@@ -3105,7 +3090,7 @@ interface IAMService$ {
|
|
|
3105
3090
|
options?: HttpHandlerOptions,
|
|
3106
3091
|
): Effect.Effect<
|
|
3107
3092
|
UploadServerCertificateCommandOutput,
|
|
3108
|
-
| Cause.
|
|
3093
|
+
| Cause.TimeoutError
|
|
3109
3094
|
| SdkError
|
|
3110
3095
|
| ConcurrentModificationError
|
|
3111
3096
|
| EntityAlreadyExistsError
|
|
@@ -3124,7 +3109,7 @@ interface IAMService$ {
|
|
|
3124
3109
|
options?: HttpHandlerOptions,
|
|
3125
3110
|
): Effect.Effect<
|
|
3126
3111
|
UploadSigningCertificateCommandOutput,
|
|
3127
|
-
| Cause.
|
|
3112
|
+
| Cause.TimeoutError
|
|
3128
3113
|
| SdkError
|
|
3129
3114
|
| ConcurrentModificationError
|
|
3130
3115
|
| DuplicateCertificateError
|
|
@@ -3158,10 +3143,10 @@ export const makeIAMService = Effect.gen(function*() {
|
|
|
3158
3143
|
* @since 1.0.0
|
|
3159
3144
|
* @category models
|
|
3160
3145
|
*/
|
|
3161
|
-
export class IAMService extends
|
|
3146
|
+
export class IAMService extends ServiceMap.Service<
|
|
3162
3147
|
IAMService,
|
|
3163
3148
|
IAMService$
|
|
3164
|
-
>() {
|
|
3149
|
+
>()("@effect-aws/client-iam/IAMService") {
|
|
3165
3150
|
static readonly defaultLayer = Layer.effect(this, makeIAMService).pipe(Layer.provide(Instance.layer));
|
|
3166
3151
|
static readonly layer = (config: IAMService.Config) =>
|
|
3167
3152
|
Layer.effect(this, makeIAMService).pipe(
|