@effect-aws/client-iam 1.7.0 → 1.9.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/Errors/package.json +6 -0
- package/IAMClientInstance/package.json +6 -0
- package/IAMService/package.json +6 -0
- package/IAMServiceConfig/package.json +6 -0
- package/{lib → dist/cjs}/Errors.d.ts +6 -11
- package/dist/cjs/Errors.d.ts.map +1 -0
- package/dist/cjs/Errors.js +41 -0
- package/dist/cjs/Errors.js.map +1 -0
- package/dist/cjs/IAMClientInstance.d.ts +24 -0
- package/dist/cjs/IAMClientInstance.d.ts.map +1 -0
- package/dist/cjs/IAMClientInstance.js +50 -0
- package/dist/cjs/IAMClientInstance.js.map +1 -0
- package/{lib → dist/cjs}/IAMService.d.ts +16 -38
- package/dist/cjs/IAMService.d.ts.map +1 -0
- package/dist/cjs/IAMService.js +220 -0
- package/dist/cjs/IAMService.js.map +1 -0
- package/dist/cjs/IAMServiceConfig.d.ts +25 -0
- package/dist/cjs/IAMServiceConfig.d.ts.map +1 -0
- package/dist/cjs/IAMServiceConfig.js +35 -0
- package/dist/cjs/IAMServiceConfig.js.map +1 -0
- package/dist/cjs/index.d.ts +39 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +56 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/dts/Errors.d.ts +40 -0
- package/dist/dts/Errors.d.ts.map +1 -0
- package/dist/dts/IAMClientInstance.d.ts +24 -0
- package/dist/dts/IAMClientInstance.d.ts.map +1 -0
- package/dist/dts/IAMService.d.ts +863 -0
- package/dist/dts/IAMService.d.ts.map +1 -0
- package/dist/dts/IAMServiceConfig.d.ts +25 -0
- package/dist/dts/IAMServiceConfig.d.ts.map +1 -0
- package/dist/dts/index.d.ts +39 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/esm/Errors.js +38 -0
- package/dist/esm/Errors.js.map +1 -0
- package/dist/esm/IAMClientInstance.js +23 -0
- package/dist/esm/IAMClientInstance.js.map +1 -0
- package/dist/esm/IAMService.js +193 -0
- package/dist/esm/IAMService.js.map +1 -0
- package/dist/esm/IAMServiceConfig.js +31 -0
- package/dist/esm/IAMServiceConfig.js.map +1 -0
- package/dist/esm/index.js +27 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/package.json +4 -0
- package/package.json +60 -43
- package/src/Errors.ts +112 -0
- package/src/IAMClientInstance.ts +33 -0
- package/src/IAMService.ts +2790 -0
- package/src/IAMServiceConfig.ts +51 -0
- package/src/index.ts +44 -0
- package/CHANGELOG.md +0 -73
- package/docgen.json +0 -8
- package/lib/Errors.js +0 -41
- package/lib/IAMClientInstance.d.ts +0 -31
- package/lib/IAMClientInstance.js +0 -57
- package/lib/IAMClientInstanceConfig.d.ts +0 -23
- package/lib/IAMClientInstanceConfig.js +0 -44
- package/lib/IAMService.js +0 -252
- package/lib/esm/Errors.js +0 -38
- package/lib/esm/IAMClientInstance.js +0 -30
- package/lib/esm/IAMClientInstanceConfig.js +0 -40
- package/lib/esm/IAMService.js +0 -248
- package/lib/esm/index.js +0 -5
- package/lib/index.d.ts +0 -4
- package/lib/index.js +0 -21
- package/project.json +0 -77
- package/vitest.config.ts +0 -3
|
@@ -0,0 +1,2790 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import {
|
|
5
|
+
AddClientIDToOpenIDConnectProviderCommand,
|
|
6
|
+
type AddClientIDToOpenIDConnectProviderCommandInput,
|
|
7
|
+
type AddClientIDToOpenIDConnectProviderCommandOutput,
|
|
8
|
+
AddRoleToInstanceProfileCommand,
|
|
9
|
+
type AddRoleToInstanceProfileCommandInput,
|
|
10
|
+
type AddRoleToInstanceProfileCommandOutput,
|
|
11
|
+
AddUserToGroupCommand,
|
|
12
|
+
type AddUserToGroupCommandInput,
|
|
13
|
+
type AddUserToGroupCommandOutput,
|
|
14
|
+
AttachGroupPolicyCommand,
|
|
15
|
+
type AttachGroupPolicyCommandInput,
|
|
16
|
+
type AttachGroupPolicyCommandOutput,
|
|
17
|
+
AttachRolePolicyCommand,
|
|
18
|
+
type AttachRolePolicyCommandInput,
|
|
19
|
+
type AttachRolePolicyCommandOutput,
|
|
20
|
+
AttachUserPolicyCommand,
|
|
21
|
+
type AttachUserPolicyCommandInput,
|
|
22
|
+
type AttachUserPolicyCommandOutput,
|
|
23
|
+
ChangePasswordCommand,
|
|
24
|
+
type ChangePasswordCommandInput,
|
|
25
|
+
type ChangePasswordCommandOutput,
|
|
26
|
+
CreateAccessKeyCommand,
|
|
27
|
+
type CreateAccessKeyCommandInput,
|
|
28
|
+
type CreateAccessKeyCommandOutput,
|
|
29
|
+
CreateAccountAliasCommand,
|
|
30
|
+
type CreateAccountAliasCommandInput,
|
|
31
|
+
type CreateAccountAliasCommandOutput,
|
|
32
|
+
CreateGroupCommand,
|
|
33
|
+
type CreateGroupCommandInput,
|
|
34
|
+
type CreateGroupCommandOutput,
|
|
35
|
+
CreateInstanceProfileCommand,
|
|
36
|
+
type CreateInstanceProfileCommandInput,
|
|
37
|
+
type CreateInstanceProfileCommandOutput,
|
|
38
|
+
CreateLoginProfileCommand,
|
|
39
|
+
type CreateLoginProfileCommandInput,
|
|
40
|
+
type CreateLoginProfileCommandOutput,
|
|
41
|
+
CreateOpenIDConnectProviderCommand,
|
|
42
|
+
type CreateOpenIDConnectProviderCommandInput,
|
|
43
|
+
type CreateOpenIDConnectProviderCommandOutput,
|
|
44
|
+
CreatePolicyCommand,
|
|
45
|
+
type CreatePolicyCommandInput,
|
|
46
|
+
type CreatePolicyCommandOutput,
|
|
47
|
+
CreatePolicyVersionCommand,
|
|
48
|
+
type CreatePolicyVersionCommandInput,
|
|
49
|
+
type CreatePolicyVersionCommandOutput,
|
|
50
|
+
CreateRoleCommand,
|
|
51
|
+
type CreateRoleCommandInput,
|
|
52
|
+
type CreateRoleCommandOutput,
|
|
53
|
+
CreateSAMLProviderCommand,
|
|
54
|
+
type CreateSAMLProviderCommandInput,
|
|
55
|
+
type CreateSAMLProviderCommandOutput,
|
|
56
|
+
CreateServiceLinkedRoleCommand,
|
|
57
|
+
type CreateServiceLinkedRoleCommandInput,
|
|
58
|
+
type CreateServiceLinkedRoleCommandOutput,
|
|
59
|
+
CreateServiceSpecificCredentialCommand,
|
|
60
|
+
type CreateServiceSpecificCredentialCommandInput,
|
|
61
|
+
type CreateServiceSpecificCredentialCommandOutput,
|
|
62
|
+
CreateUserCommand,
|
|
63
|
+
type CreateUserCommandInput,
|
|
64
|
+
type CreateUserCommandOutput,
|
|
65
|
+
CreateVirtualMFADeviceCommand,
|
|
66
|
+
type CreateVirtualMFADeviceCommandInput,
|
|
67
|
+
type CreateVirtualMFADeviceCommandOutput,
|
|
68
|
+
DeactivateMFADeviceCommand,
|
|
69
|
+
type DeactivateMFADeviceCommandInput,
|
|
70
|
+
type DeactivateMFADeviceCommandOutput,
|
|
71
|
+
DeleteAccessKeyCommand,
|
|
72
|
+
type DeleteAccessKeyCommandInput,
|
|
73
|
+
type DeleteAccessKeyCommandOutput,
|
|
74
|
+
DeleteAccountAliasCommand,
|
|
75
|
+
type DeleteAccountAliasCommandInput,
|
|
76
|
+
type DeleteAccountAliasCommandOutput,
|
|
77
|
+
DeleteAccountPasswordPolicyCommand,
|
|
78
|
+
type DeleteAccountPasswordPolicyCommandInput,
|
|
79
|
+
type DeleteAccountPasswordPolicyCommandOutput,
|
|
80
|
+
DeleteGroupCommand,
|
|
81
|
+
type DeleteGroupCommandInput,
|
|
82
|
+
type DeleteGroupCommandOutput,
|
|
83
|
+
DeleteGroupPolicyCommand,
|
|
84
|
+
type DeleteGroupPolicyCommandInput,
|
|
85
|
+
type DeleteGroupPolicyCommandOutput,
|
|
86
|
+
DeleteInstanceProfileCommand,
|
|
87
|
+
type DeleteInstanceProfileCommandInput,
|
|
88
|
+
type DeleteInstanceProfileCommandOutput,
|
|
89
|
+
DeleteLoginProfileCommand,
|
|
90
|
+
type DeleteLoginProfileCommandInput,
|
|
91
|
+
type DeleteLoginProfileCommandOutput,
|
|
92
|
+
DeleteOpenIDConnectProviderCommand,
|
|
93
|
+
type DeleteOpenIDConnectProviderCommandInput,
|
|
94
|
+
type DeleteOpenIDConnectProviderCommandOutput,
|
|
95
|
+
DeletePolicyCommand,
|
|
96
|
+
type DeletePolicyCommandInput,
|
|
97
|
+
type DeletePolicyCommandOutput,
|
|
98
|
+
DeletePolicyVersionCommand,
|
|
99
|
+
type DeletePolicyVersionCommandInput,
|
|
100
|
+
type DeletePolicyVersionCommandOutput,
|
|
101
|
+
DeleteRoleCommand,
|
|
102
|
+
type DeleteRoleCommandInput,
|
|
103
|
+
type DeleteRoleCommandOutput,
|
|
104
|
+
DeleteRolePermissionsBoundaryCommand,
|
|
105
|
+
type DeleteRolePermissionsBoundaryCommandInput,
|
|
106
|
+
type DeleteRolePermissionsBoundaryCommandOutput,
|
|
107
|
+
DeleteRolePolicyCommand,
|
|
108
|
+
type DeleteRolePolicyCommandInput,
|
|
109
|
+
type DeleteRolePolicyCommandOutput,
|
|
110
|
+
DeleteSAMLProviderCommand,
|
|
111
|
+
type DeleteSAMLProviderCommandInput,
|
|
112
|
+
type DeleteSAMLProviderCommandOutput,
|
|
113
|
+
DeleteServerCertificateCommand,
|
|
114
|
+
type DeleteServerCertificateCommandInput,
|
|
115
|
+
type DeleteServerCertificateCommandOutput,
|
|
116
|
+
DeleteServiceLinkedRoleCommand,
|
|
117
|
+
type DeleteServiceLinkedRoleCommandInput,
|
|
118
|
+
type DeleteServiceLinkedRoleCommandOutput,
|
|
119
|
+
DeleteServiceSpecificCredentialCommand,
|
|
120
|
+
type DeleteServiceSpecificCredentialCommandInput,
|
|
121
|
+
type DeleteServiceSpecificCredentialCommandOutput,
|
|
122
|
+
DeleteSigningCertificateCommand,
|
|
123
|
+
type DeleteSigningCertificateCommandInput,
|
|
124
|
+
type DeleteSigningCertificateCommandOutput,
|
|
125
|
+
DeleteSSHPublicKeyCommand,
|
|
126
|
+
type DeleteSSHPublicKeyCommandInput,
|
|
127
|
+
type DeleteSSHPublicKeyCommandOutput,
|
|
128
|
+
DeleteUserCommand,
|
|
129
|
+
type DeleteUserCommandInput,
|
|
130
|
+
type DeleteUserCommandOutput,
|
|
131
|
+
DeleteUserPermissionsBoundaryCommand,
|
|
132
|
+
type DeleteUserPermissionsBoundaryCommandInput,
|
|
133
|
+
type DeleteUserPermissionsBoundaryCommandOutput,
|
|
134
|
+
DeleteUserPolicyCommand,
|
|
135
|
+
type DeleteUserPolicyCommandInput,
|
|
136
|
+
type DeleteUserPolicyCommandOutput,
|
|
137
|
+
DeleteVirtualMFADeviceCommand,
|
|
138
|
+
type DeleteVirtualMFADeviceCommandInput,
|
|
139
|
+
type DeleteVirtualMFADeviceCommandOutput,
|
|
140
|
+
DetachGroupPolicyCommand,
|
|
141
|
+
type DetachGroupPolicyCommandInput,
|
|
142
|
+
type DetachGroupPolicyCommandOutput,
|
|
143
|
+
DetachRolePolicyCommand,
|
|
144
|
+
type DetachRolePolicyCommandInput,
|
|
145
|
+
type DetachRolePolicyCommandOutput,
|
|
146
|
+
DetachUserPolicyCommand,
|
|
147
|
+
type DetachUserPolicyCommandInput,
|
|
148
|
+
type DetachUserPolicyCommandOutput,
|
|
149
|
+
DisableOrganizationsRootCredentialsManagementCommand,
|
|
150
|
+
type DisableOrganizationsRootCredentialsManagementCommandInput,
|
|
151
|
+
type DisableOrganizationsRootCredentialsManagementCommandOutput,
|
|
152
|
+
DisableOrganizationsRootSessionsCommand,
|
|
153
|
+
type DisableOrganizationsRootSessionsCommandInput,
|
|
154
|
+
type DisableOrganizationsRootSessionsCommandOutput,
|
|
155
|
+
EnableMFADeviceCommand,
|
|
156
|
+
type EnableMFADeviceCommandInput,
|
|
157
|
+
type EnableMFADeviceCommandOutput,
|
|
158
|
+
EnableOrganizationsRootCredentialsManagementCommand,
|
|
159
|
+
type EnableOrganizationsRootCredentialsManagementCommandInput,
|
|
160
|
+
type EnableOrganizationsRootCredentialsManagementCommandOutput,
|
|
161
|
+
EnableOrganizationsRootSessionsCommand,
|
|
162
|
+
type EnableOrganizationsRootSessionsCommandInput,
|
|
163
|
+
type EnableOrganizationsRootSessionsCommandOutput,
|
|
164
|
+
GenerateCredentialReportCommand,
|
|
165
|
+
type GenerateCredentialReportCommandInput,
|
|
166
|
+
type GenerateCredentialReportCommandOutput,
|
|
167
|
+
GenerateOrganizationsAccessReportCommand,
|
|
168
|
+
type GenerateOrganizationsAccessReportCommandInput,
|
|
169
|
+
type GenerateOrganizationsAccessReportCommandOutput,
|
|
170
|
+
GenerateServiceLastAccessedDetailsCommand,
|
|
171
|
+
type GenerateServiceLastAccessedDetailsCommandInput,
|
|
172
|
+
type GenerateServiceLastAccessedDetailsCommandOutput,
|
|
173
|
+
GetAccessKeyLastUsedCommand,
|
|
174
|
+
type GetAccessKeyLastUsedCommandInput,
|
|
175
|
+
type GetAccessKeyLastUsedCommandOutput,
|
|
176
|
+
GetAccountAuthorizationDetailsCommand,
|
|
177
|
+
type GetAccountAuthorizationDetailsCommandInput,
|
|
178
|
+
type GetAccountAuthorizationDetailsCommandOutput,
|
|
179
|
+
GetAccountPasswordPolicyCommand,
|
|
180
|
+
type GetAccountPasswordPolicyCommandInput,
|
|
181
|
+
type GetAccountPasswordPolicyCommandOutput,
|
|
182
|
+
GetAccountSummaryCommand,
|
|
183
|
+
type GetAccountSummaryCommandInput,
|
|
184
|
+
type GetAccountSummaryCommandOutput,
|
|
185
|
+
GetContextKeysForCustomPolicyCommand,
|
|
186
|
+
type GetContextKeysForCustomPolicyCommandInput,
|
|
187
|
+
type GetContextKeysForCustomPolicyCommandOutput,
|
|
188
|
+
GetContextKeysForPrincipalPolicyCommand,
|
|
189
|
+
type GetContextKeysForPrincipalPolicyCommandInput,
|
|
190
|
+
type GetContextKeysForPrincipalPolicyCommandOutput,
|
|
191
|
+
GetCredentialReportCommand,
|
|
192
|
+
type GetCredentialReportCommandInput,
|
|
193
|
+
type GetCredentialReportCommandOutput,
|
|
194
|
+
GetGroupCommand,
|
|
195
|
+
type GetGroupCommandInput,
|
|
196
|
+
type GetGroupCommandOutput,
|
|
197
|
+
GetGroupPolicyCommand,
|
|
198
|
+
type GetGroupPolicyCommandInput,
|
|
199
|
+
type GetGroupPolicyCommandOutput,
|
|
200
|
+
GetInstanceProfileCommand,
|
|
201
|
+
type GetInstanceProfileCommandInput,
|
|
202
|
+
type GetInstanceProfileCommandOutput,
|
|
203
|
+
GetLoginProfileCommand,
|
|
204
|
+
type GetLoginProfileCommandInput,
|
|
205
|
+
type GetLoginProfileCommandOutput,
|
|
206
|
+
GetMFADeviceCommand,
|
|
207
|
+
type GetMFADeviceCommandInput,
|
|
208
|
+
type GetMFADeviceCommandOutput,
|
|
209
|
+
GetOpenIDConnectProviderCommand,
|
|
210
|
+
type GetOpenIDConnectProviderCommandInput,
|
|
211
|
+
type GetOpenIDConnectProviderCommandOutput,
|
|
212
|
+
GetOrganizationsAccessReportCommand,
|
|
213
|
+
type GetOrganizationsAccessReportCommandInput,
|
|
214
|
+
type GetOrganizationsAccessReportCommandOutput,
|
|
215
|
+
GetPolicyCommand,
|
|
216
|
+
type GetPolicyCommandInput,
|
|
217
|
+
type GetPolicyCommandOutput,
|
|
218
|
+
GetPolicyVersionCommand,
|
|
219
|
+
type GetPolicyVersionCommandInput,
|
|
220
|
+
type GetPolicyVersionCommandOutput,
|
|
221
|
+
GetRoleCommand,
|
|
222
|
+
type GetRoleCommandInput,
|
|
223
|
+
type GetRoleCommandOutput,
|
|
224
|
+
GetRolePolicyCommand,
|
|
225
|
+
type GetRolePolicyCommandInput,
|
|
226
|
+
type GetRolePolicyCommandOutput,
|
|
227
|
+
GetSAMLProviderCommand,
|
|
228
|
+
type GetSAMLProviderCommandInput,
|
|
229
|
+
type GetSAMLProviderCommandOutput,
|
|
230
|
+
GetServerCertificateCommand,
|
|
231
|
+
type GetServerCertificateCommandInput,
|
|
232
|
+
type GetServerCertificateCommandOutput,
|
|
233
|
+
GetServiceLastAccessedDetailsCommand,
|
|
234
|
+
type GetServiceLastAccessedDetailsCommandInput,
|
|
235
|
+
type GetServiceLastAccessedDetailsCommandOutput,
|
|
236
|
+
GetServiceLastAccessedDetailsWithEntitiesCommand,
|
|
237
|
+
type GetServiceLastAccessedDetailsWithEntitiesCommandInput,
|
|
238
|
+
type GetServiceLastAccessedDetailsWithEntitiesCommandOutput,
|
|
239
|
+
GetServiceLinkedRoleDeletionStatusCommand,
|
|
240
|
+
type GetServiceLinkedRoleDeletionStatusCommandInput,
|
|
241
|
+
type GetServiceLinkedRoleDeletionStatusCommandOutput,
|
|
242
|
+
GetSSHPublicKeyCommand,
|
|
243
|
+
type GetSSHPublicKeyCommandInput,
|
|
244
|
+
type GetSSHPublicKeyCommandOutput,
|
|
245
|
+
GetUserCommand,
|
|
246
|
+
type GetUserCommandInput,
|
|
247
|
+
type GetUserCommandOutput,
|
|
248
|
+
GetUserPolicyCommand,
|
|
249
|
+
type GetUserPolicyCommandInput,
|
|
250
|
+
type GetUserPolicyCommandOutput,
|
|
251
|
+
type IAMClient,
|
|
252
|
+
type IAMClientConfig,
|
|
253
|
+
ListAccessKeysCommand,
|
|
254
|
+
type ListAccessKeysCommandInput,
|
|
255
|
+
type ListAccessKeysCommandOutput,
|
|
256
|
+
ListAccountAliasesCommand,
|
|
257
|
+
type ListAccountAliasesCommandInput,
|
|
258
|
+
type ListAccountAliasesCommandOutput,
|
|
259
|
+
ListAttachedGroupPoliciesCommand,
|
|
260
|
+
type ListAttachedGroupPoliciesCommandInput,
|
|
261
|
+
type ListAttachedGroupPoliciesCommandOutput,
|
|
262
|
+
ListAttachedRolePoliciesCommand,
|
|
263
|
+
type ListAttachedRolePoliciesCommandInput,
|
|
264
|
+
type ListAttachedRolePoliciesCommandOutput,
|
|
265
|
+
ListAttachedUserPoliciesCommand,
|
|
266
|
+
type ListAttachedUserPoliciesCommandInput,
|
|
267
|
+
type ListAttachedUserPoliciesCommandOutput,
|
|
268
|
+
ListEntitiesForPolicyCommand,
|
|
269
|
+
type ListEntitiesForPolicyCommandInput,
|
|
270
|
+
type ListEntitiesForPolicyCommandOutput,
|
|
271
|
+
ListGroupPoliciesCommand,
|
|
272
|
+
type ListGroupPoliciesCommandInput,
|
|
273
|
+
type ListGroupPoliciesCommandOutput,
|
|
274
|
+
ListGroupsCommand,
|
|
275
|
+
type ListGroupsCommandInput,
|
|
276
|
+
type ListGroupsCommandOutput,
|
|
277
|
+
ListGroupsForUserCommand,
|
|
278
|
+
type ListGroupsForUserCommandInput,
|
|
279
|
+
type ListGroupsForUserCommandOutput,
|
|
280
|
+
ListInstanceProfilesCommand,
|
|
281
|
+
type ListInstanceProfilesCommandInput,
|
|
282
|
+
type ListInstanceProfilesCommandOutput,
|
|
283
|
+
ListInstanceProfilesForRoleCommand,
|
|
284
|
+
type ListInstanceProfilesForRoleCommandInput,
|
|
285
|
+
type ListInstanceProfilesForRoleCommandOutput,
|
|
286
|
+
ListInstanceProfileTagsCommand,
|
|
287
|
+
type ListInstanceProfileTagsCommandInput,
|
|
288
|
+
type ListInstanceProfileTagsCommandOutput,
|
|
289
|
+
ListMFADevicesCommand,
|
|
290
|
+
type ListMFADevicesCommandInput,
|
|
291
|
+
type ListMFADevicesCommandOutput,
|
|
292
|
+
ListMFADeviceTagsCommand,
|
|
293
|
+
type ListMFADeviceTagsCommandInput,
|
|
294
|
+
type ListMFADeviceTagsCommandOutput,
|
|
295
|
+
ListOpenIDConnectProvidersCommand,
|
|
296
|
+
type ListOpenIDConnectProvidersCommandInput,
|
|
297
|
+
type ListOpenIDConnectProvidersCommandOutput,
|
|
298
|
+
ListOpenIDConnectProviderTagsCommand,
|
|
299
|
+
type ListOpenIDConnectProviderTagsCommandInput,
|
|
300
|
+
type ListOpenIDConnectProviderTagsCommandOutput,
|
|
301
|
+
ListOrganizationsFeaturesCommand,
|
|
302
|
+
type ListOrganizationsFeaturesCommandInput,
|
|
303
|
+
type ListOrganizationsFeaturesCommandOutput,
|
|
304
|
+
ListPoliciesCommand,
|
|
305
|
+
type ListPoliciesCommandInput,
|
|
306
|
+
type ListPoliciesCommandOutput,
|
|
307
|
+
ListPoliciesGrantingServiceAccessCommand,
|
|
308
|
+
type ListPoliciesGrantingServiceAccessCommandInput,
|
|
309
|
+
type ListPoliciesGrantingServiceAccessCommandOutput,
|
|
310
|
+
ListPolicyTagsCommand,
|
|
311
|
+
type ListPolicyTagsCommandInput,
|
|
312
|
+
type ListPolicyTagsCommandOutput,
|
|
313
|
+
ListPolicyVersionsCommand,
|
|
314
|
+
type ListPolicyVersionsCommandInput,
|
|
315
|
+
type ListPolicyVersionsCommandOutput,
|
|
316
|
+
ListRolePoliciesCommand,
|
|
317
|
+
type ListRolePoliciesCommandInput,
|
|
318
|
+
type ListRolePoliciesCommandOutput,
|
|
319
|
+
ListRolesCommand,
|
|
320
|
+
type ListRolesCommandInput,
|
|
321
|
+
type ListRolesCommandOutput,
|
|
322
|
+
ListRoleTagsCommand,
|
|
323
|
+
type ListRoleTagsCommandInput,
|
|
324
|
+
type ListRoleTagsCommandOutput,
|
|
325
|
+
ListSAMLProvidersCommand,
|
|
326
|
+
type ListSAMLProvidersCommandInput,
|
|
327
|
+
type ListSAMLProvidersCommandOutput,
|
|
328
|
+
ListSAMLProviderTagsCommand,
|
|
329
|
+
type ListSAMLProviderTagsCommandInput,
|
|
330
|
+
type ListSAMLProviderTagsCommandOutput,
|
|
331
|
+
ListServerCertificatesCommand,
|
|
332
|
+
type ListServerCertificatesCommandInput,
|
|
333
|
+
type ListServerCertificatesCommandOutput,
|
|
334
|
+
ListServerCertificateTagsCommand,
|
|
335
|
+
type ListServerCertificateTagsCommandInput,
|
|
336
|
+
type ListServerCertificateTagsCommandOutput,
|
|
337
|
+
ListServiceSpecificCredentialsCommand,
|
|
338
|
+
type ListServiceSpecificCredentialsCommandInput,
|
|
339
|
+
type ListServiceSpecificCredentialsCommandOutput,
|
|
340
|
+
ListSigningCertificatesCommand,
|
|
341
|
+
type ListSigningCertificatesCommandInput,
|
|
342
|
+
type ListSigningCertificatesCommandOutput,
|
|
343
|
+
ListSSHPublicKeysCommand,
|
|
344
|
+
type ListSSHPublicKeysCommandInput,
|
|
345
|
+
type ListSSHPublicKeysCommandOutput,
|
|
346
|
+
ListUserPoliciesCommand,
|
|
347
|
+
type ListUserPoliciesCommandInput,
|
|
348
|
+
type ListUserPoliciesCommandOutput,
|
|
349
|
+
ListUsersCommand,
|
|
350
|
+
type ListUsersCommandInput,
|
|
351
|
+
type ListUsersCommandOutput,
|
|
352
|
+
ListUserTagsCommand,
|
|
353
|
+
type ListUserTagsCommandInput,
|
|
354
|
+
type ListUserTagsCommandOutput,
|
|
355
|
+
ListVirtualMFADevicesCommand,
|
|
356
|
+
type ListVirtualMFADevicesCommandInput,
|
|
357
|
+
type ListVirtualMFADevicesCommandOutput,
|
|
358
|
+
PutGroupPolicyCommand,
|
|
359
|
+
type PutGroupPolicyCommandInput,
|
|
360
|
+
type PutGroupPolicyCommandOutput,
|
|
361
|
+
PutRolePermissionsBoundaryCommand,
|
|
362
|
+
type PutRolePermissionsBoundaryCommandInput,
|
|
363
|
+
type PutRolePermissionsBoundaryCommandOutput,
|
|
364
|
+
PutRolePolicyCommand,
|
|
365
|
+
type PutRolePolicyCommandInput,
|
|
366
|
+
type PutRolePolicyCommandOutput,
|
|
367
|
+
PutUserPermissionsBoundaryCommand,
|
|
368
|
+
type PutUserPermissionsBoundaryCommandInput,
|
|
369
|
+
type PutUserPermissionsBoundaryCommandOutput,
|
|
370
|
+
PutUserPolicyCommand,
|
|
371
|
+
type PutUserPolicyCommandInput,
|
|
372
|
+
type PutUserPolicyCommandOutput,
|
|
373
|
+
RemoveClientIDFromOpenIDConnectProviderCommand,
|
|
374
|
+
type RemoveClientIDFromOpenIDConnectProviderCommandInput,
|
|
375
|
+
type RemoveClientIDFromOpenIDConnectProviderCommandOutput,
|
|
376
|
+
RemoveRoleFromInstanceProfileCommand,
|
|
377
|
+
type RemoveRoleFromInstanceProfileCommandInput,
|
|
378
|
+
type RemoveRoleFromInstanceProfileCommandOutput,
|
|
379
|
+
RemoveUserFromGroupCommand,
|
|
380
|
+
type RemoveUserFromGroupCommandInput,
|
|
381
|
+
type RemoveUserFromGroupCommandOutput,
|
|
382
|
+
ResetServiceSpecificCredentialCommand,
|
|
383
|
+
type ResetServiceSpecificCredentialCommandInput,
|
|
384
|
+
type ResetServiceSpecificCredentialCommandOutput,
|
|
385
|
+
ResyncMFADeviceCommand,
|
|
386
|
+
type ResyncMFADeviceCommandInput,
|
|
387
|
+
type ResyncMFADeviceCommandOutput,
|
|
388
|
+
SetDefaultPolicyVersionCommand,
|
|
389
|
+
type SetDefaultPolicyVersionCommandInput,
|
|
390
|
+
type SetDefaultPolicyVersionCommandOutput,
|
|
391
|
+
SetSecurityTokenServicePreferencesCommand,
|
|
392
|
+
type SetSecurityTokenServicePreferencesCommandInput,
|
|
393
|
+
type SetSecurityTokenServicePreferencesCommandOutput,
|
|
394
|
+
SimulateCustomPolicyCommand,
|
|
395
|
+
type SimulateCustomPolicyCommandInput,
|
|
396
|
+
type SimulateCustomPolicyCommandOutput,
|
|
397
|
+
SimulatePrincipalPolicyCommand,
|
|
398
|
+
type SimulatePrincipalPolicyCommandInput,
|
|
399
|
+
type SimulatePrincipalPolicyCommandOutput,
|
|
400
|
+
TagInstanceProfileCommand,
|
|
401
|
+
type TagInstanceProfileCommandInput,
|
|
402
|
+
type TagInstanceProfileCommandOutput,
|
|
403
|
+
TagMFADeviceCommand,
|
|
404
|
+
type TagMFADeviceCommandInput,
|
|
405
|
+
type TagMFADeviceCommandOutput,
|
|
406
|
+
TagOpenIDConnectProviderCommand,
|
|
407
|
+
type TagOpenIDConnectProviderCommandInput,
|
|
408
|
+
type TagOpenIDConnectProviderCommandOutput,
|
|
409
|
+
TagPolicyCommand,
|
|
410
|
+
type TagPolicyCommandInput,
|
|
411
|
+
type TagPolicyCommandOutput,
|
|
412
|
+
TagRoleCommand,
|
|
413
|
+
type TagRoleCommandInput,
|
|
414
|
+
type TagRoleCommandOutput,
|
|
415
|
+
TagSAMLProviderCommand,
|
|
416
|
+
type TagSAMLProviderCommandInput,
|
|
417
|
+
type TagSAMLProviderCommandOutput,
|
|
418
|
+
TagServerCertificateCommand,
|
|
419
|
+
type TagServerCertificateCommandInput,
|
|
420
|
+
type TagServerCertificateCommandOutput,
|
|
421
|
+
TagUserCommand,
|
|
422
|
+
type TagUserCommandInput,
|
|
423
|
+
type TagUserCommandOutput,
|
|
424
|
+
UntagInstanceProfileCommand,
|
|
425
|
+
type UntagInstanceProfileCommandInput,
|
|
426
|
+
type UntagInstanceProfileCommandOutput,
|
|
427
|
+
UntagMFADeviceCommand,
|
|
428
|
+
type UntagMFADeviceCommandInput,
|
|
429
|
+
type UntagMFADeviceCommandOutput,
|
|
430
|
+
UntagOpenIDConnectProviderCommand,
|
|
431
|
+
type UntagOpenIDConnectProviderCommandInput,
|
|
432
|
+
type UntagOpenIDConnectProviderCommandOutput,
|
|
433
|
+
UntagPolicyCommand,
|
|
434
|
+
type UntagPolicyCommandInput,
|
|
435
|
+
type UntagPolicyCommandOutput,
|
|
436
|
+
UntagRoleCommand,
|
|
437
|
+
type UntagRoleCommandInput,
|
|
438
|
+
type UntagRoleCommandOutput,
|
|
439
|
+
UntagSAMLProviderCommand,
|
|
440
|
+
type UntagSAMLProviderCommandInput,
|
|
441
|
+
type UntagSAMLProviderCommandOutput,
|
|
442
|
+
UntagServerCertificateCommand,
|
|
443
|
+
type UntagServerCertificateCommandInput,
|
|
444
|
+
type UntagServerCertificateCommandOutput,
|
|
445
|
+
UntagUserCommand,
|
|
446
|
+
type UntagUserCommandInput,
|
|
447
|
+
type UntagUserCommandOutput,
|
|
448
|
+
UpdateAccessKeyCommand,
|
|
449
|
+
type UpdateAccessKeyCommandInput,
|
|
450
|
+
type UpdateAccessKeyCommandOutput,
|
|
451
|
+
UpdateAccountPasswordPolicyCommand,
|
|
452
|
+
type UpdateAccountPasswordPolicyCommandInput,
|
|
453
|
+
type UpdateAccountPasswordPolicyCommandOutput,
|
|
454
|
+
UpdateAssumeRolePolicyCommand,
|
|
455
|
+
type UpdateAssumeRolePolicyCommandInput,
|
|
456
|
+
type UpdateAssumeRolePolicyCommandOutput,
|
|
457
|
+
UpdateGroupCommand,
|
|
458
|
+
type UpdateGroupCommandInput,
|
|
459
|
+
type UpdateGroupCommandOutput,
|
|
460
|
+
UpdateLoginProfileCommand,
|
|
461
|
+
type UpdateLoginProfileCommandInput,
|
|
462
|
+
type UpdateLoginProfileCommandOutput,
|
|
463
|
+
UpdateOpenIDConnectProviderThumbprintCommand,
|
|
464
|
+
type UpdateOpenIDConnectProviderThumbprintCommandInput,
|
|
465
|
+
type UpdateOpenIDConnectProviderThumbprintCommandOutput,
|
|
466
|
+
UpdateRoleCommand,
|
|
467
|
+
type UpdateRoleCommandInput,
|
|
468
|
+
type UpdateRoleCommandOutput,
|
|
469
|
+
UpdateRoleDescriptionCommand,
|
|
470
|
+
type UpdateRoleDescriptionCommandInput,
|
|
471
|
+
type UpdateRoleDescriptionCommandOutput,
|
|
472
|
+
UpdateSAMLProviderCommand,
|
|
473
|
+
type UpdateSAMLProviderCommandInput,
|
|
474
|
+
type UpdateSAMLProviderCommandOutput,
|
|
475
|
+
UpdateServerCertificateCommand,
|
|
476
|
+
type UpdateServerCertificateCommandInput,
|
|
477
|
+
type UpdateServerCertificateCommandOutput,
|
|
478
|
+
UpdateServiceSpecificCredentialCommand,
|
|
479
|
+
type UpdateServiceSpecificCredentialCommandInput,
|
|
480
|
+
type UpdateServiceSpecificCredentialCommandOutput,
|
|
481
|
+
UpdateSigningCertificateCommand,
|
|
482
|
+
type UpdateSigningCertificateCommandInput,
|
|
483
|
+
type UpdateSigningCertificateCommandOutput,
|
|
484
|
+
UpdateSSHPublicKeyCommand,
|
|
485
|
+
type UpdateSSHPublicKeyCommandInput,
|
|
486
|
+
type UpdateSSHPublicKeyCommandOutput,
|
|
487
|
+
UpdateUserCommand,
|
|
488
|
+
type UpdateUserCommandInput,
|
|
489
|
+
type UpdateUserCommandOutput,
|
|
490
|
+
UploadServerCertificateCommand,
|
|
491
|
+
type UploadServerCertificateCommandInput,
|
|
492
|
+
type UploadServerCertificateCommandOutput,
|
|
493
|
+
UploadSigningCertificateCommand,
|
|
494
|
+
type UploadSigningCertificateCommandInput,
|
|
495
|
+
type UploadSigningCertificateCommandOutput,
|
|
496
|
+
UploadSSHPublicKeyCommand,
|
|
497
|
+
type UploadSSHPublicKeyCommandInput,
|
|
498
|
+
type UploadSSHPublicKeyCommandOutput,
|
|
499
|
+
} from "@aws-sdk/client-iam";
|
|
500
|
+
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
501
|
+
import { Service } from "@effect-aws/commons";
|
|
502
|
+
import { Effect, Layer } from "effect";
|
|
503
|
+
import type {
|
|
504
|
+
AccountNotManagementOrDelegatedAdministratorError,
|
|
505
|
+
CallerIsNotManagementAccountError,
|
|
506
|
+
ConcurrentModificationError,
|
|
507
|
+
CredentialReportExpiredError,
|
|
508
|
+
CredentialReportNotPresentError,
|
|
509
|
+
CredentialReportNotReadyError,
|
|
510
|
+
DeleteConflictError,
|
|
511
|
+
DuplicateCertificateError,
|
|
512
|
+
DuplicateSSHPublicKeyError,
|
|
513
|
+
EntityAlreadyExistsError,
|
|
514
|
+
EntityTemporarilyUnmodifiableError,
|
|
515
|
+
InvalidAuthenticationCodeError,
|
|
516
|
+
InvalidCertificateError,
|
|
517
|
+
InvalidInputError,
|
|
518
|
+
InvalidPublicKeyError,
|
|
519
|
+
InvalidUserTypeError,
|
|
520
|
+
KeyPairMismatchError,
|
|
521
|
+
LimitExceededError,
|
|
522
|
+
MalformedCertificateError,
|
|
523
|
+
MalformedPolicyDocumentError,
|
|
524
|
+
NoSuchEntityError,
|
|
525
|
+
OpenIdIdpCommunicationError,
|
|
526
|
+
OrganizationNotFoundError,
|
|
527
|
+
OrganizationNotInAllFeaturesModeError,
|
|
528
|
+
PasswordPolicyViolationError,
|
|
529
|
+
PolicyEvaluationError,
|
|
530
|
+
PolicyNotAttachableError,
|
|
531
|
+
ReportGenerationLimitExceededError,
|
|
532
|
+
ServiceAccessNotEnabledError,
|
|
533
|
+
ServiceFailureError,
|
|
534
|
+
ServiceNotSupportedError,
|
|
535
|
+
UnmodifiableEntityError,
|
|
536
|
+
UnrecognizedPublicKeyEncodingError,
|
|
537
|
+
} from "./Errors.js";
|
|
538
|
+
import { AllServiceErrors } from "./Errors.js";
|
|
539
|
+
import * as Instance from "./IAMClientInstance.js";
|
|
540
|
+
import * as IAMServiceConfig from "./IAMServiceConfig.js";
|
|
541
|
+
|
|
542
|
+
const commands = {
|
|
543
|
+
AddClientIDToOpenIDConnectProviderCommand,
|
|
544
|
+
AddRoleToInstanceProfileCommand,
|
|
545
|
+
AddUserToGroupCommand,
|
|
546
|
+
AttachGroupPolicyCommand,
|
|
547
|
+
AttachRolePolicyCommand,
|
|
548
|
+
AttachUserPolicyCommand,
|
|
549
|
+
ChangePasswordCommand,
|
|
550
|
+
CreateAccessKeyCommand,
|
|
551
|
+
CreateAccountAliasCommand,
|
|
552
|
+
CreateGroupCommand,
|
|
553
|
+
CreateInstanceProfileCommand,
|
|
554
|
+
CreateLoginProfileCommand,
|
|
555
|
+
CreateOpenIDConnectProviderCommand,
|
|
556
|
+
CreatePolicyCommand,
|
|
557
|
+
CreatePolicyVersionCommand,
|
|
558
|
+
CreateRoleCommand,
|
|
559
|
+
CreateSAMLProviderCommand,
|
|
560
|
+
CreateServiceLinkedRoleCommand,
|
|
561
|
+
CreateServiceSpecificCredentialCommand,
|
|
562
|
+
CreateUserCommand,
|
|
563
|
+
CreateVirtualMFADeviceCommand,
|
|
564
|
+
DeactivateMFADeviceCommand,
|
|
565
|
+
DeleteAccessKeyCommand,
|
|
566
|
+
DeleteAccountAliasCommand,
|
|
567
|
+
DeleteAccountPasswordPolicyCommand,
|
|
568
|
+
DeleteGroupCommand,
|
|
569
|
+
DeleteGroupPolicyCommand,
|
|
570
|
+
DeleteInstanceProfileCommand,
|
|
571
|
+
DeleteLoginProfileCommand,
|
|
572
|
+
DeleteOpenIDConnectProviderCommand,
|
|
573
|
+
DeletePolicyCommand,
|
|
574
|
+
DeletePolicyVersionCommand,
|
|
575
|
+
DeleteRoleCommand,
|
|
576
|
+
DeleteRolePermissionsBoundaryCommand,
|
|
577
|
+
DeleteRolePolicyCommand,
|
|
578
|
+
DeleteSAMLProviderCommand,
|
|
579
|
+
DeleteSSHPublicKeyCommand,
|
|
580
|
+
DeleteServerCertificateCommand,
|
|
581
|
+
DeleteServiceLinkedRoleCommand,
|
|
582
|
+
DeleteServiceSpecificCredentialCommand,
|
|
583
|
+
DeleteSigningCertificateCommand,
|
|
584
|
+
DeleteUserCommand,
|
|
585
|
+
DeleteUserPermissionsBoundaryCommand,
|
|
586
|
+
DeleteUserPolicyCommand,
|
|
587
|
+
DeleteVirtualMFADeviceCommand,
|
|
588
|
+
DetachGroupPolicyCommand,
|
|
589
|
+
DetachRolePolicyCommand,
|
|
590
|
+
DetachUserPolicyCommand,
|
|
591
|
+
DisableOrganizationsRootCredentialsManagementCommand,
|
|
592
|
+
DisableOrganizationsRootSessionsCommand,
|
|
593
|
+
EnableMFADeviceCommand,
|
|
594
|
+
EnableOrganizationsRootCredentialsManagementCommand,
|
|
595
|
+
EnableOrganizationsRootSessionsCommand,
|
|
596
|
+
GenerateCredentialReportCommand,
|
|
597
|
+
GenerateOrganizationsAccessReportCommand,
|
|
598
|
+
GenerateServiceLastAccessedDetailsCommand,
|
|
599
|
+
GetAccessKeyLastUsedCommand,
|
|
600
|
+
GetAccountAuthorizationDetailsCommand,
|
|
601
|
+
GetAccountPasswordPolicyCommand,
|
|
602
|
+
GetAccountSummaryCommand,
|
|
603
|
+
GetContextKeysForCustomPolicyCommand,
|
|
604
|
+
GetContextKeysForPrincipalPolicyCommand,
|
|
605
|
+
GetCredentialReportCommand,
|
|
606
|
+
GetGroupCommand,
|
|
607
|
+
GetGroupPolicyCommand,
|
|
608
|
+
GetInstanceProfileCommand,
|
|
609
|
+
GetLoginProfileCommand,
|
|
610
|
+
GetMFADeviceCommand,
|
|
611
|
+
GetOpenIDConnectProviderCommand,
|
|
612
|
+
GetOrganizationsAccessReportCommand,
|
|
613
|
+
GetPolicyCommand,
|
|
614
|
+
GetPolicyVersionCommand,
|
|
615
|
+
GetRoleCommand,
|
|
616
|
+
GetRolePolicyCommand,
|
|
617
|
+
GetSAMLProviderCommand,
|
|
618
|
+
GetSSHPublicKeyCommand,
|
|
619
|
+
GetServerCertificateCommand,
|
|
620
|
+
GetServiceLastAccessedDetailsCommand,
|
|
621
|
+
GetServiceLastAccessedDetailsWithEntitiesCommand,
|
|
622
|
+
GetServiceLinkedRoleDeletionStatusCommand,
|
|
623
|
+
GetUserCommand,
|
|
624
|
+
GetUserPolicyCommand,
|
|
625
|
+
ListAccessKeysCommand,
|
|
626
|
+
ListAccountAliasesCommand,
|
|
627
|
+
ListAttachedGroupPoliciesCommand,
|
|
628
|
+
ListAttachedRolePoliciesCommand,
|
|
629
|
+
ListAttachedUserPoliciesCommand,
|
|
630
|
+
ListEntitiesForPolicyCommand,
|
|
631
|
+
ListGroupPoliciesCommand,
|
|
632
|
+
ListGroupsCommand,
|
|
633
|
+
ListGroupsForUserCommand,
|
|
634
|
+
ListInstanceProfileTagsCommand,
|
|
635
|
+
ListInstanceProfilesCommand,
|
|
636
|
+
ListInstanceProfilesForRoleCommand,
|
|
637
|
+
ListMFADeviceTagsCommand,
|
|
638
|
+
ListMFADevicesCommand,
|
|
639
|
+
ListOpenIDConnectProviderTagsCommand,
|
|
640
|
+
ListOpenIDConnectProvidersCommand,
|
|
641
|
+
ListOrganizationsFeaturesCommand,
|
|
642
|
+
ListPoliciesCommand,
|
|
643
|
+
ListPoliciesGrantingServiceAccessCommand,
|
|
644
|
+
ListPolicyTagsCommand,
|
|
645
|
+
ListPolicyVersionsCommand,
|
|
646
|
+
ListRolePoliciesCommand,
|
|
647
|
+
ListRoleTagsCommand,
|
|
648
|
+
ListRolesCommand,
|
|
649
|
+
ListSAMLProviderTagsCommand,
|
|
650
|
+
ListSAMLProvidersCommand,
|
|
651
|
+
ListSSHPublicKeysCommand,
|
|
652
|
+
ListServerCertificateTagsCommand,
|
|
653
|
+
ListServerCertificatesCommand,
|
|
654
|
+
ListServiceSpecificCredentialsCommand,
|
|
655
|
+
ListSigningCertificatesCommand,
|
|
656
|
+
ListUserPoliciesCommand,
|
|
657
|
+
ListUserTagsCommand,
|
|
658
|
+
ListUsersCommand,
|
|
659
|
+
ListVirtualMFADevicesCommand,
|
|
660
|
+
PutGroupPolicyCommand,
|
|
661
|
+
PutRolePermissionsBoundaryCommand,
|
|
662
|
+
PutRolePolicyCommand,
|
|
663
|
+
PutUserPermissionsBoundaryCommand,
|
|
664
|
+
PutUserPolicyCommand,
|
|
665
|
+
RemoveClientIDFromOpenIDConnectProviderCommand,
|
|
666
|
+
RemoveRoleFromInstanceProfileCommand,
|
|
667
|
+
RemoveUserFromGroupCommand,
|
|
668
|
+
ResetServiceSpecificCredentialCommand,
|
|
669
|
+
ResyncMFADeviceCommand,
|
|
670
|
+
SetDefaultPolicyVersionCommand,
|
|
671
|
+
SetSecurityTokenServicePreferencesCommand,
|
|
672
|
+
SimulateCustomPolicyCommand,
|
|
673
|
+
SimulatePrincipalPolicyCommand,
|
|
674
|
+
TagInstanceProfileCommand,
|
|
675
|
+
TagMFADeviceCommand,
|
|
676
|
+
TagOpenIDConnectProviderCommand,
|
|
677
|
+
TagPolicyCommand,
|
|
678
|
+
TagRoleCommand,
|
|
679
|
+
TagSAMLProviderCommand,
|
|
680
|
+
TagServerCertificateCommand,
|
|
681
|
+
TagUserCommand,
|
|
682
|
+
UntagInstanceProfileCommand,
|
|
683
|
+
UntagMFADeviceCommand,
|
|
684
|
+
UntagOpenIDConnectProviderCommand,
|
|
685
|
+
UntagPolicyCommand,
|
|
686
|
+
UntagRoleCommand,
|
|
687
|
+
UntagSAMLProviderCommand,
|
|
688
|
+
UntagServerCertificateCommand,
|
|
689
|
+
UntagUserCommand,
|
|
690
|
+
UpdateAccessKeyCommand,
|
|
691
|
+
UpdateAccountPasswordPolicyCommand,
|
|
692
|
+
UpdateAssumeRolePolicyCommand,
|
|
693
|
+
UpdateGroupCommand,
|
|
694
|
+
UpdateLoginProfileCommand,
|
|
695
|
+
UpdateOpenIDConnectProviderThumbprintCommand,
|
|
696
|
+
UpdateRoleCommand,
|
|
697
|
+
UpdateRoleDescriptionCommand,
|
|
698
|
+
UpdateSAMLProviderCommand,
|
|
699
|
+
UpdateSSHPublicKeyCommand,
|
|
700
|
+
UpdateServerCertificateCommand,
|
|
701
|
+
UpdateServiceSpecificCredentialCommand,
|
|
702
|
+
UpdateSigningCertificateCommand,
|
|
703
|
+
UpdateUserCommand,
|
|
704
|
+
UploadSSHPublicKeyCommand,
|
|
705
|
+
UploadServerCertificateCommand,
|
|
706
|
+
UploadSigningCertificateCommand,
|
|
707
|
+
};
|
|
708
|
+
|
|
709
|
+
interface IAMService$ {
|
|
710
|
+
readonly _: unique symbol;
|
|
711
|
+
|
|
712
|
+
/**
|
|
713
|
+
* @see {@link AddClientIDToOpenIDConnectProviderCommand}
|
|
714
|
+
*/
|
|
715
|
+
addClientIDToOpenIDConnectProvider(
|
|
716
|
+
args: AddClientIDToOpenIDConnectProviderCommandInput,
|
|
717
|
+
options?: HttpHandlerOptions,
|
|
718
|
+
): Effect.Effect<
|
|
719
|
+
AddClientIDToOpenIDConnectProviderCommandOutput,
|
|
720
|
+
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
721
|
+
>;
|
|
722
|
+
|
|
723
|
+
/**
|
|
724
|
+
* @see {@link AddRoleToInstanceProfileCommand}
|
|
725
|
+
*/
|
|
726
|
+
addRoleToInstanceProfile(
|
|
727
|
+
args: AddRoleToInstanceProfileCommandInput,
|
|
728
|
+
options?: HttpHandlerOptions,
|
|
729
|
+
): Effect.Effect<
|
|
730
|
+
AddRoleToInstanceProfileCommandOutput,
|
|
731
|
+
| SdkError
|
|
732
|
+
| EntityAlreadyExistsError
|
|
733
|
+
| LimitExceededError
|
|
734
|
+
| NoSuchEntityError
|
|
735
|
+
| ServiceFailureError
|
|
736
|
+
| UnmodifiableEntityError
|
|
737
|
+
>;
|
|
738
|
+
|
|
739
|
+
/**
|
|
740
|
+
* @see {@link AddUserToGroupCommand}
|
|
741
|
+
*/
|
|
742
|
+
addUserToGroup(
|
|
743
|
+
args: AddUserToGroupCommandInput,
|
|
744
|
+
options?: HttpHandlerOptions,
|
|
745
|
+
): Effect.Effect<
|
|
746
|
+
AddUserToGroupCommandOutput,
|
|
747
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
748
|
+
>;
|
|
749
|
+
|
|
750
|
+
/**
|
|
751
|
+
* @see {@link AttachGroupPolicyCommand}
|
|
752
|
+
*/
|
|
753
|
+
attachGroupPolicy(
|
|
754
|
+
args: AttachGroupPolicyCommandInput,
|
|
755
|
+
options?: HttpHandlerOptions,
|
|
756
|
+
): Effect.Effect<
|
|
757
|
+
AttachGroupPolicyCommandOutput,
|
|
758
|
+
| SdkError
|
|
759
|
+
| InvalidInputError
|
|
760
|
+
| LimitExceededError
|
|
761
|
+
| NoSuchEntityError
|
|
762
|
+
| PolicyNotAttachableError
|
|
763
|
+
| ServiceFailureError
|
|
764
|
+
>;
|
|
765
|
+
|
|
766
|
+
/**
|
|
767
|
+
* @see {@link AttachRolePolicyCommand}
|
|
768
|
+
*/
|
|
769
|
+
attachRolePolicy(
|
|
770
|
+
args: AttachRolePolicyCommandInput,
|
|
771
|
+
options?: HttpHandlerOptions,
|
|
772
|
+
): Effect.Effect<
|
|
773
|
+
AttachRolePolicyCommandOutput,
|
|
774
|
+
| SdkError
|
|
775
|
+
| InvalidInputError
|
|
776
|
+
| LimitExceededError
|
|
777
|
+
| NoSuchEntityError
|
|
778
|
+
| PolicyNotAttachableError
|
|
779
|
+
| ServiceFailureError
|
|
780
|
+
| UnmodifiableEntityError
|
|
781
|
+
>;
|
|
782
|
+
|
|
783
|
+
/**
|
|
784
|
+
* @see {@link AttachUserPolicyCommand}
|
|
785
|
+
*/
|
|
786
|
+
attachUserPolicy(
|
|
787
|
+
args: AttachUserPolicyCommandInput,
|
|
788
|
+
options?: HttpHandlerOptions,
|
|
789
|
+
): Effect.Effect<
|
|
790
|
+
AttachUserPolicyCommandOutput,
|
|
791
|
+
| SdkError
|
|
792
|
+
| InvalidInputError
|
|
793
|
+
| LimitExceededError
|
|
794
|
+
| NoSuchEntityError
|
|
795
|
+
| PolicyNotAttachableError
|
|
796
|
+
| ServiceFailureError
|
|
797
|
+
>;
|
|
798
|
+
|
|
799
|
+
/**
|
|
800
|
+
* @see {@link ChangePasswordCommand}
|
|
801
|
+
*/
|
|
802
|
+
changePassword(
|
|
803
|
+
args: ChangePasswordCommandInput,
|
|
804
|
+
options?: HttpHandlerOptions,
|
|
805
|
+
): Effect.Effect<
|
|
806
|
+
ChangePasswordCommandOutput,
|
|
807
|
+
| SdkError
|
|
808
|
+
| EntityTemporarilyUnmodifiableError
|
|
809
|
+
| InvalidUserTypeError
|
|
810
|
+
| LimitExceededError
|
|
811
|
+
| NoSuchEntityError
|
|
812
|
+
| PasswordPolicyViolationError
|
|
813
|
+
| ServiceFailureError
|
|
814
|
+
>;
|
|
815
|
+
|
|
816
|
+
/**
|
|
817
|
+
* @see {@link CreateAccessKeyCommand}
|
|
818
|
+
*/
|
|
819
|
+
createAccessKey(
|
|
820
|
+
args: CreateAccessKeyCommandInput,
|
|
821
|
+
options?: HttpHandlerOptions,
|
|
822
|
+
): Effect.Effect<
|
|
823
|
+
CreateAccessKeyCommandOutput,
|
|
824
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
825
|
+
>;
|
|
826
|
+
|
|
827
|
+
/**
|
|
828
|
+
* @see {@link CreateAccountAliasCommand}
|
|
829
|
+
*/
|
|
830
|
+
createAccountAlias(
|
|
831
|
+
args: CreateAccountAliasCommandInput,
|
|
832
|
+
options?: HttpHandlerOptions,
|
|
833
|
+
): Effect.Effect<
|
|
834
|
+
CreateAccountAliasCommandOutput,
|
|
835
|
+
SdkError | ConcurrentModificationError | EntityAlreadyExistsError | LimitExceededError | ServiceFailureError
|
|
836
|
+
>;
|
|
837
|
+
|
|
838
|
+
/**
|
|
839
|
+
* @see {@link CreateGroupCommand}
|
|
840
|
+
*/
|
|
841
|
+
createGroup(
|
|
842
|
+
args: CreateGroupCommandInput,
|
|
843
|
+
options?: HttpHandlerOptions,
|
|
844
|
+
): Effect.Effect<
|
|
845
|
+
CreateGroupCommandOutput,
|
|
846
|
+
SdkError | EntityAlreadyExistsError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
847
|
+
>;
|
|
848
|
+
|
|
849
|
+
/**
|
|
850
|
+
* @see {@link CreateInstanceProfileCommand}
|
|
851
|
+
*/
|
|
852
|
+
createInstanceProfile(
|
|
853
|
+
args: CreateInstanceProfileCommandInput,
|
|
854
|
+
options?: HttpHandlerOptions,
|
|
855
|
+
): Effect.Effect<
|
|
856
|
+
CreateInstanceProfileCommandOutput,
|
|
857
|
+
| SdkError
|
|
858
|
+
| ConcurrentModificationError
|
|
859
|
+
| EntityAlreadyExistsError
|
|
860
|
+
| InvalidInputError
|
|
861
|
+
| LimitExceededError
|
|
862
|
+
| ServiceFailureError
|
|
863
|
+
>;
|
|
864
|
+
|
|
865
|
+
/**
|
|
866
|
+
* @see {@link CreateLoginProfileCommand}
|
|
867
|
+
*/
|
|
868
|
+
createLoginProfile(
|
|
869
|
+
args: CreateLoginProfileCommandInput,
|
|
870
|
+
options?: HttpHandlerOptions,
|
|
871
|
+
): Effect.Effect<
|
|
872
|
+
CreateLoginProfileCommandOutput,
|
|
873
|
+
| SdkError
|
|
874
|
+
| EntityAlreadyExistsError
|
|
875
|
+
| LimitExceededError
|
|
876
|
+
| NoSuchEntityError
|
|
877
|
+
| PasswordPolicyViolationError
|
|
878
|
+
| ServiceFailureError
|
|
879
|
+
>;
|
|
880
|
+
|
|
881
|
+
/**
|
|
882
|
+
* @see {@link CreateOpenIDConnectProviderCommand}
|
|
883
|
+
*/
|
|
884
|
+
createOpenIDConnectProvider(
|
|
885
|
+
args: CreateOpenIDConnectProviderCommandInput,
|
|
886
|
+
options?: HttpHandlerOptions,
|
|
887
|
+
): Effect.Effect<
|
|
888
|
+
CreateOpenIDConnectProviderCommandOutput,
|
|
889
|
+
| SdkError
|
|
890
|
+
| ConcurrentModificationError
|
|
891
|
+
| EntityAlreadyExistsError
|
|
892
|
+
| InvalidInputError
|
|
893
|
+
| LimitExceededError
|
|
894
|
+
| OpenIdIdpCommunicationError
|
|
895
|
+
| ServiceFailureError
|
|
896
|
+
>;
|
|
897
|
+
|
|
898
|
+
/**
|
|
899
|
+
* @see {@link CreatePolicyCommand}
|
|
900
|
+
*/
|
|
901
|
+
createPolicy(
|
|
902
|
+
args: CreatePolicyCommandInput,
|
|
903
|
+
options?: HttpHandlerOptions,
|
|
904
|
+
): Effect.Effect<
|
|
905
|
+
CreatePolicyCommandOutput,
|
|
906
|
+
| SdkError
|
|
907
|
+
| ConcurrentModificationError
|
|
908
|
+
| EntityAlreadyExistsError
|
|
909
|
+
| InvalidInputError
|
|
910
|
+
| LimitExceededError
|
|
911
|
+
| MalformedPolicyDocumentError
|
|
912
|
+
| ServiceFailureError
|
|
913
|
+
>;
|
|
914
|
+
|
|
915
|
+
/**
|
|
916
|
+
* @see {@link CreatePolicyVersionCommand}
|
|
917
|
+
*/
|
|
918
|
+
createPolicyVersion(
|
|
919
|
+
args: CreatePolicyVersionCommandInput,
|
|
920
|
+
options?: HttpHandlerOptions,
|
|
921
|
+
): Effect.Effect<
|
|
922
|
+
CreatePolicyVersionCommandOutput,
|
|
923
|
+
| SdkError
|
|
924
|
+
| InvalidInputError
|
|
925
|
+
| LimitExceededError
|
|
926
|
+
| MalformedPolicyDocumentError
|
|
927
|
+
| NoSuchEntityError
|
|
928
|
+
| ServiceFailureError
|
|
929
|
+
>;
|
|
930
|
+
|
|
931
|
+
/**
|
|
932
|
+
* @see {@link CreateRoleCommand}
|
|
933
|
+
*/
|
|
934
|
+
createRole(
|
|
935
|
+
args: CreateRoleCommandInput,
|
|
936
|
+
options?: HttpHandlerOptions,
|
|
937
|
+
): Effect.Effect<
|
|
938
|
+
CreateRoleCommandOutput,
|
|
939
|
+
| SdkError
|
|
940
|
+
| ConcurrentModificationError
|
|
941
|
+
| EntityAlreadyExistsError
|
|
942
|
+
| InvalidInputError
|
|
943
|
+
| LimitExceededError
|
|
944
|
+
| MalformedPolicyDocumentError
|
|
945
|
+
| ServiceFailureError
|
|
946
|
+
>;
|
|
947
|
+
|
|
948
|
+
/**
|
|
949
|
+
* @see {@link CreateSAMLProviderCommand}
|
|
950
|
+
*/
|
|
951
|
+
createSAMLProvider(
|
|
952
|
+
args: CreateSAMLProviderCommandInput,
|
|
953
|
+
options?: HttpHandlerOptions,
|
|
954
|
+
): Effect.Effect<
|
|
955
|
+
CreateSAMLProviderCommandOutput,
|
|
956
|
+
| SdkError
|
|
957
|
+
| ConcurrentModificationError
|
|
958
|
+
| EntityAlreadyExistsError
|
|
959
|
+
| InvalidInputError
|
|
960
|
+
| LimitExceededError
|
|
961
|
+
| ServiceFailureError
|
|
962
|
+
>;
|
|
963
|
+
|
|
964
|
+
/**
|
|
965
|
+
* @see {@link CreateServiceLinkedRoleCommand}
|
|
966
|
+
*/
|
|
967
|
+
createServiceLinkedRole(
|
|
968
|
+
args: CreateServiceLinkedRoleCommandInput,
|
|
969
|
+
options?: HttpHandlerOptions,
|
|
970
|
+
): Effect.Effect<
|
|
971
|
+
CreateServiceLinkedRoleCommandOutput,
|
|
972
|
+
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
973
|
+
>;
|
|
974
|
+
|
|
975
|
+
/**
|
|
976
|
+
* @see {@link CreateServiceSpecificCredentialCommand}
|
|
977
|
+
*/
|
|
978
|
+
createServiceSpecificCredential(
|
|
979
|
+
args: CreateServiceSpecificCredentialCommandInput,
|
|
980
|
+
options?: HttpHandlerOptions,
|
|
981
|
+
): Effect.Effect<
|
|
982
|
+
CreateServiceSpecificCredentialCommandOutput,
|
|
983
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceNotSupportedError
|
|
984
|
+
>;
|
|
985
|
+
|
|
986
|
+
/**
|
|
987
|
+
* @see {@link CreateUserCommand}
|
|
988
|
+
*/
|
|
989
|
+
createUser(
|
|
990
|
+
args: CreateUserCommandInput,
|
|
991
|
+
options?: HttpHandlerOptions,
|
|
992
|
+
): Effect.Effect<
|
|
993
|
+
CreateUserCommandOutput,
|
|
994
|
+
| SdkError
|
|
995
|
+
| ConcurrentModificationError
|
|
996
|
+
| EntityAlreadyExistsError
|
|
997
|
+
| InvalidInputError
|
|
998
|
+
| LimitExceededError
|
|
999
|
+
| NoSuchEntityError
|
|
1000
|
+
| ServiceFailureError
|
|
1001
|
+
>;
|
|
1002
|
+
|
|
1003
|
+
/**
|
|
1004
|
+
* @see {@link CreateVirtualMFADeviceCommand}
|
|
1005
|
+
*/
|
|
1006
|
+
createVirtualMFADevice(
|
|
1007
|
+
args: CreateVirtualMFADeviceCommandInput,
|
|
1008
|
+
options?: HttpHandlerOptions,
|
|
1009
|
+
): Effect.Effect<
|
|
1010
|
+
CreateVirtualMFADeviceCommandOutput,
|
|
1011
|
+
| SdkError
|
|
1012
|
+
| ConcurrentModificationError
|
|
1013
|
+
| EntityAlreadyExistsError
|
|
1014
|
+
| InvalidInputError
|
|
1015
|
+
| LimitExceededError
|
|
1016
|
+
| ServiceFailureError
|
|
1017
|
+
>;
|
|
1018
|
+
|
|
1019
|
+
/**
|
|
1020
|
+
* @see {@link DeactivateMFADeviceCommand}
|
|
1021
|
+
*/
|
|
1022
|
+
deactivateMFADevice(
|
|
1023
|
+
args: DeactivateMFADeviceCommandInput,
|
|
1024
|
+
options?: HttpHandlerOptions,
|
|
1025
|
+
): Effect.Effect<
|
|
1026
|
+
DeactivateMFADeviceCommandOutput,
|
|
1027
|
+
| SdkError
|
|
1028
|
+
| ConcurrentModificationError
|
|
1029
|
+
| EntityTemporarilyUnmodifiableError
|
|
1030
|
+
| LimitExceededError
|
|
1031
|
+
| NoSuchEntityError
|
|
1032
|
+
| ServiceFailureError
|
|
1033
|
+
>;
|
|
1034
|
+
|
|
1035
|
+
/**
|
|
1036
|
+
* @see {@link DeleteAccessKeyCommand}
|
|
1037
|
+
*/
|
|
1038
|
+
deleteAccessKey(
|
|
1039
|
+
args: DeleteAccessKeyCommandInput,
|
|
1040
|
+
options?: HttpHandlerOptions,
|
|
1041
|
+
): Effect.Effect<
|
|
1042
|
+
DeleteAccessKeyCommandOutput,
|
|
1043
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1044
|
+
>;
|
|
1045
|
+
|
|
1046
|
+
/**
|
|
1047
|
+
* @see {@link DeleteAccountAliasCommand}
|
|
1048
|
+
*/
|
|
1049
|
+
deleteAccountAlias(
|
|
1050
|
+
args: DeleteAccountAliasCommandInput,
|
|
1051
|
+
options?: HttpHandlerOptions,
|
|
1052
|
+
): Effect.Effect<
|
|
1053
|
+
DeleteAccountAliasCommandOutput,
|
|
1054
|
+
SdkError | ConcurrentModificationError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1055
|
+
>;
|
|
1056
|
+
|
|
1057
|
+
/**
|
|
1058
|
+
* @see {@link DeleteAccountPasswordPolicyCommand}
|
|
1059
|
+
*/
|
|
1060
|
+
deleteAccountPasswordPolicy(
|
|
1061
|
+
args: DeleteAccountPasswordPolicyCommandInput,
|
|
1062
|
+
options?: HttpHandlerOptions,
|
|
1063
|
+
): Effect.Effect<
|
|
1064
|
+
DeleteAccountPasswordPolicyCommandOutput,
|
|
1065
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1066
|
+
>;
|
|
1067
|
+
|
|
1068
|
+
/**
|
|
1069
|
+
* @see {@link DeleteGroupCommand}
|
|
1070
|
+
*/
|
|
1071
|
+
deleteGroup(
|
|
1072
|
+
args: DeleteGroupCommandInput,
|
|
1073
|
+
options?: HttpHandlerOptions,
|
|
1074
|
+
): Effect.Effect<
|
|
1075
|
+
DeleteGroupCommandOutput,
|
|
1076
|
+
SdkError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1077
|
+
>;
|
|
1078
|
+
|
|
1079
|
+
/**
|
|
1080
|
+
* @see {@link DeleteGroupPolicyCommand}
|
|
1081
|
+
*/
|
|
1082
|
+
deleteGroupPolicy(
|
|
1083
|
+
args: DeleteGroupPolicyCommandInput,
|
|
1084
|
+
options?: HttpHandlerOptions,
|
|
1085
|
+
): Effect.Effect<
|
|
1086
|
+
DeleteGroupPolicyCommandOutput,
|
|
1087
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1088
|
+
>;
|
|
1089
|
+
|
|
1090
|
+
/**
|
|
1091
|
+
* @see {@link DeleteInstanceProfileCommand}
|
|
1092
|
+
*/
|
|
1093
|
+
deleteInstanceProfile(
|
|
1094
|
+
args: DeleteInstanceProfileCommandInput,
|
|
1095
|
+
options?: HttpHandlerOptions,
|
|
1096
|
+
): Effect.Effect<
|
|
1097
|
+
DeleteInstanceProfileCommandOutput,
|
|
1098
|
+
SdkError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1099
|
+
>;
|
|
1100
|
+
|
|
1101
|
+
/**
|
|
1102
|
+
* @see {@link DeleteLoginProfileCommand}
|
|
1103
|
+
*/
|
|
1104
|
+
deleteLoginProfile(
|
|
1105
|
+
args: DeleteLoginProfileCommandInput,
|
|
1106
|
+
options?: HttpHandlerOptions,
|
|
1107
|
+
): Effect.Effect<
|
|
1108
|
+
DeleteLoginProfileCommandOutput,
|
|
1109
|
+
SdkError | EntityTemporarilyUnmodifiableError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1110
|
+
>;
|
|
1111
|
+
|
|
1112
|
+
/**
|
|
1113
|
+
* @see {@link DeleteOpenIDConnectProviderCommand}
|
|
1114
|
+
*/
|
|
1115
|
+
deleteOpenIDConnectProvider(
|
|
1116
|
+
args: DeleteOpenIDConnectProviderCommandInput,
|
|
1117
|
+
options?: HttpHandlerOptions,
|
|
1118
|
+
): Effect.Effect<
|
|
1119
|
+
DeleteOpenIDConnectProviderCommandOutput,
|
|
1120
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1121
|
+
>;
|
|
1122
|
+
|
|
1123
|
+
/**
|
|
1124
|
+
* @see {@link DeletePolicyCommand}
|
|
1125
|
+
*/
|
|
1126
|
+
deletePolicy(
|
|
1127
|
+
args: DeletePolicyCommandInput,
|
|
1128
|
+
options?: HttpHandlerOptions,
|
|
1129
|
+
): Effect.Effect<
|
|
1130
|
+
DeletePolicyCommandOutput,
|
|
1131
|
+
SdkError | DeleteConflictError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1132
|
+
>;
|
|
1133
|
+
|
|
1134
|
+
/**
|
|
1135
|
+
* @see {@link DeletePolicyVersionCommand}
|
|
1136
|
+
*/
|
|
1137
|
+
deletePolicyVersion(
|
|
1138
|
+
args: DeletePolicyVersionCommandInput,
|
|
1139
|
+
options?: HttpHandlerOptions,
|
|
1140
|
+
): Effect.Effect<
|
|
1141
|
+
DeletePolicyVersionCommandOutput,
|
|
1142
|
+
SdkError | DeleteConflictError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1143
|
+
>;
|
|
1144
|
+
|
|
1145
|
+
/**
|
|
1146
|
+
* @see {@link DeleteRoleCommand}
|
|
1147
|
+
*/
|
|
1148
|
+
deleteRole(
|
|
1149
|
+
args: DeleteRoleCommandInput,
|
|
1150
|
+
options?: HttpHandlerOptions,
|
|
1151
|
+
): Effect.Effect<
|
|
1152
|
+
DeleteRoleCommandOutput,
|
|
1153
|
+
| SdkError
|
|
1154
|
+
| ConcurrentModificationError
|
|
1155
|
+
| DeleteConflictError
|
|
1156
|
+
| LimitExceededError
|
|
1157
|
+
| NoSuchEntityError
|
|
1158
|
+
| ServiceFailureError
|
|
1159
|
+
| UnmodifiableEntityError
|
|
1160
|
+
>;
|
|
1161
|
+
|
|
1162
|
+
/**
|
|
1163
|
+
* @see {@link DeleteRolePermissionsBoundaryCommand}
|
|
1164
|
+
*/
|
|
1165
|
+
deleteRolePermissionsBoundary(
|
|
1166
|
+
args: DeleteRolePermissionsBoundaryCommandInput,
|
|
1167
|
+
options?: HttpHandlerOptions,
|
|
1168
|
+
): Effect.Effect<
|
|
1169
|
+
DeleteRolePermissionsBoundaryCommandOutput,
|
|
1170
|
+
SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
1171
|
+
>;
|
|
1172
|
+
|
|
1173
|
+
/**
|
|
1174
|
+
* @see {@link DeleteRolePolicyCommand}
|
|
1175
|
+
*/
|
|
1176
|
+
deleteRolePolicy(
|
|
1177
|
+
args: DeleteRolePolicyCommandInput,
|
|
1178
|
+
options?: HttpHandlerOptions,
|
|
1179
|
+
): Effect.Effect<
|
|
1180
|
+
DeleteRolePolicyCommandOutput,
|
|
1181
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
1182
|
+
>;
|
|
1183
|
+
|
|
1184
|
+
/**
|
|
1185
|
+
* @see {@link DeleteSAMLProviderCommand}
|
|
1186
|
+
*/
|
|
1187
|
+
deleteSAMLProvider(
|
|
1188
|
+
args: DeleteSAMLProviderCommandInput,
|
|
1189
|
+
options?: HttpHandlerOptions,
|
|
1190
|
+
): Effect.Effect<
|
|
1191
|
+
DeleteSAMLProviderCommandOutput,
|
|
1192
|
+
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1193
|
+
>;
|
|
1194
|
+
|
|
1195
|
+
/**
|
|
1196
|
+
* @see {@link DeleteSSHPublicKeyCommand}
|
|
1197
|
+
*/
|
|
1198
|
+
deleteSSHPublicKey(
|
|
1199
|
+
args: DeleteSSHPublicKeyCommandInput,
|
|
1200
|
+
options?: HttpHandlerOptions,
|
|
1201
|
+
): Effect.Effect<
|
|
1202
|
+
DeleteSSHPublicKeyCommandOutput,
|
|
1203
|
+
SdkError | NoSuchEntityError
|
|
1204
|
+
>;
|
|
1205
|
+
|
|
1206
|
+
/**
|
|
1207
|
+
* @see {@link DeleteServerCertificateCommand}
|
|
1208
|
+
*/
|
|
1209
|
+
deleteServerCertificate(
|
|
1210
|
+
args: DeleteServerCertificateCommandInput,
|
|
1211
|
+
options?: HttpHandlerOptions,
|
|
1212
|
+
): Effect.Effect<
|
|
1213
|
+
DeleteServerCertificateCommandOutput,
|
|
1214
|
+
SdkError | DeleteConflictError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1215
|
+
>;
|
|
1216
|
+
|
|
1217
|
+
/**
|
|
1218
|
+
* @see {@link DeleteServiceLinkedRoleCommand}
|
|
1219
|
+
*/
|
|
1220
|
+
deleteServiceLinkedRole(
|
|
1221
|
+
args: DeleteServiceLinkedRoleCommandInput,
|
|
1222
|
+
options?: HttpHandlerOptions,
|
|
1223
|
+
): Effect.Effect<
|
|
1224
|
+
DeleteServiceLinkedRoleCommandOutput,
|
|
1225
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1226
|
+
>;
|
|
1227
|
+
|
|
1228
|
+
/**
|
|
1229
|
+
* @see {@link DeleteServiceSpecificCredentialCommand}
|
|
1230
|
+
*/
|
|
1231
|
+
deleteServiceSpecificCredential(
|
|
1232
|
+
args: DeleteServiceSpecificCredentialCommandInput,
|
|
1233
|
+
options?: HttpHandlerOptions,
|
|
1234
|
+
): Effect.Effect<
|
|
1235
|
+
DeleteServiceSpecificCredentialCommandOutput,
|
|
1236
|
+
SdkError | NoSuchEntityError
|
|
1237
|
+
>;
|
|
1238
|
+
|
|
1239
|
+
/**
|
|
1240
|
+
* @see {@link DeleteSigningCertificateCommand}
|
|
1241
|
+
*/
|
|
1242
|
+
deleteSigningCertificate(
|
|
1243
|
+
args: DeleteSigningCertificateCommandInput,
|
|
1244
|
+
options?: HttpHandlerOptions,
|
|
1245
|
+
): Effect.Effect<
|
|
1246
|
+
DeleteSigningCertificateCommandOutput,
|
|
1247
|
+
SdkError | ConcurrentModificationError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1248
|
+
>;
|
|
1249
|
+
|
|
1250
|
+
/**
|
|
1251
|
+
* @see {@link DeleteUserCommand}
|
|
1252
|
+
*/
|
|
1253
|
+
deleteUser(
|
|
1254
|
+
args: DeleteUserCommandInput,
|
|
1255
|
+
options?: HttpHandlerOptions,
|
|
1256
|
+
): Effect.Effect<
|
|
1257
|
+
DeleteUserCommandOutput,
|
|
1258
|
+
| SdkError
|
|
1259
|
+
| ConcurrentModificationError
|
|
1260
|
+
| DeleteConflictError
|
|
1261
|
+
| LimitExceededError
|
|
1262
|
+
| NoSuchEntityError
|
|
1263
|
+
| ServiceFailureError
|
|
1264
|
+
>;
|
|
1265
|
+
|
|
1266
|
+
/**
|
|
1267
|
+
* @see {@link DeleteUserPermissionsBoundaryCommand}
|
|
1268
|
+
*/
|
|
1269
|
+
deleteUserPermissionsBoundary(
|
|
1270
|
+
args: DeleteUserPermissionsBoundaryCommandInput,
|
|
1271
|
+
options?: HttpHandlerOptions,
|
|
1272
|
+
): Effect.Effect<
|
|
1273
|
+
DeleteUserPermissionsBoundaryCommandOutput,
|
|
1274
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1275
|
+
>;
|
|
1276
|
+
|
|
1277
|
+
/**
|
|
1278
|
+
* @see {@link DeleteUserPolicyCommand}
|
|
1279
|
+
*/
|
|
1280
|
+
deleteUserPolicy(
|
|
1281
|
+
args: DeleteUserPolicyCommandInput,
|
|
1282
|
+
options?: HttpHandlerOptions,
|
|
1283
|
+
): Effect.Effect<
|
|
1284
|
+
DeleteUserPolicyCommandOutput,
|
|
1285
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1286
|
+
>;
|
|
1287
|
+
|
|
1288
|
+
/**
|
|
1289
|
+
* @see {@link DeleteVirtualMFADeviceCommand}
|
|
1290
|
+
*/
|
|
1291
|
+
deleteVirtualMFADevice(
|
|
1292
|
+
args: DeleteVirtualMFADeviceCommandInput,
|
|
1293
|
+
options?: HttpHandlerOptions,
|
|
1294
|
+
): Effect.Effect<
|
|
1295
|
+
DeleteVirtualMFADeviceCommandOutput,
|
|
1296
|
+
| SdkError
|
|
1297
|
+
| ConcurrentModificationError
|
|
1298
|
+
| DeleteConflictError
|
|
1299
|
+
| LimitExceededError
|
|
1300
|
+
| NoSuchEntityError
|
|
1301
|
+
| ServiceFailureError
|
|
1302
|
+
>;
|
|
1303
|
+
|
|
1304
|
+
/**
|
|
1305
|
+
* @see {@link DetachGroupPolicyCommand}
|
|
1306
|
+
*/
|
|
1307
|
+
detachGroupPolicy(
|
|
1308
|
+
args: DetachGroupPolicyCommandInput,
|
|
1309
|
+
options?: HttpHandlerOptions,
|
|
1310
|
+
): Effect.Effect<
|
|
1311
|
+
DetachGroupPolicyCommandOutput,
|
|
1312
|
+
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1313
|
+
>;
|
|
1314
|
+
|
|
1315
|
+
/**
|
|
1316
|
+
* @see {@link DetachRolePolicyCommand}
|
|
1317
|
+
*/
|
|
1318
|
+
detachRolePolicy(
|
|
1319
|
+
args: DetachRolePolicyCommandInput,
|
|
1320
|
+
options?: HttpHandlerOptions,
|
|
1321
|
+
): Effect.Effect<
|
|
1322
|
+
DetachRolePolicyCommandOutput,
|
|
1323
|
+
| SdkError
|
|
1324
|
+
| InvalidInputError
|
|
1325
|
+
| LimitExceededError
|
|
1326
|
+
| NoSuchEntityError
|
|
1327
|
+
| ServiceFailureError
|
|
1328
|
+
| UnmodifiableEntityError
|
|
1329
|
+
>;
|
|
1330
|
+
|
|
1331
|
+
/**
|
|
1332
|
+
* @see {@link DetachUserPolicyCommand}
|
|
1333
|
+
*/
|
|
1334
|
+
detachUserPolicy(
|
|
1335
|
+
args: DetachUserPolicyCommandInput,
|
|
1336
|
+
options?: HttpHandlerOptions,
|
|
1337
|
+
): Effect.Effect<
|
|
1338
|
+
DetachUserPolicyCommandOutput,
|
|
1339
|
+
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
1340
|
+
>;
|
|
1341
|
+
|
|
1342
|
+
/**
|
|
1343
|
+
* @see {@link DisableOrganizationsRootCredentialsManagementCommand}
|
|
1344
|
+
*/
|
|
1345
|
+
disableOrganizationsRootCredentialsManagement(
|
|
1346
|
+
args: DisableOrganizationsRootCredentialsManagementCommandInput,
|
|
1347
|
+
options?: HttpHandlerOptions,
|
|
1348
|
+
): Effect.Effect<
|
|
1349
|
+
DisableOrganizationsRootCredentialsManagementCommandOutput,
|
|
1350
|
+
| SdkError
|
|
1351
|
+
| AccountNotManagementOrDelegatedAdministratorError
|
|
1352
|
+
| OrganizationNotFoundError
|
|
1353
|
+
| OrganizationNotInAllFeaturesModeError
|
|
1354
|
+
| ServiceAccessNotEnabledError
|
|
1355
|
+
>;
|
|
1356
|
+
|
|
1357
|
+
/**
|
|
1358
|
+
* @see {@link DisableOrganizationsRootSessionsCommand}
|
|
1359
|
+
*/
|
|
1360
|
+
disableOrganizationsRootSessions(
|
|
1361
|
+
args: DisableOrganizationsRootSessionsCommandInput,
|
|
1362
|
+
options?: HttpHandlerOptions,
|
|
1363
|
+
): Effect.Effect<
|
|
1364
|
+
DisableOrganizationsRootSessionsCommandOutput,
|
|
1365
|
+
| SdkError
|
|
1366
|
+
| AccountNotManagementOrDelegatedAdministratorError
|
|
1367
|
+
| OrganizationNotFoundError
|
|
1368
|
+
| OrganizationNotInAllFeaturesModeError
|
|
1369
|
+
| ServiceAccessNotEnabledError
|
|
1370
|
+
>;
|
|
1371
|
+
|
|
1372
|
+
/**
|
|
1373
|
+
* @see {@link EnableMFADeviceCommand}
|
|
1374
|
+
*/
|
|
1375
|
+
enableMFADevice(
|
|
1376
|
+
args: EnableMFADeviceCommandInput,
|
|
1377
|
+
options?: HttpHandlerOptions,
|
|
1378
|
+
): Effect.Effect<
|
|
1379
|
+
EnableMFADeviceCommandOutput,
|
|
1380
|
+
| SdkError
|
|
1381
|
+
| ConcurrentModificationError
|
|
1382
|
+
| EntityAlreadyExistsError
|
|
1383
|
+
| EntityTemporarilyUnmodifiableError
|
|
1384
|
+
| InvalidAuthenticationCodeError
|
|
1385
|
+
| LimitExceededError
|
|
1386
|
+
| NoSuchEntityError
|
|
1387
|
+
| ServiceFailureError
|
|
1388
|
+
>;
|
|
1389
|
+
|
|
1390
|
+
/**
|
|
1391
|
+
* @see {@link EnableOrganizationsRootCredentialsManagementCommand}
|
|
1392
|
+
*/
|
|
1393
|
+
enableOrganizationsRootCredentialsManagement(
|
|
1394
|
+
args: EnableOrganizationsRootCredentialsManagementCommandInput,
|
|
1395
|
+
options?: HttpHandlerOptions,
|
|
1396
|
+
): Effect.Effect<
|
|
1397
|
+
EnableOrganizationsRootCredentialsManagementCommandOutput,
|
|
1398
|
+
| SdkError
|
|
1399
|
+
| AccountNotManagementOrDelegatedAdministratorError
|
|
1400
|
+
| CallerIsNotManagementAccountError
|
|
1401
|
+
| OrganizationNotFoundError
|
|
1402
|
+
| OrganizationNotInAllFeaturesModeError
|
|
1403
|
+
| ServiceAccessNotEnabledError
|
|
1404
|
+
>;
|
|
1405
|
+
|
|
1406
|
+
/**
|
|
1407
|
+
* @see {@link EnableOrganizationsRootSessionsCommand}
|
|
1408
|
+
*/
|
|
1409
|
+
enableOrganizationsRootSessions(
|
|
1410
|
+
args: EnableOrganizationsRootSessionsCommandInput,
|
|
1411
|
+
options?: HttpHandlerOptions,
|
|
1412
|
+
): Effect.Effect<
|
|
1413
|
+
EnableOrganizationsRootSessionsCommandOutput,
|
|
1414
|
+
| SdkError
|
|
1415
|
+
| AccountNotManagementOrDelegatedAdministratorError
|
|
1416
|
+
| CallerIsNotManagementAccountError
|
|
1417
|
+
| OrganizationNotFoundError
|
|
1418
|
+
| OrganizationNotInAllFeaturesModeError
|
|
1419
|
+
| ServiceAccessNotEnabledError
|
|
1420
|
+
>;
|
|
1421
|
+
|
|
1422
|
+
/**
|
|
1423
|
+
* @see {@link GenerateCredentialReportCommand}
|
|
1424
|
+
*/
|
|
1425
|
+
generateCredentialReport(
|
|
1426
|
+
args: GenerateCredentialReportCommandInput,
|
|
1427
|
+
options?: HttpHandlerOptions,
|
|
1428
|
+
): Effect.Effect<
|
|
1429
|
+
GenerateCredentialReportCommandOutput,
|
|
1430
|
+
SdkError | LimitExceededError | ServiceFailureError
|
|
1431
|
+
>;
|
|
1432
|
+
|
|
1433
|
+
/**
|
|
1434
|
+
* @see {@link GenerateOrganizationsAccessReportCommand}
|
|
1435
|
+
*/
|
|
1436
|
+
generateOrganizationsAccessReport(
|
|
1437
|
+
args: GenerateOrganizationsAccessReportCommandInput,
|
|
1438
|
+
options?: HttpHandlerOptions,
|
|
1439
|
+
): Effect.Effect<
|
|
1440
|
+
GenerateOrganizationsAccessReportCommandOutput,
|
|
1441
|
+
SdkError | ReportGenerationLimitExceededError
|
|
1442
|
+
>;
|
|
1443
|
+
|
|
1444
|
+
/**
|
|
1445
|
+
* @see {@link GenerateServiceLastAccessedDetailsCommand}
|
|
1446
|
+
*/
|
|
1447
|
+
generateServiceLastAccessedDetails(
|
|
1448
|
+
args: GenerateServiceLastAccessedDetailsCommandInput,
|
|
1449
|
+
options?: HttpHandlerOptions,
|
|
1450
|
+
): Effect.Effect<
|
|
1451
|
+
GenerateServiceLastAccessedDetailsCommandOutput,
|
|
1452
|
+
SdkError | InvalidInputError | NoSuchEntityError
|
|
1453
|
+
>;
|
|
1454
|
+
|
|
1455
|
+
/**
|
|
1456
|
+
* @see {@link GetAccessKeyLastUsedCommand}
|
|
1457
|
+
*/
|
|
1458
|
+
getAccessKeyLastUsed(
|
|
1459
|
+
args: GetAccessKeyLastUsedCommandInput,
|
|
1460
|
+
options?: HttpHandlerOptions,
|
|
1461
|
+
): Effect.Effect<
|
|
1462
|
+
GetAccessKeyLastUsedCommandOutput,
|
|
1463
|
+
SdkError
|
|
1464
|
+
>;
|
|
1465
|
+
|
|
1466
|
+
/**
|
|
1467
|
+
* @see {@link GetAccountAuthorizationDetailsCommand}
|
|
1468
|
+
*/
|
|
1469
|
+
getAccountAuthorizationDetails(
|
|
1470
|
+
args: GetAccountAuthorizationDetailsCommandInput,
|
|
1471
|
+
options?: HttpHandlerOptions,
|
|
1472
|
+
): Effect.Effect<
|
|
1473
|
+
GetAccountAuthorizationDetailsCommandOutput,
|
|
1474
|
+
SdkError | ServiceFailureError
|
|
1475
|
+
>;
|
|
1476
|
+
|
|
1477
|
+
/**
|
|
1478
|
+
* @see {@link GetAccountPasswordPolicyCommand}
|
|
1479
|
+
*/
|
|
1480
|
+
getAccountPasswordPolicy(
|
|
1481
|
+
args: GetAccountPasswordPolicyCommandInput,
|
|
1482
|
+
options?: HttpHandlerOptions,
|
|
1483
|
+
): Effect.Effect<
|
|
1484
|
+
GetAccountPasswordPolicyCommandOutput,
|
|
1485
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1486
|
+
>;
|
|
1487
|
+
|
|
1488
|
+
/**
|
|
1489
|
+
* @see {@link GetAccountSummaryCommand}
|
|
1490
|
+
*/
|
|
1491
|
+
getAccountSummary(
|
|
1492
|
+
args: GetAccountSummaryCommandInput,
|
|
1493
|
+
options?: HttpHandlerOptions,
|
|
1494
|
+
): Effect.Effect<
|
|
1495
|
+
GetAccountSummaryCommandOutput,
|
|
1496
|
+
SdkError | ServiceFailureError
|
|
1497
|
+
>;
|
|
1498
|
+
|
|
1499
|
+
/**
|
|
1500
|
+
* @see {@link GetContextKeysForCustomPolicyCommand}
|
|
1501
|
+
*/
|
|
1502
|
+
getContextKeysForCustomPolicy(
|
|
1503
|
+
args: GetContextKeysForCustomPolicyCommandInput,
|
|
1504
|
+
options?: HttpHandlerOptions,
|
|
1505
|
+
): Effect.Effect<
|
|
1506
|
+
GetContextKeysForCustomPolicyCommandOutput,
|
|
1507
|
+
SdkError | InvalidInputError
|
|
1508
|
+
>;
|
|
1509
|
+
|
|
1510
|
+
/**
|
|
1511
|
+
* @see {@link GetContextKeysForPrincipalPolicyCommand}
|
|
1512
|
+
*/
|
|
1513
|
+
getContextKeysForPrincipalPolicy(
|
|
1514
|
+
args: GetContextKeysForPrincipalPolicyCommandInput,
|
|
1515
|
+
options?: HttpHandlerOptions,
|
|
1516
|
+
): Effect.Effect<
|
|
1517
|
+
GetContextKeysForPrincipalPolicyCommandOutput,
|
|
1518
|
+
SdkError | InvalidInputError | NoSuchEntityError
|
|
1519
|
+
>;
|
|
1520
|
+
|
|
1521
|
+
/**
|
|
1522
|
+
* @see {@link GetCredentialReportCommand}
|
|
1523
|
+
*/
|
|
1524
|
+
getCredentialReport(
|
|
1525
|
+
args: GetCredentialReportCommandInput,
|
|
1526
|
+
options?: HttpHandlerOptions,
|
|
1527
|
+
): Effect.Effect<
|
|
1528
|
+
GetCredentialReportCommandOutput,
|
|
1529
|
+
| SdkError
|
|
1530
|
+
| CredentialReportExpiredError
|
|
1531
|
+
| CredentialReportNotPresentError
|
|
1532
|
+
| CredentialReportNotReadyError
|
|
1533
|
+
| ServiceFailureError
|
|
1534
|
+
>;
|
|
1535
|
+
|
|
1536
|
+
/**
|
|
1537
|
+
* @see {@link GetGroupCommand}
|
|
1538
|
+
*/
|
|
1539
|
+
getGroup(
|
|
1540
|
+
args: GetGroupCommandInput,
|
|
1541
|
+
options?: HttpHandlerOptions,
|
|
1542
|
+
): Effect.Effect<
|
|
1543
|
+
GetGroupCommandOutput,
|
|
1544
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1545
|
+
>;
|
|
1546
|
+
|
|
1547
|
+
/**
|
|
1548
|
+
* @see {@link GetGroupPolicyCommand}
|
|
1549
|
+
*/
|
|
1550
|
+
getGroupPolicy(
|
|
1551
|
+
args: GetGroupPolicyCommandInput,
|
|
1552
|
+
options?: HttpHandlerOptions,
|
|
1553
|
+
): Effect.Effect<
|
|
1554
|
+
GetGroupPolicyCommandOutput,
|
|
1555
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1556
|
+
>;
|
|
1557
|
+
|
|
1558
|
+
/**
|
|
1559
|
+
* @see {@link GetInstanceProfileCommand}
|
|
1560
|
+
*/
|
|
1561
|
+
getInstanceProfile(
|
|
1562
|
+
args: GetInstanceProfileCommandInput,
|
|
1563
|
+
options?: HttpHandlerOptions,
|
|
1564
|
+
): Effect.Effect<
|
|
1565
|
+
GetInstanceProfileCommandOutput,
|
|
1566
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1567
|
+
>;
|
|
1568
|
+
|
|
1569
|
+
/**
|
|
1570
|
+
* @see {@link GetLoginProfileCommand}
|
|
1571
|
+
*/
|
|
1572
|
+
getLoginProfile(
|
|
1573
|
+
args: GetLoginProfileCommandInput,
|
|
1574
|
+
options?: HttpHandlerOptions,
|
|
1575
|
+
): Effect.Effect<
|
|
1576
|
+
GetLoginProfileCommandOutput,
|
|
1577
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1578
|
+
>;
|
|
1579
|
+
|
|
1580
|
+
/**
|
|
1581
|
+
* @see {@link GetMFADeviceCommand}
|
|
1582
|
+
*/
|
|
1583
|
+
getMFADevice(
|
|
1584
|
+
args: GetMFADeviceCommandInput,
|
|
1585
|
+
options?: HttpHandlerOptions,
|
|
1586
|
+
): Effect.Effect<
|
|
1587
|
+
GetMFADeviceCommandOutput,
|
|
1588
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1589
|
+
>;
|
|
1590
|
+
|
|
1591
|
+
/**
|
|
1592
|
+
* @see {@link GetOpenIDConnectProviderCommand}
|
|
1593
|
+
*/
|
|
1594
|
+
getOpenIDConnectProvider(
|
|
1595
|
+
args: GetOpenIDConnectProviderCommandInput,
|
|
1596
|
+
options?: HttpHandlerOptions,
|
|
1597
|
+
): Effect.Effect<
|
|
1598
|
+
GetOpenIDConnectProviderCommandOutput,
|
|
1599
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1600
|
+
>;
|
|
1601
|
+
|
|
1602
|
+
/**
|
|
1603
|
+
* @see {@link GetOrganizationsAccessReportCommand}
|
|
1604
|
+
*/
|
|
1605
|
+
getOrganizationsAccessReport(
|
|
1606
|
+
args: GetOrganizationsAccessReportCommandInput,
|
|
1607
|
+
options?: HttpHandlerOptions,
|
|
1608
|
+
): Effect.Effect<
|
|
1609
|
+
GetOrganizationsAccessReportCommandOutput,
|
|
1610
|
+
SdkError | NoSuchEntityError
|
|
1611
|
+
>;
|
|
1612
|
+
|
|
1613
|
+
/**
|
|
1614
|
+
* @see {@link GetPolicyCommand}
|
|
1615
|
+
*/
|
|
1616
|
+
getPolicy(
|
|
1617
|
+
args: GetPolicyCommandInput,
|
|
1618
|
+
options?: HttpHandlerOptions,
|
|
1619
|
+
): Effect.Effect<
|
|
1620
|
+
GetPolicyCommandOutput,
|
|
1621
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1622
|
+
>;
|
|
1623
|
+
|
|
1624
|
+
/**
|
|
1625
|
+
* @see {@link GetPolicyVersionCommand}
|
|
1626
|
+
*/
|
|
1627
|
+
getPolicyVersion(
|
|
1628
|
+
args: GetPolicyVersionCommandInput,
|
|
1629
|
+
options?: HttpHandlerOptions,
|
|
1630
|
+
): Effect.Effect<
|
|
1631
|
+
GetPolicyVersionCommandOutput,
|
|
1632
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1633
|
+
>;
|
|
1634
|
+
|
|
1635
|
+
/**
|
|
1636
|
+
* @see {@link GetRoleCommand}
|
|
1637
|
+
*/
|
|
1638
|
+
getRole(
|
|
1639
|
+
args: GetRoleCommandInput,
|
|
1640
|
+
options?: HttpHandlerOptions,
|
|
1641
|
+
): Effect.Effect<
|
|
1642
|
+
GetRoleCommandOutput,
|
|
1643
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1644
|
+
>;
|
|
1645
|
+
|
|
1646
|
+
/**
|
|
1647
|
+
* @see {@link GetRolePolicyCommand}
|
|
1648
|
+
*/
|
|
1649
|
+
getRolePolicy(
|
|
1650
|
+
args: GetRolePolicyCommandInput,
|
|
1651
|
+
options?: HttpHandlerOptions,
|
|
1652
|
+
): Effect.Effect<
|
|
1653
|
+
GetRolePolicyCommandOutput,
|
|
1654
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1655
|
+
>;
|
|
1656
|
+
|
|
1657
|
+
/**
|
|
1658
|
+
* @see {@link GetSAMLProviderCommand}
|
|
1659
|
+
*/
|
|
1660
|
+
getSAMLProvider(
|
|
1661
|
+
args: GetSAMLProviderCommandInput,
|
|
1662
|
+
options?: HttpHandlerOptions,
|
|
1663
|
+
): Effect.Effect<
|
|
1664
|
+
GetSAMLProviderCommandOutput,
|
|
1665
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1666
|
+
>;
|
|
1667
|
+
|
|
1668
|
+
/**
|
|
1669
|
+
* @see {@link GetSSHPublicKeyCommand}
|
|
1670
|
+
*/
|
|
1671
|
+
getSSHPublicKey(
|
|
1672
|
+
args: GetSSHPublicKeyCommandInput,
|
|
1673
|
+
options?: HttpHandlerOptions,
|
|
1674
|
+
): Effect.Effect<
|
|
1675
|
+
GetSSHPublicKeyCommandOutput,
|
|
1676
|
+
SdkError | NoSuchEntityError | UnrecognizedPublicKeyEncodingError
|
|
1677
|
+
>;
|
|
1678
|
+
|
|
1679
|
+
/**
|
|
1680
|
+
* @see {@link GetServerCertificateCommand}
|
|
1681
|
+
*/
|
|
1682
|
+
getServerCertificate(
|
|
1683
|
+
args: GetServerCertificateCommandInput,
|
|
1684
|
+
options?: HttpHandlerOptions,
|
|
1685
|
+
): Effect.Effect<
|
|
1686
|
+
GetServerCertificateCommandOutput,
|
|
1687
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1688
|
+
>;
|
|
1689
|
+
|
|
1690
|
+
/**
|
|
1691
|
+
* @see {@link GetServiceLastAccessedDetailsCommand}
|
|
1692
|
+
*/
|
|
1693
|
+
getServiceLastAccessedDetails(
|
|
1694
|
+
args: GetServiceLastAccessedDetailsCommandInput,
|
|
1695
|
+
options?: HttpHandlerOptions,
|
|
1696
|
+
): Effect.Effect<
|
|
1697
|
+
GetServiceLastAccessedDetailsCommandOutput,
|
|
1698
|
+
SdkError | InvalidInputError | NoSuchEntityError
|
|
1699
|
+
>;
|
|
1700
|
+
|
|
1701
|
+
/**
|
|
1702
|
+
* @see {@link GetServiceLastAccessedDetailsWithEntitiesCommand}
|
|
1703
|
+
*/
|
|
1704
|
+
getServiceLastAccessedDetailsWithEntities(
|
|
1705
|
+
args: GetServiceLastAccessedDetailsWithEntitiesCommandInput,
|
|
1706
|
+
options?: HttpHandlerOptions,
|
|
1707
|
+
): Effect.Effect<
|
|
1708
|
+
GetServiceLastAccessedDetailsWithEntitiesCommandOutput,
|
|
1709
|
+
SdkError | InvalidInputError | NoSuchEntityError
|
|
1710
|
+
>;
|
|
1711
|
+
|
|
1712
|
+
/**
|
|
1713
|
+
* @see {@link GetServiceLinkedRoleDeletionStatusCommand}
|
|
1714
|
+
*/
|
|
1715
|
+
getServiceLinkedRoleDeletionStatus(
|
|
1716
|
+
args: GetServiceLinkedRoleDeletionStatusCommandInput,
|
|
1717
|
+
options?: HttpHandlerOptions,
|
|
1718
|
+
): Effect.Effect<
|
|
1719
|
+
GetServiceLinkedRoleDeletionStatusCommandOutput,
|
|
1720
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1721
|
+
>;
|
|
1722
|
+
|
|
1723
|
+
/**
|
|
1724
|
+
* @see {@link GetUserCommand}
|
|
1725
|
+
*/
|
|
1726
|
+
getUser(
|
|
1727
|
+
args: GetUserCommandInput,
|
|
1728
|
+
options?: HttpHandlerOptions,
|
|
1729
|
+
): Effect.Effect<
|
|
1730
|
+
GetUserCommandOutput,
|
|
1731
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1732
|
+
>;
|
|
1733
|
+
|
|
1734
|
+
/**
|
|
1735
|
+
* @see {@link GetUserPolicyCommand}
|
|
1736
|
+
*/
|
|
1737
|
+
getUserPolicy(
|
|
1738
|
+
args: GetUserPolicyCommandInput,
|
|
1739
|
+
options?: HttpHandlerOptions,
|
|
1740
|
+
): Effect.Effect<
|
|
1741
|
+
GetUserPolicyCommandOutput,
|
|
1742
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1743
|
+
>;
|
|
1744
|
+
|
|
1745
|
+
/**
|
|
1746
|
+
* @see {@link ListAccessKeysCommand}
|
|
1747
|
+
*/
|
|
1748
|
+
listAccessKeys(
|
|
1749
|
+
args: ListAccessKeysCommandInput,
|
|
1750
|
+
options?: HttpHandlerOptions,
|
|
1751
|
+
): Effect.Effect<
|
|
1752
|
+
ListAccessKeysCommandOutput,
|
|
1753
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1754
|
+
>;
|
|
1755
|
+
|
|
1756
|
+
/**
|
|
1757
|
+
* @see {@link ListAccountAliasesCommand}
|
|
1758
|
+
*/
|
|
1759
|
+
listAccountAliases(
|
|
1760
|
+
args: ListAccountAliasesCommandInput,
|
|
1761
|
+
options?: HttpHandlerOptions,
|
|
1762
|
+
): Effect.Effect<
|
|
1763
|
+
ListAccountAliasesCommandOutput,
|
|
1764
|
+
SdkError | ServiceFailureError
|
|
1765
|
+
>;
|
|
1766
|
+
|
|
1767
|
+
/**
|
|
1768
|
+
* @see {@link ListAttachedGroupPoliciesCommand}
|
|
1769
|
+
*/
|
|
1770
|
+
listAttachedGroupPolicies(
|
|
1771
|
+
args: ListAttachedGroupPoliciesCommandInput,
|
|
1772
|
+
options?: HttpHandlerOptions,
|
|
1773
|
+
): Effect.Effect<
|
|
1774
|
+
ListAttachedGroupPoliciesCommandOutput,
|
|
1775
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1776
|
+
>;
|
|
1777
|
+
|
|
1778
|
+
/**
|
|
1779
|
+
* @see {@link ListAttachedRolePoliciesCommand}
|
|
1780
|
+
*/
|
|
1781
|
+
listAttachedRolePolicies(
|
|
1782
|
+
args: ListAttachedRolePoliciesCommandInput,
|
|
1783
|
+
options?: HttpHandlerOptions,
|
|
1784
|
+
): Effect.Effect<
|
|
1785
|
+
ListAttachedRolePoliciesCommandOutput,
|
|
1786
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1787
|
+
>;
|
|
1788
|
+
|
|
1789
|
+
/**
|
|
1790
|
+
* @see {@link ListAttachedUserPoliciesCommand}
|
|
1791
|
+
*/
|
|
1792
|
+
listAttachedUserPolicies(
|
|
1793
|
+
args: ListAttachedUserPoliciesCommandInput,
|
|
1794
|
+
options?: HttpHandlerOptions,
|
|
1795
|
+
): Effect.Effect<
|
|
1796
|
+
ListAttachedUserPoliciesCommandOutput,
|
|
1797
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1798
|
+
>;
|
|
1799
|
+
|
|
1800
|
+
/**
|
|
1801
|
+
* @see {@link ListEntitiesForPolicyCommand}
|
|
1802
|
+
*/
|
|
1803
|
+
listEntitiesForPolicy(
|
|
1804
|
+
args: ListEntitiesForPolicyCommandInput,
|
|
1805
|
+
options?: HttpHandlerOptions,
|
|
1806
|
+
): Effect.Effect<
|
|
1807
|
+
ListEntitiesForPolicyCommandOutput,
|
|
1808
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1809
|
+
>;
|
|
1810
|
+
|
|
1811
|
+
/**
|
|
1812
|
+
* @see {@link ListGroupPoliciesCommand}
|
|
1813
|
+
*/
|
|
1814
|
+
listGroupPolicies(
|
|
1815
|
+
args: ListGroupPoliciesCommandInput,
|
|
1816
|
+
options?: HttpHandlerOptions,
|
|
1817
|
+
): Effect.Effect<
|
|
1818
|
+
ListGroupPoliciesCommandOutput,
|
|
1819
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1820
|
+
>;
|
|
1821
|
+
|
|
1822
|
+
/**
|
|
1823
|
+
* @see {@link ListGroupsCommand}
|
|
1824
|
+
*/
|
|
1825
|
+
listGroups(
|
|
1826
|
+
args: ListGroupsCommandInput,
|
|
1827
|
+
options?: HttpHandlerOptions,
|
|
1828
|
+
): Effect.Effect<
|
|
1829
|
+
ListGroupsCommandOutput,
|
|
1830
|
+
SdkError | ServiceFailureError
|
|
1831
|
+
>;
|
|
1832
|
+
|
|
1833
|
+
/**
|
|
1834
|
+
* @see {@link ListGroupsForUserCommand}
|
|
1835
|
+
*/
|
|
1836
|
+
listGroupsForUser(
|
|
1837
|
+
args: ListGroupsForUserCommandInput,
|
|
1838
|
+
options?: HttpHandlerOptions,
|
|
1839
|
+
): Effect.Effect<
|
|
1840
|
+
ListGroupsForUserCommandOutput,
|
|
1841
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1842
|
+
>;
|
|
1843
|
+
|
|
1844
|
+
/**
|
|
1845
|
+
* @see {@link ListInstanceProfileTagsCommand}
|
|
1846
|
+
*/
|
|
1847
|
+
listInstanceProfileTags(
|
|
1848
|
+
args: ListInstanceProfileTagsCommandInput,
|
|
1849
|
+
options?: HttpHandlerOptions,
|
|
1850
|
+
): Effect.Effect<
|
|
1851
|
+
ListInstanceProfileTagsCommandOutput,
|
|
1852
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1853
|
+
>;
|
|
1854
|
+
|
|
1855
|
+
/**
|
|
1856
|
+
* @see {@link ListInstanceProfilesCommand}
|
|
1857
|
+
*/
|
|
1858
|
+
listInstanceProfiles(
|
|
1859
|
+
args: ListInstanceProfilesCommandInput,
|
|
1860
|
+
options?: HttpHandlerOptions,
|
|
1861
|
+
): Effect.Effect<
|
|
1862
|
+
ListInstanceProfilesCommandOutput,
|
|
1863
|
+
SdkError | ServiceFailureError
|
|
1864
|
+
>;
|
|
1865
|
+
|
|
1866
|
+
/**
|
|
1867
|
+
* @see {@link ListInstanceProfilesForRoleCommand}
|
|
1868
|
+
*/
|
|
1869
|
+
listInstanceProfilesForRole(
|
|
1870
|
+
args: ListInstanceProfilesForRoleCommandInput,
|
|
1871
|
+
options?: HttpHandlerOptions,
|
|
1872
|
+
): Effect.Effect<
|
|
1873
|
+
ListInstanceProfilesForRoleCommandOutput,
|
|
1874
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1875
|
+
>;
|
|
1876
|
+
|
|
1877
|
+
/**
|
|
1878
|
+
* @see {@link ListMFADeviceTagsCommand}
|
|
1879
|
+
*/
|
|
1880
|
+
listMFADeviceTags(
|
|
1881
|
+
args: ListMFADeviceTagsCommandInput,
|
|
1882
|
+
options?: HttpHandlerOptions,
|
|
1883
|
+
): Effect.Effect<
|
|
1884
|
+
ListMFADeviceTagsCommandOutput,
|
|
1885
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1886
|
+
>;
|
|
1887
|
+
|
|
1888
|
+
/**
|
|
1889
|
+
* @see {@link ListMFADevicesCommand}
|
|
1890
|
+
*/
|
|
1891
|
+
listMFADevices(
|
|
1892
|
+
args: ListMFADevicesCommandInput,
|
|
1893
|
+
options?: HttpHandlerOptions,
|
|
1894
|
+
): Effect.Effect<
|
|
1895
|
+
ListMFADevicesCommandOutput,
|
|
1896
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1897
|
+
>;
|
|
1898
|
+
|
|
1899
|
+
/**
|
|
1900
|
+
* @see {@link ListOpenIDConnectProviderTagsCommand}
|
|
1901
|
+
*/
|
|
1902
|
+
listOpenIDConnectProviderTags(
|
|
1903
|
+
args: ListOpenIDConnectProviderTagsCommandInput,
|
|
1904
|
+
options?: HttpHandlerOptions,
|
|
1905
|
+
): Effect.Effect<
|
|
1906
|
+
ListOpenIDConnectProviderTagsCommandOutput,
|
|
1907
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1908
|
+
>;
|
|
1909
|
+
|
|
1910
|
+
/**
|
|
1911
|
+
* @see {@link ListOpenIDConnectProvidersCommand}
|
|
1912
|
+
*/
|
|
1913
|
+
listOpenIDConnectProviders(
|
|
1914
|
+
args: ListOpenIDConnectProvidersCommandInput,
|
|
1915
|
+
options?: HttpHandlerOptions,
|
|
1916
|
+
): Effect.Effect<
|
|
1917
|
+
ListOpenIDConnectProvidersCommandOutput,
|
|
1918
|
+
SdkError | ServiceFailureError
|
|
1919
|
+
>;
|
|
1920
|
+
|
|
1921
|
+
/**
|
|
1922
|
+
* @see {@link ListOrganizationsFeaturesCommand}
|
|
1923
|
+
*/
|
|
1924
|
+
listOrganizationsFeatures(
|
|
1925
|
+
args: ListOrganizationsFeaturesCommandInput,
|
|
1926
|
+
options?: HttpHandlerOptions,
|
|
1927
|
+
): Effect.Effect<
|
|
1928
|
+
ListOrganizationsFeaturesCommandOutput,
|
|
1929
|
+
| SdkError
|
|
1930
|
+
| AccountNotManagementOrDelegatedAdministratorError
|
|
1931
|
+
| OrganizationNotFoundError
|
|
1932
|
+
| OrganizationNotInAllFeaturesModeError
|
|
1933
|
+
| ServiceAccessNotEnabledError
|
|
1934
|
+
>;
|
|
1935
|
+
|
|
1936
|
+
/**
|
|
1937
|
+
* @see {@link ListPoliciesCommand}
|
|
1938
|
+
*/
|
|
1939
|
+
listPolicies(
|
|
1940
|
+
args: ListPoliciesCommandInput,
|
|
1941
|
+
options?: HttpHandlerOptions,
|
|
1942
|
+
): Effect.Effect<
|
|
1943
|
+
ListPoliciesCommandOutput,
|
|
1944
|
+
SdkError | ServiceFailureError
|
|
1945
|
+
>;
|
|
1946
|
+
|
|
1947
|
+
/**
|
|
1948
|
+
* @see {@link ListPoliciesGrantingServiceAccessCommand}
|
|
1949
|
+
*/
|
|
1950
|
+
listPoliciesGrantingServiceAccess(
|
|
1951
|
+
args: ListPoliciesGrantingServiceAccessCommandInput,
|
|
1952
|
+
options?: HttpHandlerOptions,
|
|
1953
|
+
): Effect.Effect<
|
|
1954
|
+
ListPoliciesGrantingServiceAccessCommandOutput,
|
|
1955
|
+
SdkError | InvalidInputError | NoSuchEntityError
|
|
1956
|
+
>;
|
|
1957
|
+
|
|
1958
|
+
/**
|
|
1959
|
+
* @see {@link ListPolicyTagsCommand}
|
|
1960
|
+
*/
|
|
1961
|
+
listPolicyTags(
|
|
1962
|
+
args: ListPolicyTagsCommandInput,
|
|
1963
|
+
options?: HttpHandlerOptions,
|
|
1964
|
+
): Effect.Effect<
|
|
1965
|
+
ListPolicyTagsCommandOutput,
|
|
1966
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1967
|
+
>;
|
|
1968
|
+
|
|
1969
|
+
/**
|
|
1970
|
+
* @see {@link ListPolicyVersionsCommand}
|
|
1971
|
+
*/
|
|
1972
|
+
listPolicyVersions(
|
|
1973
|
+
args: ListPolicyVersionsCommandInput,
|
|
1974
|
+
options?: HttpHandlerOptions,
|
|
1975
|
+
): Effect.Effect<
|
|
1976
|
+
ListPolicyVersionsCommandOutput,
|
|
1977
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
1978
|
+
>;
|
|
1979
|
+
|
|
1980
|
+
/**
|
|
1981
|
+
* @see {@link ListRolePoliciesCommand}
|
|
1982
|
+
*/
|
|
1983
|
+
listRolePolicies(
|
|
1984
|
+
args: ListRolePoliciesCommandInput,
|
|
1985
|
+
options?: HttpHandlerOptions,
|
|
1986
|
+
): Effect.Effect<
|
|
1987
|
+
ListRolePoliciesCommandOutput,
|
|
1988
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
1989
|
+
>;
|
|
1990
|
+
|
|
1991
|
+
/**
|
|
1992
|
+
* @see {@link ListRoleTagsCommand}
|
|
1993
|
+
*/
|
|
1994
|
+
listRoleTags(
|
|
1995
|
+
args: ListRoleTagsCommandInput,
|
|
1996
|
+
options?: HttpHandlerOptions,
|
|
1997
|
+
): Effect.Effect<
|
|
1998
|
+
ListRoleTagsCommandOutput,
|
|
1999
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
2000
|
+
>;
|
|
2001
|
+
|
|
2002
|
+
/**
|
|
2003
|
+
* @see {@link ListRolesCommand}
|
|
2004
|
+
*/
|
|
2005
|
+
listRoles(
|
|
2006
|
+
args: ListRolesCommandInput,
|
|
2007
|
+
options?: HttpHandlerOptions,
|
|
2008
|
+
): Effect.Effect<
|
|
2009
|
+
ListRolesCommandOutput,
|
|
2010
|
+
SdkError | ServiceFailureError
|
|
2011
|
+
>;
|
|
2012
|
+
|
|
2013
|
+
/**
|
|
2014
|
+
* @see {@link ListSAMLProviderTagsCommand}
|
|
2015
|
+
*/
|
|
2016
|
+
listSAMLProviderTags(
|
|
2017
|
+
args: ListSAMLProviderTagsCommandInput,
|
|
2018
|
+
options?: HttpHandlerOptions,
|
|
2019
|
+
): Effect.Effect<
|
|
2020
|
+
ListSAMLProviderTagsCommandOutput,
|
|
2021
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2022
|
+
>;
|
|
2023
|
+
|
|
2024
|
+
/**
|
|
2025
|
+
* @see {@link ListSAMLProvidersCommand}
|
|
2026
|
+
*/
|
|
2027
|
+
listSAMLProviders(
|
|
2028
|
+
args: ListSAMLProvidersCommandInput,
|
|
2029
|
+
options?: HttpHandlerOptions,
|
|
2030
|
+
): Effect.Effect<
|
|
2031
|
+
ListSAMLProvidersCommandOutput,
|
|
2032
|
+
SdkError | ServiceFailureError
|
|
2033
|
+
>;
|
|
2034
|
+
|
|
2035
|
+
/**
|
|
2036
|
+
* @see {@link ListSSHPublicKeysCommand}
|
|
2037
|
+
*/
|
|
2038
|
+
listSSHPublicKeys(
|
|
2039
|
+
args: ListSSHPublicKeysCommandInput,
|
|
2040
|
+
options?: HttpHandlerOptions,
|
|
2041
|
+
): Effect.Effect<
|
|
2042
|
+
ListSSHPublicKeysCommandOutput,
|
|
2043
|
+
SdkError | NoSuchEntityError
|
|
2044
|
+
>;
|
|
2045
|
+
|
|
2046
|
+
/**
|
|
2047
|
+
* @see {@link ListServerCertificateTagsCommand}
|
|
2048
|
+
*/
|
|
2049
|
+
listServerCertificateTags(
|
|
2050
|
+
args: ListServerCertificateTagsCommandInput,
|
|
2051
|
+
options?: HttpHandlerOptions,
|
|
2052
|
+
): Effect.Effect<
|
|
2053
|
+
ListServerCertificateTagsCommandOutput,
|
|
2054
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
2055
|
+
>;
|
|
2056
|
+
|
|
2057
|
+
/**
|
|
2058
|
+
* @see {@link ListServerCertificatesCommand}
|
|
2059
|
+
*/
|
|
2060
|
+
listServerCertificates(
|
|
2061
|
+
args: ListServerCertificatesCommandInput,
|
|
2062
|
+
options?: HttpHandlerOptions,
|
|
2063
|
+
): Effect.Effect<
|
|
2064
|
+
ListServerCertificatesCommandOutput,
|
|
2065
|
+
SdkError | ServiceFailureError
|
|
2066
|
+
>;
|
|
2067
|
+
|
|
2068
|
+
/**
|
|
2069
|
+
* @see {@link ListServiceSpecificCredentialsCommand}
|
|
2070
|
+
*/
|
|
2071
|
+
listServiceSpecificCredentials(
|
|
2072
|
+
args: ListServiceSpecificCredentialsCommandInput,
|
|
2073
|
+
options?: HttpHandlerOptions,
|
|
2074
|
+
): Effect.Effect<
|
|
2075
|
+
ListServiceSpecificCredentialsCommandOutput,
|
|
2076
|
+
SdkError | NoSuchEntityError | ServiceNotSupportedError
|
|
2077
|
+
>;
|
|
2078
|
+
|
|
2079
|
+
/**
|
|
2080
|
+
* @see {@link ListSigningCertificatesCommand}
|
|
2081
|
+
*/
|
|
2082
|
+
listSigningCertificates(
|
|
2083
|
+
args: ListSigningCertificatesCommandInput,
|
|
2084
|
+
options?: HttpHandlerOptions,
|
|
2085
|
+
): Effect.Effect<
|
|
2086
|
+
ListSigningCertificatesCommandOutput,
|
|
2087
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
2088
|
+
>;
|
|
2089
|
+
|
|
2090
|
+
/**
|
|
2091
|
+
* @see {@link ListUserPoliciesCommand}
|
|
2092
|
+
*/
|
|
2093
|
+
listUserPolicies(
|
|
2094
|
+
args: ListUserPoliciesCommandInput,
|
|
2095
|
+
options?: HttpHandlerOptions,
|
|
2096
|
+
): Effect.Effect<
|
|
2097
|
+
ListUserPoliciesCommandOutput,
|
|
2098
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
2099
|
+
>;
|
|
2100
|
+
|
|
2101
|
+
/**
|
|
2102
|
+
* @see {@link ListUserTagsCommand}
|
|
2103
|
+
*/
|
|
2104
|
+
listUserTags(
|
|
2105
|
+
args: ListUserTagsCommandInput,
|
|
2106
|
+
options?: HttpHandlerOptions,
|
|
2107
|
+
): Effect.Effect<
|
|
2108
|
+
ListUserTagsCommandOutput,
|
|
2109
|
+
SdkError | NoSuchEntityError | ServiceFailureError
|
|
2110
|
+
>;
|
|
2111
|
+
|
|
2112
|
+
/**
|
|
2113
|
+
* @see {@link ListUsersCommand}
|
|
2114
|
+
*/
|
|
2115
|
+
listUsers(
|
|
2116
|
+
args: ListUsersCommandInput,
|
|
2117
|
+
options?: HttpHandlerOptions,
|
|
2118
|
+
): Effect.Effect<
|
|
2119
|
+
ListUsersCommandOutput,
|
|
2120
|
+
SdkError | ServiceFailureError
|
|
2121
|
+
>;
|
|
2122
|
+
|
|
2123
|
+
/**
|
|
2124
|
+
* @see {@link ListVirtualMFADevicesCommand}
|
|
2125
|
+
*/
|
|
2126
|
+
listVirtualMFADevices(
|
|
2127
|
+
args: ListVirtualMFADevicesCommandInput,
|
|
2128
|
+
options?: HttpHandlerOptions,
|
|
2129
|
+
): Effect.Effect<
|
|
2130
|
+
ListVirtualMFADevicesCommandOutput,
|
|
2131
|
+
SdkError
|
|
2132
|
+
>;
|
|
2133
|
+
|
|
2134
|
+
/**
|
|
2135
|
+
* @see {@link PutGroupPolicyCommand}
|
|
2136
|
+
*/
|
|
2137
|
+
putGroupPolicy(
|
|
2138
|
+
args: PutGroupPolicyCommandInput,
|
|
2139
|
+
options?: HttpHandlerOptions,
|
|
2140
|
+
): Effect.Effect<
|
|
2141
|
+
PutGroupPolicyCommandOutput,
|
|
2142
|
+
SdkError | LimitExceededError | MalformedPolicyDocumentError | NoSuchEntityError | ServiceFailureError
|
|
2143
|
+
>;
|
|
2144
|
+
|
|
2145
|
+
/**
|
|
2146
|
+
* @see {@link PutRolePermissionsBoundaryCommand}
|
|
2147
|
+
*/
|
|
2148
|
+
putRolePermissionsBoundary(
|
|
2149
|
+
args: PutRolePermissionsBoundaryCommandInput,
|
|
2150
|
+
options?: HttpHandlerOptions,
|
|
2151
|
+
): Effect.Effect<
|
|
2152
|
+
PutRolePermissionsBoundaryCommandOutput,
|
|
2153
|
+
| SdkError
|
|
2154
|
+
| InvalidInputError
|
|
2155
|
+
| NoSuchEntityError
|
|
2156
|
+
| PolicyNotAttachableError
|
|
2157
|
+
| ServiceFailureError
|
|
2158
|
+
| UnmodifiableEntityError
|
|
2159
|
+
>;
|
|
2160
|
+
|
|
2161
|
+
/**
|
|
2162
|
+
* @see {@link PutRolePolicyCommand}
|
|
2163
|
+
*/
|
|
2164
|
+
putRolePolicy(
|
|
2165
|
+
args: PutRolePolicyCommandInput,
|
|
2166
|
+
options?: HttpHandlerOptions,
|
|
2167
|
+
): Effect.Effect<
|
|
2168
|
+
PutRolePolicyCommandOutput,
|
|
2169
|
+
| SdkError
|
|
2170
|
+
| LimitExceededError
|
|
2171
|
+
| MalformedPolicyDocumentError
|
|
2172
|
+
| NoSuchEntityError
|
|
2173
|
+
| ServiceFailureError
|
|
2174
|
+
| UnmodifiableEntityError
|
|
2175
|
+
>;
|
|
2176
|
+
|
|
2177
|
+
/**
|
|
2178
|
+
* @see {@link PutUserPermissionsBoundaryCommand}
|
|
2179
|
+
*/
|
|
2180
|
+
putUserPermissionsBoundary(
|
|
2181
|
+
args: PutUserPermissionsBoundaryCommandInput,
|
|
2182
|
+
options?: HttpHandlerOptions,
|
|
2183
|
+
): Effect.Effect<
|
|
2184
|
+
PutUserPermissionsBoundaryCommandOutput,
|
|
2185
|
+
SdkError | InvalidInputError | NoSuchEntityError | PolicyNotAttachableError | ServiceFailureError
|
|
2186
|
+
>;
|
|
2187
|
+
|
|
2188
|
+
/**
|
|
2189
|
+
* @see {@link PutUserPolicyCommand}
|
|
2190
|
+
*/
|
|
2191
|
+
putUserPolicy(
|
|
2192
|
+
args: PutUserPolicyCommandInput,
|
|
2193
|
+
options?: HttpHandlerOptions,
|
|
2194
|
+
): Effect.Effect<
|
|
2195
|
+
PutUserPolicyCommandOutput,
|
|
2196
|
+
SdkError | LimitExceededError | MalformedPolicyDocumentError | NoSuchEntityError | ServiceFailureError
|
|
2197
|
+
>;
|
|
2198
|
+
|
|
2199
|
+
/**
|
|
2200
|
+
* @see {@link RemoveClientIDFromOpenIDConnectProviderCommand}
|
|
2201
|
+
*/
|
|
2202
|
+
removeClientIDFromOpenIDConnectProvider(
|
|
2203
|
+
args: RemoveClientIDFromOpenIDConnectProviderCommandInput,
|
|
2204
|
+
options?: HttpHandlerOptions,
|
|
2205
|
+
): Effect.Effect<
|
|
2206
|
+
RemoveClientIDFromOpenIDConnectProviderCommandOutput,
|
|
2207
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2208
|
+
>;
|
|
2209
|
+
|
|
2210
|
+
/**
|
|
2211
|
+
* @see {@link RemoveRoleFromInstanceProfileCommand}
|
|
2212
|
+
*/
|
|
2213
|
+
removeRoleFromInstanceProfile(
|
|
2214
|
+
args: RemoveRoleFromInstanceProfileCommandInput,
|
|
2215
|
+
options?: HttpHandlerOptions,
|
|
2216
|
+
): Effect.Effect<
|
|
2217
|
+
RemoveRoleFromInstanceProfileCommandOutput,
|
|
2218
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
2219
|
+
>;
|
|
2220
|
+
|
|
2221
|
+
/**
|
|
2222
|
+
* @see {@link RemoveUserFromGroupCommand}
|
|
2223
|
+
*/
|
|
2224
|
+
removeUserFromGroup(
|
|
2225
|
+
args: RemoveUserFromGroupCommandInput,
|
|
2226
|
+
options?: HttpHandlerOptions,
|
|
2227
|
+
): Effect.Effect<
|
|
2228
|
+
RemoveUserFromGroupCommandOutput,
|
|
2229
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2230
|
+
>;
|
|
2231
|
+
|
|
2232
|
+
/**
|
|
2233
|
+
* @see {@link ResetServiceSpecificCredentialCommand}
|
|
2234
|
+
*/
|
|
2235
|
+
resetServiceSpecificCredential(
|
|
2236
|
+
args: ResetServiceSpecificCredentialCommandInput,
|
|
2237
|
+
options?: HttpHandlerOptions,
|
|
2238
|
+
): Effect.Effect<
|
|
2239
|
+
ResetServiceSpecificCredentialCommandOutput,
|
|
2240
|
+
SdkError | NoSuchEntityError
|
|
2241
|
+
>;
|
|
2242
|
+
|
|
2243
|
+
/**
|
|
2244
|
+
* @see {@link ResyncMFADeviceCommand}
|
|
2245
|
+
*/
|
|
2246
|
+
resyncMFADevice(
|
|
2247
|
+
args: ResyncMFADeviceCommandInput,
|
|
2248
|
+
options?: HttpHandlerOptions,
|
|
2249
|
+
): Effect.Effect<
|
|
2250
|
+
ResyncMFADeviceCommandOutput,
|
|
2251
|
+
| SdkError
|
|
2252
|
+
| ConcurrentModificationError
|
|
2253
|
+
| InvalidAuthenticationCodeError
|
|
2254
|
+
| LimitExceededError
|
|
2255
|
+
| NoSuchEntityError
|
|
2256
|
+
| ServiceFailureError
|
|
2257
|
+
>;
|
|
2258
|
+
|
|
2259
|
+
/**
|
|
2260
|
+
* @see {@link SetDefaultPolicyVersionCommand}
|
|
2261
|
+
*/
|
|
2262
|
+
setDefaultPolicyVersion(
|
|
2263
|
+
args: SetDefaultPolicyVersionCommandInput,
|
|
2264
|
+
options?: HttpHandlerOptions,
|
|
2265
|
+
): Effect.Effect<
|
|
2266
|
+
SetDefaultPolicyVersionCommandOutput,
|
|
2267
|
+
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2268
|
+
>;
|
|
2269
|
+
|
|
2270
|
+
/**
|
|
2271
|
+
* @see {@link SetSecurityTokenServicePreferencesCommand}
|
|
2272
|
+
*/
|
|
2273
|
+
setSecurityTokenServicePreferences(
|
|
2274
|
+
args: SetSecurityTokenServicePreferencesCommandInput,
|
|
2275
|
+
options?: HttpHandlerOptions,
|
|
2276
|
+
): Effect.Effect<
|
|
2277
|
+
SetSecurityTokenServicePreferencesCommandOutput,
|
|
2278
|
+
SdkError | ServiceFailureError
|
|
2279
|
+
>;
|
|
2280
|
+
|
|
2281
|
+
/**
|
|
2282
|
+
* @see {@link SimulateCustomPolicyCommand}
|
|
2283
|
+
*/
|
|
2284
|
+
simulateCustomPolicy(
|
|
2285
|
+
args: SimulateCustomPolicyCommandInput,
|
|
2286
|
+
options?: HttpHandlerOptions,
|
|
2287
|
+
): Effect.Effect<
|
|
2288
|
+
SimulateCustomPolicyCommandOutput,
|
|
2289
|
+
SdkError | InvalidInputError | PolicyEvaluationError
|
|
2290
|
+
>;
|
|
2291
|
+
|
|
2292
|
+
/**
|
|
2293
|
+
* @see {@link SimulatePrincipalPolicyCommand}
|
|
2294
|
+
*/
|
|
2295
|
+
simulatePrincipalPolicy(
|
|
2296
|
+
args: SimulatePrincipalPolicyCommandInput,
|
|
2297
|
+
options?: HttpHandlerOptions,
|
|
2298
|
+
): Effect.Effect<
|
|
2299
|
+
SimulatePrincipalPolicyCommandOutput,
|
|
2300
|
+
SdkError | InvalidInputError | NoSuchEntityError | PolicyEvaluationError
|
|
2301
|
+
>;
|
|
2302
|
+
|
|
2303
|
+
/**
|
|
2304
|
+
* @see {@link TagInstanceProfileCommand}
|
|
2305
|
+
*/
|
|
2306
|
+
tagInstanceProfile(
|
|
2307
|
+
args: TagInstanceProfileCommandInput,
|
|
2308
|
+
options?: HttpHandlerOptions,
|
|
2309
|
+
): Effect.Effect<
|
|
2310
|
+
TagInstanceProfileCommandOutput,
|
|
2311
|
+
| SdkError
|
|
2312
|
+
| ConcurrentModificationError
|
|
2313
|
+
| InvalidInputError
|
|
2314
|
+
| LimitExceededError
|
|
2315
|
+
| NoSuchEntityError
|
|
2316
|
+
| ServiceFailureError
|
|
2317
|
+
>;
|
|
2318
|
+
|
|
2319
|
+
/**
|
|
2320
|
+
* @see {@link TagMFADeviceCommand}
|
|
2321
|
+
*/
|
|
2322
|
+
tagMFADevice(
|
|
2323
|
+
args: TagMFADeviceCommandInput,
|
|
2324
|
+
options?: HttpHandlerOptions,
|
|
2325
|
+
): Effect.Effect<
|
|
2326
|
+
TagMFADeviceCommandOutput,
|
|
2327
|
+
| SdkError
|
|
2328
|
+
| ConcurrentModificationError
|
|
2329
|
+
| InvalidInputError
|
|
2330
|
+
| LimitExceededError
|
|
2331
|
+
| NoSuchEntityError
|
|
2332
|
+
| ServiceFailureError
|
|
2333
|
+
>;
|
|
2334
|
+
|
|
2335
|
+
/**
|
|
2336
|
+
* @see {@link TagOpenIDConnectProviderCommand}
|
|
2337
|
+
*/
|
|
2338
|
+
tagOpenIDConnectProvider(
|
|
2339
|
+
args: TagOpenIDConnectProviderCommandInput,
|
|
2340
|
+
options?: HttpHandlerOptions,
|
|
2341
|
+
): Effect.Effect<
|
|
2342
|
+
TagOpenIDConnectProviderCommandOutput,
|
|
2343
|
+
| SdkError
|
|
2344
|
+
| ConcurrentModificationError
|
|
2345
|
+
| InvalidInputError
|
|
2346
|
+
| LimitExceededError
|
|
2347
|
+
| NoSuchEntityError
|
|
2348
|
+
| ServiceFailureError
|
|
2349
|
+
>;
|
|
2350
|
+
|
|
2351
|
+
/**
|
|
2352
|
+
* @see {@link TagPolicyCommand}
|
|
2353
|
+
*/
|
|
2354
|
+
tagPolicy(
|
|
2355
|
+
args: TagPolicyCommandInput,
|
|
2356
|
+
options?: HttpHandlerOptions,
|
|
2357
|
+
): Effect.Effect<
|
|
2358
|
+
TagPolicyCommandOutput,
|
|
2359
|
+
| SdkError
|
|
2360
|
+
| ConcurrentModificationError
|
|
2361
|
+
| InvalidInputError
|
|
2362
|
+
| LimitExceededError
|
|
2363
|
+
| NoSuchEntityError
|
|
2364
|
+
| ServiceFailureError
|
|
2365
|
+
>;
|
|
2366
|
+
|
|
2367
|
+
/**
|
|
2368
|
+
* @see {@link TagRoleCommand}
|
|
2369
|
+
*/
|
|
2370
|
+
tagRole(
|
|
2371
|
+
args: TagRoleCommandInput,
|
|
2372
|
+
options?: HttpHandlerOptions,
|
|
2373
|
+
): Effect.Effect<
|
|
2374
|
+
TagRoleCommandOutput,
|
|
2375
|
+
| SdkError
|
|
2376
|
+
| ConcurrentModificationError
|
|
2377
|
+
| InvalidInputError
|
|
2378
|
+
| LimitExceededError
|
|
2379
|
+
| NoSuchEntityError
|
|
2380
|
+
| ServiceFailureError
|
|
2381
|
+
>;
|
|
2382
|
+
|
|
2383
|
+
/**
|
|
2384
|
+
* @see {@link TagSAMLProviderCommand}
|
|
2385
|
+
*/
|
|
2386
|
+
tagSAMLProvider(
|
|
2387
|
+
args: TagSAMLProviderCommandInput,
|
|
2388
|
+
options?: HttpHandlerOptions,
|
|
2389
|
+
): Effect.Effect<
|
|
2390
|
+
TagSAMLProviderCommandOutput,
|
|
2391
|
+
| SdkError
|
|
2392
|
+
| ConcurrentModificationError
|
|
2393
|
+
| InvalidInputError
|
|
2394
|
+
| LimitExceededError
|
|
2395
|
+
| NoSuchEntityError
|
|
2396
|
+
| ServiceFailureError
|
|
2397
|
+
>;
|
|
2398
|
+
|
|
2399
|
+
/**
|
|
2400
|
+
* @see {@link TagServerCertificateCommand}
|
|
2401
|
+
*/
|
|
2402
|
+
tagServerCertificate(
|
|
2403
|
+
args: TagServerCertificateCommandInput,
|
|
2404
|
+
options?: HttpHandlerOptions,
|
|
2405
|
+
): Effect.Effect<
|
|
2406
|
+
TagServerCertificateCommandOutput,
|
|
2407
|
+
| SdkError
|
|
2408
|
+
| ConcurrentModificationError
|
|
2409
|
+
| InvalidInputError
|
|
2410
|
+
| LimitExceededError
|
|
2411
|
+
| NoSuchEntityError
|
|
2412
|
+
| ServiceFailureError
|
|
2413
|
+
>;
|
|
2414
|
+
|
|
2415
|
+
/**
|
|
2416
|
+
* @see {@link TagUserCommand}
|
|
2417
|
+
*/
|
|
2418
|
+
tagUser(
|
|
2419
|
+
args: TagUserCommandInput,
|
|
2420
|
+
options?: HttpHandlerOptions,
|
|
2421
|
+
): Effect.Effect<
|
|
2422
|
+
TagUserCommandOutput,
|
|
2423
|
+
| SdkError
|
|
2424
|
+
| ConcurrentModificationError
|
|
2425
|
+
| InvalidInputError
|
|
2426
|
+
| LimitExceededError
|
|
2427
|
+
| NoSuchEntityError
|
|
2428
|
+
| ServiceFailureError
|
|
2429
|
+
>;
|
|
2430
|
+
|
|
2431
|
+
/**
|
|
2432
|
+
* @see {@link UntagInstanceProfileCommand}
|
|
2433
|
+
*/
|
|
2434
|
+
untagInstanceProfile(
|
|
2435
|
+
args: UntagInstanceProfileCommandInput,
|
|
2436
|
+
options?: HttpHandlerOptions,
|
|
2437
|
+
): Effect.Effect<
|
|
2438
|
+
UntagInstanceProfileCommandOutput,
|
|
2439
|
+
SdkError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2440
|
+
>;
|
|
2441
|
+
|
|
2442
|
+
/**
|
|
2443
|
+
* @see {@link UntagMFADeviceCommand}
|
|
2444
|
+
*/
|
|
2445
|
+
untagMFADevice(
|
|
2446
|
+
args: UntagMFADeviceCommandInput,
|
|
2447
|
+
options?: HttpHandlerOptions,
|
|
2448
|
+
): Effect.Effect<
|
|
2449
|
+
UntagMFADeviceCommandOutput,
|
|
2450
|
+
SdkError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2451
|
+
>;
|
|
2452
|
+
|
|
2453
|
+
/**
|
|
2454
|
+
* @see {@link UntagOpenIDConnectProviderCommand}
|
|
2455
|
+
*/
|
|
2456
|
+
untagOpenIDConnectProvider(
|
|
2457
|
+
args: UntagOpenIDConnectProviderCommandInput,
|
|
2458
|
+
options?: HttpHandlerOptions,
|
|
2459
|
+
): Effect.Effect<
|
|
2460
|
+
UntagOpenIDConnectProviderCommandOutput,
|
|
2461
|
+
SdkError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2462
|
+
>;
|
|
2463
|
+
|
|
2464
|
+
/**
|
|
2465
|
+
* @see {@link UntagPolicyCommand}
|
|
2466
|
+
*/
|
|
2467
|
+
untagPolicy(
|
|
2468
|
+
args: UntagPolicyCommandInput,
|
|
2469
|
+
options?: HttpHandlerOptions,
|
|
2470
|
+
): Effect.Effect<
|
|
2471
|
+
UntagPolicyCommandOutput,
|
|
2472
|
+
SdkError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2473
|
+
>;
|
|
2474
|
+
|
|
2475
|
+
/**
|
|
2476
|
+
* @see {@link UntagRoleCommand}
|
|
2477
|
+
*/
|
|
2478
|
+
untagRole(
|
|
2479
|
+
args: UntagRoleCommandInput,
|
|
2480
|
+
options?: HttpHandlerOptions,
|
|
2481
|
+
): Effect.Effect<
|
|
2482
|
+
UntagRoleCommandOutput,
|
|
2483
|
+
SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
|
|
2484
|
+
>;
|
|
2485
|
+
|
|
2486
|
+
/**
|
|
2487
|
+
* @see {@link UntagSAMLProviderCommand}
|
|
2488
|
+
*/
|
|
2489
|
+
untagSAMLProvider(
|
|
2490
|
+
args: UntagSAMLProviderCommandInput,
|
|
2491
|
+
options?: HttpHandlerOptions,
|
|
2492
|
+
): Effect.Effect<
|
|
2493
|
+
UntagSAMLProviderCommandOutput,
|
|
2494
|
+
SdkError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2495
|
+
>;
|
|
2496
|
+
|
|
2497
|
+
/**
|
|
2498
|
+
* @see {@link UntagServerCertificateCommand}
|
|
2499
|
+
*/
|
|
2500
|
+
untagServerCertificate(
|
|
2501
|
+
args: UntagServerCertificateCommandInput,
|
|
2502
|
+
options?: HttpHandlerOptions,
|
|
2503
|
+
): Effect.Effect<
|
|
2504
|
+
UntagServerCertificateCommandOutput,
|
|
2505
|
+
SdkError | ConcurrentModificationError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2506
|
+
>;
|
|
2507
|
+
|
|
2508
|
+
/**
|
|
2509
|
+
* @see {@link UntagUserCommand}
|
|
2510
|
+
*/
|
|
2511
|
+
untagUser(
|
|
2512
|
+
args: UntagUserCommandInput,
|
|
2513
|
+
options?: HttpHandlerOptions,
|
|
2514
|
+
): Effect.Effect<
|
|
2515
|
+
UntagUserCommandOutput,
|
|
2516
|
+
SdkError | ConcurrentModificationError | NoSuchEntityError | ServiceFailureError
|
|
2517
|
+
>;
|
|
2518
|
+
|
|
2519
|
+
/**
|
|
2520
|
+
* @see {@link UpdateAccessKeyCommand}
|
|
2521
|
+
*/
|
|
2522
|
+
updateAccessKey(
|
|
2523
|
+
args: UpdateAccessKeyCommandInput,
|
|
2524
|
+
options?: HttpHandlerOptions,
|
|
2525
|
+
): Effect.Effect<
|
|
2526
|
+
UpdateAccessKeyCommandOutput,
|
|
2527
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2528
|
+
>;
|
|
2529
|
+
|
|
2530
|
+
/**
|
|
2531
|
+
* @see {@link UpdateAccountPasswordPolicyCommand}
|
|
2532
|
+
*/
|
|
2533
|
+
updateAccountPasswordPolicy(
|
|
2534
|
+
args: UpdateAccountPasswordPolicyCommandInput,
|
|
2535
|
+
options?: HttpHandlerOptions,
|
|
2536
|
+
): Effect.Effect<
|
|
2537
|
+
UpdateAccountPasswordPolicyCommandOutput,
|
|
2538
|
+
SdkError | LimitExceededError | MalformedPolicyDocumentError | NoSuchEntityError | ServiceFailureError
|
|
2539
|
+
>;
|
|
2540
|
+
|
|
2541
|
+
/**
|
|
2542
|
+
* @see {@link UpdateAssumeRolePolicyCommand}
|
|
2543
|
+
*/
|
|
2544
|
+
updateAssumeRolePolicy(
|
|
2545
|
+
args: UpdateAssumeRolePolicyCommandInput,
|
|
2546
|
+
options?: HttpHandlerOptions,
|
|
2547
|
+
): Effect.Effect<
|
|
2548
|
+
UpdateAssumeRolePolicyCommandOutput,
|
|
2549
|
+
| SdkError
|
|
2550
|
+
| LimitExceededError
|
|
2551
|
+
| MalformedPolicyDocumentError
|
|
2552
|
+
| NoSuchEntityError
|
|
2553
|
+
| ServiceFailureError
|
|
2554
|
+
| UnmodifiableEntityError
|
|
2555
|
+
>;
|
|
2556
|
+
|
|
2557
|
+
/**
|
|
2558
|
+
* @see {@link UpdateGroupCommand}
|
|
2559
|
+
*/
|
|
2560
|
+
updateGroup(
|
|
2561
|
+
args: UpdateGroupCommandInput,
|
|
2562
|
+
options?: HttpHandlerOptions,
|
|
2563
|
+
): Effect.Effect<
|
|
2564
|
+
UpdateGroupCommandOutput,
|
|
2565
|
+
SdkError | EntityAlreadyExistsError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2566
|
+
>;
|
|
2567
|
+
|
|
2568
|
+
/**
|
|
2569
|
+
* @see {@link UpdateLoginProfileCommand}
|
|
2570
|
+
*/
|
|
2571
|
+
updateLoginProfile(
|
|
2572
|
+
args: UpdateLoginProfileCommandInput,
|
|
2573
|
+
options?: HttpHandlerOptions,
|
|
2574
|
+
): Effect.Effect<
|
|
2575
|
+
UpdateLoginProfileCommandOutput,
|
|
2576
|
+
| SdkError
|
|
2577
|
+
| EntityTemporarilyUnmodifiableError
|
|
2578
|
+
| LimitExceededError
|
|
2579
|
+
| NoSuchEntityError
|
|
2580
|
+
| PasswordPolicyViolationError
|
|
2581
|
+
| ServiceFailureError
|
|
2582
|
+
>;
|
|
2583
|
+
|
|
2584
|
+
/**
|
|
2585
|
+
* @see {@link UpdateOpenIDConnectProviderThumbprintCommand}
|
|
2586
|
+
*/
|
|
2587
|
+
updateOpenIDConnectProviderThumbprint(
|
|
2588
|
+
args: UpdateOpenIDConnectProviderThumbprintCommandInput,
|
|
2589
|
+
options?: HttpHandlerOptions,
|
|
2590
|
+
): Effect.Effect<
|
|
2591
|
+
UpdateOpenIDConnectProviderThumbprintCommandOutput,
|
|
2592
|
+
SdkError | InvalidInputError | NoSuchEntityError | ServiceFailureError
|
|
2593
|
+
>;
|
|
2594
|
+
|
|
2595
|
+
/**
|
|
2596
|
+
* @see {@link UpdateRoleCommand}
|
|
2597
|
+
*/
|
|
2598
|
+
updateRole(
|
|
2599
|
+
args: UpdateRoleCommandInput,
|
|
2600
|
+
options?: HttpHandlerOptions,
|
|
2601
|
+
): Effect.Effect<
|
|
2602
|
+
UpdateRoleCommandOutput,
|
|
2603
|
+
SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
2604
|
+
>;
|
|
2605
|
+
|
|
2606
|
+
/**
|
|
2607
|
+
* @see {@link UpdateRoleDescriptionCommand}
|
|
2608
|
+
*/
|
|
2609
|
+
updateRoleDescription(
|
|
2610
|
+
args: UpdateRoleDescriptionCommandInput,
|
|
2611
|
+
options?: HttpHandlerOptions,
|
|
2612
|
+
): Effect.Effect<
|
|
2613
|
+
UpdateRoleDescriptionCommandOutput,
|
|
2614
|
+
SdkError | NoSuchEntityError | ServiceFailureError | UnmodifiableEntityError
|
|
2615
|
+
>;
|
|
2616
|
+
|
|
2617
|
+
/**
|
|
2618
|
+
* @see {@link UpdateSAMLProviderCommand}
|
|
2619
|
+
*/
|
|
2620
|
+
updateSAMLProvider(
|
|
2621
|
+
args: UpdateSAMLProviderCommandInput,
|
|
2622
|
+
options?: HttpHandlerOptions,
|
|
2623
|
+
): Effect.Effect<
|
|
2624
|
+
UpdateSAMLProviderCommandOutput,
|
|
2625
|
+
SdkError | InvalidInputError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2626
|
+
>;
|
|
2627
|
+
|
|
2628
|
+
/**
|
|
2629
|
+
* @see {@link UpdateSSHPublicKeyCommand}
|
|
2630
|
+
*/
|
|
2631
|
+
updateSSHPublicKey(
|
|
2632
|
+
args: UpdateSSHPublicKeyCommandInput,
|
|
2633
|
+
options?: HttpHandlerOptions,
|
|
2634
|
+
): Effect.Effect<
|
|
2635
|
+
UpdateSSHPublicKeyCommandOutput,
|
|
2636
|
+
SdkError | NoSuchEntityError
|
|
2637
|
+
>;
|
|
2638
|
+
|
|
2639
|
+
/**
|
|
2640
|
+
* @see {@link UpdateServerCertificateCommand}
|
|
2641
|
+
*/
|
|
2642
|
+
updateServerCertificate(
|
|
2643
|
+
args: UpdateServerCertificateCommandInput,
|
|
2644
|
+
options?: HttpHandlerOptions,
|
|
2645
|
+
): Effect.Effect<
|
|
2646
|
+
UpdateServerCertificateCommandOutput,
|
|
2647
|
+
SdkError | EntityAlreadyExistsError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2648
|
+
>;
|
|
2649
|
+
|
|
2650
|
+
/**
|
|
2651
|
+
* @see {@link UpdateServiceSpecificCredentialCommand}
|
|
2652
|
+
*/
|
|
2653
|
+
updateServiceSpecificCredential(
|
|
2654
|
+
args: UpdateServiceSpecificCredentialCommandInput,
|
|
2655
|
+
options?: HttpHandlerOptions,
|
|
2656
|
+
): Effect.Effect<
|
|
2657
|
+
UpdateServiceSpecificCredentialCommandOutput,
|
|
2658
|
+
SdkError | NoSuchEntityError
|
|
2659
|
+
>;
|
|
2660
|
+
|
|
2661
|
+
/**
|
|
2662
|
+
* @see {@link UpdateSigningCertificateCommand}
|
|
2663
|
+
*/
|
|
2664
|
+
updateSigningCertificate(
|
|
2665
|
+
args: UpdateSigningCertificateCommandInput,
|
|
2666
|
+
options?: HttpHandlerOptions,
|
|
2667
|
+
): Effect.Effect<
|
|
2668
|
+
UpdateSigningCertificateCommandOutput,
|
|
2669
|
+
SdkError | LimitExceededError | NoSuchEntityError | ServiceFailureError
|
|
2670
|
+
>;
|
|
2671
|
+
|
|
2672
|
+
/**
|
|
2673
|
+
* @see {@link UpdateUserCommand}
|
|
2674
|
+
*/
|
|
2675
|
+
updateUser(
|
|
2676
|
+
args: UpdateUserCommandInput,
|
|
2677
|
+
options?: HttpHandlerOptions,
|
|
2678
|
+
): Effect.Effect<
|
|
2679
|
+
UpdateUserCommandOutput,
|
|
2680
|
+
| SdkError
|
|
2681
|
+
| ConcurrentModificationError
|
|
2682
|
+
| EntityAlreadyExistsError
|
|
2683
|
+
| EntityTemporarilyUnmodifiableError
|
|
2684
|
+
| LimitExceededError
|
|
2685
|
+
| NoSuchEntityError
|
|
2686
|
+
| ServiceFailureError
|
|
2687
|
+
>;
|
|
2688
|
+
|
|
2689
|
+
/**
|
|
2690
|
+
* @see {@link UploadSSHPublicKeyCommand}
|
|
2691
|
+
*/
|
|
2692
|
+
uploadSSHPublicKey(
|
|
2693
|
+
args: UploadSSHPublicKeyCommandInput,
|
|
2694
|
+
options?: HttpHandlerOptions,
|
|
2695
|
+
): Effect.Effect<
|
|
2696
|
+
UploadSSHPublicKeyCommandOutput,
|
|
2697
|
+
| SdkError
|
|
2698
|
+
| DuplicateSSHPublicKeyError
|
|
2699
|
+
| InvalidPublicKeyError
|
|
2700
|
+
| LimitExceededError
|
|
2701
|
+
| NoSuchEntityError
|
|
2702
|
+
| UnrecognizedPublicKeyEncodingError
|
|
2703
|
+
>;
|
|
2704
|
+
|
|
2705
|
+
/**
|
|
2706
|
+
* @see {@link UploadServerCertificateCommand}
|
|
2707
|
+
*/
|
|
2708
|
+
uploadServerCertificate(
|
|
2709
|
+
args: UploadServerCertificateCommandInput,
|
|
2710
|
+
options?: HttpHandlerOptions,
|
|
2711
|
+
): Effect.Effect<
|
|
2712
|
+
UploadServerCertificateCommandOutput,
|
|
2713
|
+
| SdkError
|
|
2714
|
+
| ConcurrentModificationError
|
|
2715
|
+
| EntityAlreadyExistsError
|
|
2716
|
+
| InvalidInputError
|
|
2717
|
+
| KeyPairMismatchError
|
|
2718
|
+
| LimitExceededError
|
|
2719
|
+
| MalformedCertificateError
|
|
2720
|
+
| ServiceFailureError
|
|
2721
|
+
>;
|
|
2722
|
+
|
|
2723
|
+
/**
|
|
2724
|
+
* @see {@link UploadSigningCertificateCommand}
|
|
2725
|
+
*/
|
|
2726
|
+
uploadSigningCertificate(
|
|
2727
|
+
args: UploadSigningCertificateCommandInput,
|
|
2728
|
+
options?: HttpHandlerOptions,
|
|
2729
|
+
): Effect.Effect<
|
|
2730
|
+
UploadSigningCertificateCommandOutput,
|
|
2731
|
+
| SdkError
|
|
2732
|
+
| ConcurrentModificationError
|
|
2733
|
+
| DuplicateCertificateError
|
|
2734
|
+
| EntityAlreadyExistsError
|
|
2735
|
+
| InvalidCertificateError
|
|
2736
|
+
| LimitExceededError
|
|
2737
|
+
| MalformedCertificateError
|
|
2738
|
+
| NoSuchEntityError
|
|
2739
|
+
| ServiceFailureError
|
|
2740
|
+
>;
|
|
2741
|
+
}
|
|
2742
|
+
|
|
2743
|
+
/**
|
|
2744
|
+
* @since 1.0.0
|
|
2745
|
+
* @category constructors
|
|
2746
|
+
*/
|
|
2747
|
+
export const makeIAMService = Effect.gen(function*() {
|
|
2748
|
+
const client = yield* Instance.IAMClientInstance;
|
|
2749
|
+
|
|
2750
|
+
return Service.fromClientAndCommands<IAMService$>(client, commands, AllServiceErrors);
|
|
2751
|
+
});
|
|
2752
|
+
|
|
2753
|
+
/**
|
|
2754
|
+
* @since 1.0.0
|
|
2755
|
+
* @category models
|
|
2756
|
+
*/
|
|
2757
|
+
export class IAMService extends Effect.Tag("@effect-aws/client-iam/IAMService")<
|
|
2758
|
+
IAMService,
|
|
2759
|
+
IAMService$
|
|
2760
|
+
>() {
|
|
2761
|
+
static readonly defaultLayer = Layer.effect(this, makeIAMService).pipe(Layer.provide(Instance.layer));
|
|
2762
|
+
static readonly layer = (config: IAMService.Config) =>
|
|
2763
|
+
Layer.effect(this, makeIAMService).pipe(
|
|
2764
|
+
Layer.provide(Instance.layer),
|
|
2765
|
+
Layer.provide(IAMServiceConfig.setIAMServiceConfig(config)),
|
|
2766
|
+
);
|
|
2767
|
+
static readonly baseLayer = (
|
|
2768
|
+
evaluate: (defaultConfig: IAMClientConfig) => IAMClient,
|
|
2769
|
+
) =>
|
|
2770
|
+
Layer.effect(this, makeIAMService).pipe(
|
|
2771
|
+
Layer.provide(
|
|
2772
|
+
Layer.effect(
|
|
2773
|
+
Instance.IAMClientInstance,
|
|
2774
|
+
Effect.map(IAMServiceConfig.toIAMClientConfig, evaluate),
|
|
2775
|
+
),
|
|
2776
|
+
),
|
|
2777
|
+
);
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2780
|
+
/**
|
|
2781
|
+
* @since 1.0.0
|
|
2782
|
+
*/
|
|
2783
|
+
export declare namespace IAMService {
|
|
2784
|
+
/**
|
|
2785
|
+
* @since 1.0.0
|
|
2786
|
+
*/
|
|
2787
|
+
export interface Config extends Omit<IAMClientConfig, "logger"> {
|
|
2788
|
+
readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
|
|
2789
|
+
}
|
|
2790
|
+
}
|