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