@aws-lite/iam-types 0.0.0 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +584 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1,40 +1,551 @@
1
1
  import {
2
2
  /* ! Do not remove IMPORTS_START / IMPORTS_END ! */
3
3
  // $IMPORTS_START
4
+ AddClientIDToOpenIDConnectProviderCommandOutput as AddClientIDToOpenIDConnectProviderResponse,
5
+ AddRoleToInstanceProfileCommandOutput as AddRoleToInstanceProfileResponse,
6
+ AddUserToGroupCommandOutput as AddUserToGroupResponse,
7
+ AttachGroupPolicyCommandOutput as AttachGroupPolicyResponse,
8
+ AttachRolePolicyCommandOutput as AttachRolePolicyResponse,
9
+ AttachUserPolicyCommandOutput as AttachUserPolicyResponse,
10
+ ChangePasswordCommandOutput as ChangePasswordResponse,
11
+ CreateAccessKeyCommandOutput as CreateAccessKeyResponse,
12
+ CreateAccountAliasCommandOutput as CreateAccountAliasResponse,
13
+ CreateGroupCommandOutput as CreateGroupResponse,
14
+ CreateInstanceProfileCommandOutput as CreateInstanceProfileResponse,
15
+ CreateLoginProfileCommandOutput as CreateLoginProfileResponse,
16
+ CreatePolicyCommandOutput as CreatePolicyResponse,
4
17
  CreateRoleCommandOutput as CreateRoleResponse,
18
+ CreateServiceLinkedRoleCommandOutput as CreateServiceLinkedRoleResponse,
19
+ CreateUserCommandOutput as CreateUserResponse,
20
+ DeleteAccessKeyCommandOutput as DeleteAccessKeyResponse,
21
+ DeleteAccountAliasCommandOutput as DeleteAccountAliasResponse,
22
+ DeleteGroupCommandOutput as DeleteGroupResponse,
23
+ DeleteGroupPolicyCommandOutput as DeleteGroupPolicyResponse,
24
+ DeleteInstanceProfileCommandOutput as DeleteInstanceProfileResponse,
25
+ DeleteLoginProfileCommandOutput as DeleteLoginProfileResponse,
26
+ DeletePolicyCommandOutput as DeletePolicyResponse,
5
27
  DeleteRoleCommandOutput as DeleteRoleResponse,
28
+ DeleteRolePolicyCommandOutput as DeleteRolePolicyResponse,
29
+ DeleteServiceLinkedRoleCommandOutput as DeleteServiceLinkedRoleResponse,
30
+ DeleteUserCommandOutput as DeleteUserResponse,
31
+ DeleteUserPolicyCommandOutput as DeleteUserPolicyResponse,
32
+ DetachGroupPolicyCommandOutput as DetachGroupPolicyResponse,
33
+ DetachRolePolicyCommandOutput as DetachRolePolicyResponse,
34
+ DetachUserPolicyCommandOutput as DetachUserPolicyResponse,
35
+ GetAccessKeyLastUsedCommandOutput as GetAccessKeyLastUsedResponse,
36
+ GetGroupCommandOutput as GetGroupResponse,
37
+ GetInstanceProfileCommandOutput as GetInstanceProfileResponse,
38
+ GetLoginProfileCommandOutput as GetLoginProfileResponse,
39
+ GetPolicyCommandOutput as GetPolicyResponse,
6
40
  GetRoleCommandOutput as GetRoleResponse,
41
+ GetUserCommandOutput as GetUserResponse,
42
+ ListAccessKeysCommandOutput as ListAccessKeysResponse,
43
+ ListAccountAliasesCommandOutput as ListAccountAliasesResponse,
44
+ ListAttachedGroupPoliciesCommandOutput as ListAttachedGroupPoliciesResponse,
45
+ ListAttachedRolePoliciesCommandOutput as ListAttachedRolePoliciesResponse,
46
+ ListAttachedUserPoliciesCommandOutput as ListAttachedUserPoliciesResponse,
47
+ ListGroupPoliciesCommandOutput as ListGroupPoliciesResponse,
48
+ ListGroupsCommandOutput as ListGroupsResponse,
49
+ ListGroupsForUserCommandOutput as ListGroupsForUserResponse,
50
+ ListInstanceProfilesCommandOutput as ListInstanceProfilesResponse,
51
+ ListInstanceProfilesForRoleCommandOutput as ListInstanceProfilesForRoleResponse,
52
+ ListInstanceProfileTagsCommandOutput as ListInstanceProfileTagsResponse,
53
+ ListPoliciesCommandOutput as ListPoliciesResponse,
54
+ ListPolicyTagsCommandOutput as ListPolicyTagsResponse,
55
+ ListRolePoliciesCommandOutput as ListRolePoliciesResponse,
56
+ ListRolesCommandOutput as ListRolesResponse,
57
+ ListRoleTagsCommandOutput as ListRoleTagsResponse,
58
+ ListUserPoliciesCommandOutput as ListUserPoliciesResponse,
59
+ ListUsersCommandOutput as ListUsersResponse,
60
+ ListUserTagsCommandOutput as ListUserTagsResponse,
61
+ PutGroupPolicyCommandOutput as PutGroupPolicyResponse,
62
+ PutRolePolicyCommandOutput as PutRolePolicyResponse,
63
+ PutUserPolicyCommandOutput as PutUserPolicyResponse,
64
+ RemoveUserFromGroupCommandOutput as RemoveUserFromGroupResponse,
65
+ RemoveRoleFromInstanceProfileCommandOutput as RemoveRoleFromInstanceProfileResponse,
66
+ TagInstanceProfileCommandOutput as TagInstanceProfileResponse,
67
+ TagPolicyCommandOutput as TagPolicyResponse,
68
+ TagRoleCommandOutput as TagRoleResponse,
69
+ TagUserCommandOutput as TagUserResponse,
70
+ UntagInstanceProfileCommandOutput as UntagInstanceProfileResponse,
71
+ UntagPolicyCommandOutput as UntagPolicyResponse,
72
+ UntagRoleCommandOutput as UntagRoleResponse,
73
+ UntagUserCommandOutput as UntagUserResponse,
74
+ UpdateAccessKeyCommandOutput as UpdateAccessKeyResponse,
75
+ UpdateAssumeRolePolicyCommandOutput as UpdateAssumeRolePolicyResponse,
76
+ UpdateGroupCommandOutput as UpdateGroupResponse,
77
+ UpdateLoginProfileCommandOutput as UpdateLoginProfileResponse,
7
78
  UpdateRoleCommandOutput as UpdateRoleResponse,
79
+ UpdateRoleDescriptionCommandOutput as UpdateRoleDescriptionResponse,
80
+ UpdateUserCommandOutput as UpdateUserResponse,
8
81
  // $IMPORTS_END
9
82
  } from "@aws-sdk/client-iam";
10
83
 
11
84
  declare interface AwsLiteIAM {
12
85
  /* ! Do not remove METHODS_START / METHODS_END ! */
13
86
  // $METHODS_START
87
+ /**
88
+ * @description
89
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AddClientIDToOpenIDConnectProvider.html IAM: AddClientIDToOpenIDConnectProvider}
90
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#AddClientIDToOpenIDConnectProvider IAM: AddClientIDToOpenIDConnectProvider}
91
+ */
92
+ AddClientIDToOpenIDConnectProvider: (input: { ClientID: string, OpenIDConnectProviderArn: string }) => Promise<AddClientIDToOpenIDConnectProviderResponse>
93
+ /**
94
+ * @description
95
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AddRoleToInstanceProfile.html IAM: AddRoleToInstanceProfile}
96
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#AddRoleToInstanceProfile IAM: AddRoleToInstanceProfile}
97
+ */
98
+ AddRoleToInstanceProfile: (input: { InstanceProfileName: string, RoleName: string }) => Promise<AddRoleToInstanceProfileResponse>
99
+ /**
100
+ * @description
101
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AddUserToGroup.html IAM: AddUserToGroup}
102
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#AddUserToGroup IAM: AddUserToGroup}
103
+ */
104
+ AddUserToGroup: (input: { GroupName: string, UserName: string }) => Promise<AddUserToGroupResponse>
105
+ /**
106
+ * @description
107
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AttachGroupPolicy.html IAM: AttachGroupPolicy}
108
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#AttachGroupPolicy IAM: AttachGroupPolicy}
109
+ */
110
+ AttachGroupPolicy: (input: { GroupName: string, PolicyArn: string }) => Promise<AttachGroupPolicyResponse>
111
+ /**
112
+ * @description
113
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AttachRolePolicy.html IAM: AttachRolePolicy}
114
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#AttachRolePolicy IAM: AttachRolePolicy}
115
+ */
116
+ AttachRolePolicy: (input: { PolicyArn: string, RoleName: string }) => Promise<AttachRolePolicyResponse>
117
+ /**
118
+ * @description
119
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AttachUserPolicy.html IAM: AttachUserPolicy}
120
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#AttachUserPolicy IAM: AttachUserPolicy}
121
+ */
122
+ AttachUserPolicy: (input: { PolicyArn: string, UserName: string }) => Promise<AttachUserPolicyResponse>
123
+ /**
124
+ * @description
125
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ChangePassword.html IAM: ChangePassword}
126
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ChangePassword IAM: ChangePassword}
127
+ */
128
+ ChangePassword: (input: { NewPassword: string, OldPassword: string }) => Promise<ChangePasswordResponse>
129
+ /**
130
+ * @description
131
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateAccessKey.html IAM: CreateAccessKey}
132
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#CreateAccessKey IAM: CreateAccessKey}
133
+ */
134
+ CreateAccessKey: (input: { UserName: string }) => Promise<CreateAccessKeyResponse>
135
+ /**
136
+ * @description
137
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateAccountAlias.html IAM: CreateAccountAlias}
138
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#CreateAccountAlias IAM: CreateAccountAlias}
139
+ */
140
+ CreateAccountAlias: (input: { AccountAlias: string }) => Promise<CreateAccountAliasResponse>
141
+ /**
142
+ * @description
143
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateGroup.html IAM: CreateGroup}
144
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#CreateGroup IAM: CreateGroup}
145
+ */
146
+ CreateGroup: (input: { GroupName: string, Path?: string }) => Promise<CreateGroupResponse>
147
+ /**
148
+ * @description
149
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateInstanceProfile.html IAM: CreateInstanceProfile}
150
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#CreateInstanceProfile IAM: CreateInstanceProfile}
151
+ */
152
+ CreateInstanceProfile: (input: { InstanceProfileName: string, Path?: string, Tags?: any[] }) => Promise<CreateInstanceProfileResponse>
153
+ /**
154
+ * @description
155
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateLoginProfile.html IAM: CreateLoginProfile}
156
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#CreateLoginProfile IAM: CreateLoginProfile}
157
+ */
158
+ CreateLoginProfile: (input: { Password: string, UserName: string, PasswordResetRequired?: boolean }) => Promise<CreateLoginProfileResponse>
159
+ /**
160
+ * @description
161
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreatePolicy.html IAM: CreatePolicy}
162
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#CreatePolicy IAM: CreatePolicy}
163
+ */
164
+ CreatePolicy: (input: { PolicyDocument: string | Record<string, any>, PolicyName: string, Description?: string, Path?: string, Tags?: any[] }) => Promise<CreatePolicyResponse>
14
165
  /**
15
166
  * @description
16
167
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateRole.html IAM: CreateRole}
17
168
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#CreateRole IAM: CreateRole}
18
169
  */
19
170
  CreateRole: (input: { AssumeRolePolicyDocument: string | Record<string, any>, RoleName: string, Description?: string, MaxSessionDuration?: number, Path?: string, PermissionsBoundary?: string, Tags?: any[] }) => Promise<CreateRoleResponse>
171
+ /**
172
+ * @description
173
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateServiceLinkedRole.html IAM: CreateServiceLinkedRole}
174
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#CreateServiceLinkedRole IAM: CreateServiceLinkedRole}
175
+ */
176
+ CreateServiceLinkedRole: (input: { AWSServiceName: string, CustomSuffix?: string, Description?: string }) => Promise<CreateServiceLinkedRoleResponse>
177
+ /**
178
+ * @description
179
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateUser.html IAM: CreateUser}
180
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#CreateUser IAM: CreateUser}
181
+ */
182
+ CreateUser: (input: { UserName: string, Path?: string, PermissionsBoundary?: string, Tags?: any[] }) => Promise<CreateUserResponse>
183
+ /**
184
+ * @description
185
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteAccessKey.html IAM: DeleteAccessKey}
186
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeleteAccessKey IAM: DeleteAccessKey}
187
+ */
188
+ DeleteAccessKey: (input: { AccessKeyId: string, UserName?: string }) => Promise<DeleteAccessKeyResponse>
189
+ /**
190
+ * @description
191
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteAccountAlias.html IAM: DeleteAccountAlias}
192
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeleteAccountAlias IAM: DeleteAccountAlias}
193
+ */
194
+ DeleteAccountAlias: (input: { AccountAlias: string }) => Promise<DeleteAccountAliasResponse>
195
+ /**
196
+ * @description
197
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteGroup.html IAM: DeleteGroup}
198
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeleteGroup IAM: DeleteGroup}
199
+ */
200
+ DeleteGroup: (input: { GroupName: string }) => Promise<DeleteGroupResponse>
201
+ /**
202
+ * @description
203
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteGroupPolicy.html IAM: DeleteGroupPolicy}
204
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeleteGroupPolicy IAM: DeleteGroupPolicy}
205
+ */
206
+ DeleteGroupPolicy: (input: { GroupName: string, PolicyName: string }) => Promise<DeleteGroupPolicyResponse>
207
+ /**
208
+ * @description
209
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteInstanceProfile.html IAM: DeleteInstanceProfile}
210
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeleteInstanceProfile IAM: DeleteInstanceProfile}
211
+ */
212
+ DeleteInstanceProfile: (input: { InstanceProfileName: string }) => Promise<DeleteInstanceProfileResponse>
213
+ /**
214
+ * @description
215
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteLoginProfile.html IAM: DeleteLoginProfile}
216
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeleteLoginProfile IAM: DeleteLoginProfile}
217
+ */
218
+ DeleteLoginProfile: (input: { UserName: string }) => Promise<DeleteLoginProfileResponse>
219
+ /**
220
+ * @description
221
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeletePolicy.html IAM: DeletePolicy}
222
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeletePolicy IAM: DeletePolicy}
223
+ */
224
+ DeletePolicy: (input: { PolicyArn: string }) => Promise<DeletePolicyResponse>
20
225
  /**
21
226
  * @description
22
227
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteRole.html IAM: DeleteRole}
23
228
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeleteRole IAM: DeleteRole}
24
229
  */
25
230
  DeleteRole: (input: { RoleName: string }) => Promise<DeleteRoleResponse>
231
+ /**
232
+ * @description
233
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteRolePolicy.html IAM: DeleteRolePolicy}
234
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeleteRolePolicy IAM: DeleteRolePolicy}
235
+ */
236
+ DeleteRolePolicy: (input: { RoleName: string, PolicyName: string }) => Promise<DeleteRolePolicyResponse>
237
+ /**
238
+ * @description
239
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteServiceLinkedRole.html IAM: DeleteServiceLinkedRole}
240
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeleteServiceLinkedRole IAM: DeleteServiceLinkedRole}
241
+ */
242
+ DeleteServiceLinkedRole: (input: { RoleName: string }) => Promise<DeleteServiceLinkedRoleResponse>
243
+ /**
244
+ * @description
245
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteUser.html IAM: DeleteUser}
246
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeleteUser IAM: DeleteUser}
247
+ */
248
+ DeleteUser: (input: { UserName: string }) => Promise<DeleteUserResponse>
249
+ /**
250
+ * @description
251
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteUserPolicy.html IAM: DeleteUserPolicy}
252
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DeleteUserPolicy IAM: DeleteUserPolicy}
253
+ */
254
+ DeleteUserPolicy: (input: { PolicyName: string, UserName: string }) => Promise<DeleteUserPolicyResponse>
255
+ /**
256
+ * @description
257
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DetachGroupPolicy.html IAM: DetachGroupPolicy}
258
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DetachGroupPolicy IAM: DetachGroupPolicy}
259
+ */
260
+ DetachGroupPolicy: (input: { GroupName: string, PolicyArn: string }) => Promise<DetachGroupPolicyResponse>
261
+ /**
262
+ * @description
263
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DetachRolePolicy.html IAM: DetachRolePolicy}
264
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DetachRolePolicy IAM: DetachRolePolicy}
265
+ */
266
+ DetachRolePolicy: (input: { PolicyArn: string, RoleName: string }) => Promise<DetachRolePolicyResponse>
267
+ /**
268
+ * @description
269
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DetachUserPolicy.html IAM: DetachUserPolicy}
270
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#DetachUserPolicy IAM: DetachUserPolicy}
271
+ */
272
+ DetachUserPolicy: (input: { PolicyArn: string, UserName: string }) => Promise<DetachUserPolicyResponse>
273
+ /**
274
+ * @description
275
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccessKeyLastUsed.html IAM: GetAccessKeyLastUsed}
276
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#GetAccessKeyLastUsed IAM: GetAccessKeyLastUsed}
277
+ */
278
+ GetAccessKeyLastUsed: (input: { AccessKeyId: string }) => Promise<GetAccessKeyLastUsedResponse>
279
+ /**
280
+ * @description
281
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetGroup.html IAM: GetGroup}
282
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#GetGroup IAM: GetGroup}
283
+ */
284
+ GetGroup: (input: { GroupName: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<GetGroupResponse>
285
+ /**
286
+ * @description
287
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetInstanceProfile.html IAM: GetInstanceProfile}
288
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#GetInstanceProfile IAM: GetInstanceProfile}
289
+ */
290
+ GetInstanceProfile: (input: { InstanceProfileName: string }) => Promise<GetInstanceProfileResponse>
291
+ /**
292
+ * @description
293
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetLoginProfile.html IAM: GetLoginProfile}
294
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#GetLoginProfile IAM: GetLoginProfile}
295
+ */
296
+ GetLoginProfile: (input: { UserName: string }) => Promise<GetLoginProfileResponse>
297
+ /**
298
+ * @description
299
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetPolicy.html IAM: GetPolicy}
300
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#GetPolicy IAM: GetPolicy}
301
+ */
302
+ GetPolicy: (input: { PolicyArn: string }) => Promise<GetPolicyResponse>
26
303
  /**
27
304
  * @description
28
305
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetRole.html IAM: GetRole}
29
306
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#GetRole IAM: GetRole}
30
307
  */
31
308
  GetRole: (input: { RoleName: string }) => Promise<GetRoleResponse>
309
+ /**
310
+ * @description
311
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetUser.html IAM: GetUser}
312
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#GetUser IAM: GetUser}
313
+ */
314
+ GetUser: (input: { UserName: string }) => Promise<GetUserResponse>
315
+ /**
316
+ * @description
317
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAccessKeys.html IAM: ListAccessKeys}
318
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListAccessKeys IAM: ListAccessKeys}
319
+ */
320
+ ListAccessKeys: (input: { Marker?: string, MaxItems?: number, UserName?: string, paginate?: boolean }) => Promise<ListAccessKeysResponse>
321
+ /**
322
+ * @description
323
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAccountAliases.html IAM: ListAccountAliases}
324
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListAccountAliases IAM: ListAccountAliases}
325
+ */
326
+ ListAccountAliases: (input: { Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListAccountAliasesResponse>
327
+ /**
328
+ * @description
329
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedGroupPolicies.html IAM: ListAttachedGroupPolicies}
330
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListAttachedGroupPolicies IAM: ListAttachedGroupPolicies}
331
+ */
332
+ ListAttachedGroupPolicies: (input: { GroupName: string, Marker?: string, PathPrefix?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListAttachedGroupPoliciesResponse>
333
+ /**
334
+ * @description
335
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedRolePolicies.html IAM: ListAttachedRolePolicies}
336
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListAttachedRolePolicies IAM: ListAttachedRolePolicies}
337
+ */
338
+ ListAttachedRolePolicies: (input: { RoleName: string, Marker?: string, PathPrefix?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListAttachedRolePoliciesResponse>
339
+ /**
340
+ * @description
341
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedUserPolicies.html IAM: ListAttachedUserPolicies}
342
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListAttachedUserPolicies IAM: ListAttachedUserPolicies}
343
+ */
344
+ ListAttachedUserPolicies: (input: { UserName: string, Marker?: string, PathPrefix?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListAttachedUserPoliciesResponse>
345
+ /**
346
+ * @description
347
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListGroupPolicies.html IAM: ListGroupPolicies}
348
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListGroupPolicies IAM: ListGroupPolicies}
349
+ */
350
+ ListGroupPolicies: (input: { GroupName: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListGroupPoliciesResponse>
351
+ /**
352
+ * @description
353
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListGroups.html IAM: ListGroups}
354
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListGroups IAM: ListGroups}
355
+ */
356
+ ListGroups: (input: { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean }) => Promise<ListGroupsResponse>
357
+ /**
358
+ * @description
359
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListGroupsForUser.html IAM: ListGroupsForUser}
360
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListGroupsForUser IAM: ListGroupsForUser}
361
+ */
362
+ ListGroupsForUser: (input: { UserName: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListGroupsForUserResponse>
363
+ /**
364
+ * @description
365
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListInstanceProfiles.html IAM: ListInstanceProfiles}
366
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListInstanceProfiles IAM: ListInstanceProfiles}
367
+ */
368
+ ListInstanceProfiles: (input: { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean }) => Promise<ListInstanceProfilesResponse>
369
+ /**
370
+ * @description
371
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListInstanceProfilesForRole.html IAM: ListInstanceProfilesForRole}
372
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListInstanceProfilesForRole IAM: ListInstanceProfilesForRole}
373
+ */
374
+ ListInstanceProfilesForRole: (input: { RoleName: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListInstanceProfilesForRoleResponse>
375
+ /**
376
+ * @description
377
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListInstanceProfileTags.html IAM: ListInstanceProfileTags}
378
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListInstanceProfileTags IAM: ListInstanceProfileTags}
379
+ */
380
+ ListInstanceProfileTags: (input: { InstanceProfileName: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListInstanceProfileTagsResponse>
381
+ /**
382
+ * @description
383
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPolicies.html IAM: ListPolicies}
384
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListPolicies IAM: ListPolicies}
385
+ */
386
+ ListPolicies: (input: { Marker?: string, MaxItems?: number, OnlyAttached?: boolean, PathPrefix?: string, PolicyUsageFilter?: string, Scope?: string, paginate?: boolean }) => Promise<ListPoliciesResponse>
387
+ /**
388
+ * @description
389
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPolicyTags.html IAM: ListPolicyTags}
390
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListPolicyTags IAM: ListPolicyTags}
391
+ */
392
+ ListPolicyTags: (input: { PolicyArn: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListPolicyTagsResponse>
393
+ /**
394
+ * @description
395
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListRolePolicies.html IAM: ListRolePolicies}
396
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListRolePolicies IAM: ListRolePolicies}
397
+ */
398
+ ListRolePolicies: (input: { RoleName: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListRolePoliciesResponse>
399
+ /**
400
+ * @description
401
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListRoles.html IAM: ListRoles}
402
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListRoles IAM: ListRoles}
403
+ */
404
+ ListRoles: (input: { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean }) => Promise<ListRolesResponse>
405
+ /**
406
+ * @description
407
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListRoleTags.html IAM: ListRoleTags}
408
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListRoleTags IAM: ListRoleTags}
409
+ */
410
+ ListRoleTags: (input: { RoleName: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListRoleTagsResponse>
411
+ /**
412
+ * @description
413
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListUserPolicies.html IAM: ListUserPolicies}
414
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListUserPolicies IAM: ListUserPolicies}
415
+ */
416
+ ListUserPolicies: (input: { UserName: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListUserPoliciesResponse>
417
+ /**
418
+ * @description
419
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListUsers.html IAM: ListUsers}
420
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListUsers IAM: ListUsers}
421
+ */
422
+ ListUsers: (input: { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean }) => Promise<ListUsersResponse>
423
+ /**
424
+ * @description
425
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListUserTags.html IAM: ListUserTags}
426
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#ListUserTags IAM: ListUserTags}
427
+ */
428
+ ListUserTags: (input: { UserName: string, Marker?: string, MaxItems?: number, paginate?: boolean }) => Promise<ListUserTagsResponse>
429
+ /**
430
+ * @description
431
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_PutGroupPolicy.html IAM: PutGroupPolicy}
432
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#PutGroupPolicy IAM: PutGroupPolicy}
433
+ */
434
+ PutGroupPolicy: (input: { GroupName: string, PolicyDocument: string | Record<string, any>, PolicyName: string }) => Promise<PutGroupPolicyResponse>
435
+ /**
436
+ * @description
437
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_PutRolePolicy.html IAM: PutRolePolicy}
438
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#PutRolePolicy IAM: PutRolePolicy}
439
+ */
440
+ PutRolePolicy: (input: { PolicyDocument: string | Record<string, any>, PolicyName: string, RoleName: string }) => Promise<PutRolePolicyResponse>
441
+ /**
442
+ * @description
443
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_PutUserPolicy.html IAM: PutUserPolicy}
444
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#PutUserPolicy IAM: PutUserPolicy}
445
+ */
446
+ PutUserPolicy: (input: { PolicyDocument: string | Record<string, any>, PolicyName: string, UserName: string }) => Promise<PutUserPolicyResponse>
447
+ /**
448
+ * @description
449
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_RemoveUserFromGroup.html IAM: RemoveUserFromGroup}
450
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#RemoveUserFromGroup IAM: RemoveUserFromGroup}
451
+ */
452
+ RemoveUserFromGroup: (input: { GroupName: string, UserName: string }) => Promise<RemoveUserFromGroupResponse>
453
+ /**
454
+ * @description
455
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_RemoveRoleFromInstanceProfile.html IAM: RemoveRoleFromInstanceProfile}
456
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#RemoveRoleFromInstanceProfile IAM: RemoveRoleFromInstanceProfile}
457
+ */
458
+ RemoveRoleFromInstanceProfile: (input: { InstanceProfileName: string, RoleName: string }) => Promise<RemoveRoleFromInstanceProfileResponse>
459
+ /**
460
+ * @description
461
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_TagInstanceProfile.html IAM: TagInstanceProfile}
462
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#TagInstanceProfile IAM: TagInstanceProfile}
463
+ */
464
+ TagInstanceProfile: (input: { InstanceProfileName: string, Tags: any[] }) => Promise<TagInstanceProfileResponse>
465
+ /**
466
+ * @description
467
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_TagPolicy.html IAM: TagPolicy}
468
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#TagPolicy IAM: TagPolicy}
469
+ */
470
+ TagPolicy: (input: { PolicyArn: string, Tags: any[] }) => Promise<TagPolicyResponse>
471
+ /**
472
+ * @description
473
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_TagRole.html IAM: TagRole}
474
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#TagRole IAM: TagRole}
475
+ */
476
+ TagRole: (input: { RoleName: string, Tags: any[] }) => Promise<TagRoleResponse>
477
+ /**
478
+ * @description
479
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_TagUser.html IAM: TagUser}
480
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#TagUser IAM: TagUser}
481
+ */
482
+ TagUser: (input: { UserName: string, Tags: any[] }) => Promise<TagUserResponse>
483
+ /**
484
+ * @description
485
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UntagInstanceProfile.html IAM: UntagInstanceProfile}
486
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#UntagInstanceProfile IAM: UntagInstanceProfile}
487
+ */
488
+ UntagInstanceProfile: (input: { InstanceProfileName: string, TagKeys: any[] }) => Promise<UntagInstanceProfileResponse>
489
+ /**
490
+ * @description
491
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UntagPolicy.html IAM: UntagPolicy}
492
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#UntagPolicy IAM: UntagPolicy}
493
+ */
494
+ UntagPolicy: (input: { PolicyArn: string, TagKeys: any[] }) => Promise<UntagPolicyResponse>
495
+ /**
496
+ * @description
497
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UntagRole.html IAM: UntagRole}
498
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#UntagRole IAM: UntagRole}
499
+ */
500
+ UntagRole: (input: { RoleName: string, TagKeys: any[] }) => Promise<UntagRoleResponse>
501
+ /**
502
+ * @description
503
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UntagUser.html IAM: UntagUser}
504
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#UntagUser IAM: UntagUser}
505
+ */
506
+ UntagUser: (input: { UserName: string, TagKeys: any[] }) => Promise<UntagUserResponse>
507
+ /**
508
+ * @description
509
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateAccessKey.html IAM: UpdateAccessKey}
510
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#UpdateAccessKey IAM: UpdateAccessKey}
511
+ */
512
+ UpdateAccessKey: (input: { AccessKeyId: string, Status: string, UserName?: string }) => Promise<UpdateAccessKeyResponse>
513
+ /**
514
+ * @description
515
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateAssumeRolePolicy.html IAM: UpdateAssumeRolePolicy}
516
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#UpdateAssumeRolePolicy IAM: UpdateAssumeRolePolicy}
517
+ */
518
+ UpdateAssumeRolePolicy: (input: { PolicyDocument: string | Record<string, any>, RoleName: string }) => Promise<UpdateAssumeRolePolicyResponse>
519
+ /**
520
+ * @description
521
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateGroup.html IAM: UpdateGroup}
522
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#UpdateGroup IAM: UpdateGroup}
523
+ */
524
+ UpdateGroup: (input: { GroupName: string, NewGroupName?: string, NewPath?: string }) => Promise<UpdateGroupResponse>
525
+ /**
526
+ * @description
527
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateLoginProfile.html IAM: UpdateLoginProfile}
528
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#UpdateLoginProfile IAM: UpdateLoginProfile}
529
+ */
530
+ UpdateLoginProfile: (input: { UserName: string, Password?: string, PasswordResetRequired?: boolean }) => Promise<UpdateLoginProfileResponse>
32
531
  /**
33
532
  * @description
34
533
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateRole.html IAM: UpdateRole}
35
534
  * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#UpdateRole IAM: UpdateRole}
36
535
  */
37
536
  UpdateRole: (input: { RoleName: string, Description?: string, MaxSessionDuration?: number }) => Promise<UpdateRoleResponse>
537
+ /**
538
+ * @description
539
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateRoleDescription.html IAM: UpdateRoleDescription}
540
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#UpdateRoleDescription IAM: UpdateRoleDescription}
541
+ */
542
+ UpdateRoleDescription: (input: { RoleName: string, Description?: string }) => Promise<UpdateRoleDescriptionResponse>
543
+ /**
544
+ * @description
545
+ * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateUser.html IAM: UpdateUser}
546
+ * - aws-lite docs: {@link https://github.com/architect/aws-lite/blob/main/plugins/iam/readme.md#UpdateUser IAM: UpdateUser}
547
+ */
548
+ UpdateUser: (input: { UserName: string, NewPath?: string, NewUserName?: string }) => Promise<UpdateUserResponse>
38
549
  // $METHODS_END
39
550
  }
40
551
 
@@ -48,9 +559,82 @@ export type {
48
559
  AwsLiteIAM,
49
560
  /* ! Do not remove EXPORT_START / EXPORT_END ! */
50
561
  // $EXPORT_START
562
+ AddClientIDToOpenIDConnectProviderResponse,
563
+ AddRoleToInstanceProfileResponse,
564
+ AddUserToGroupResponse,
565
+ AttachGroupPolicyResponse,
566
+ AttachRolePolicyResponse,
567
+ AttachUserPolicyResponse,
568
+ ChangePasswordResponse,
569
+ CreateAccessKeyResponse,
570
+ CreateAccountAliasResponse,
571
+ CreateGroupResponse,
572
+ CreateInstanceProfileResponse,
573
+ CreateLoginProfileResponse,
574
+ CreatePolicyResponse,
51
575
  CreateRoleResponse,
576
+ CreateServiceLinkedRoleResponse,
577
+ CreateUserResponse,
578
+ DeleteAccessKeyResponse,
579
+ DeleteAccountAliasResponse,
580
+ DeleteGroupResponse,
581
+ DeleteGroupPolicyResponse,
582
+ DeleteInstanceProfileResponse,
583
+ DeleteLoginProfileResponse,
584
+ DeletePolicyResponse,
52
585
  DeleteRoleResponse,
586
+ DeleteRolePolicyResponse,
587
+ DeleteServiceLinkedRoleResponse,
588
+ DeleteUserResponse,
589
+ DeleteUserPolicyResponse,
590
+ DetachGroupPolicyResponse,
591
+ DetachRolePolicyResponse,
592
+ DetachUserPolicyResponse,
593
+ GetAccessKeyLastUsedResponse,
594
+ GetGroupResponse,
595
+ GetInstanceProfileResponse,
596
+ GetLoginProfileResponse,
597
+ GetPolicyResponse,
53
598
  GetRoleResponse,
599
+ GetUserResponse,
600
+ ListAccessKeysResponse,
601
+ ListAccountAliasesResponse,
602
+ ListAttachedGroupPoliciesResponse,
603
+ ListAttachedRolePoliciesResponse,
604
+ ListAttachedUserPoliciesResponse,
605
+ ListGroupPoliciesResponse,
606
+ ListGroupsResponse,
607
+ ListGroupsForUserResponse,
608
+ ListInstanceProfilesResponse,
609
+ ListInstanceProfilesForRoleResponse,
610
+ ListInstanceProfileTagsResponse,
611
+ ListPoliciesResponse,
612
+ ListPolicyTagsResponse,
613
+ ListRolePoliciesResponse,
614
+ ListRolesResponse,
615
+ ListRoleTagsResponse,
616
+ ListUserPoliciesResponse,
617
+ ListUsersResponse,
618
+ ListUserTagsResponse,
619
+ PutGroupPolicyResponse,
620
+ PutRolePolicyResponse,
621
+ PutUserPolicyResponse,
622
+ RemoveUserFromGroupResponse,
623
+ RemoveRoleFromInstanceProfileResponse,
624
+ TagInstanceProfileResponse,
625
+ TagPolicyResponse,
626
+ TagRoleResponse,
627
+ TagUserResponse,
628
+ UntagInstanceProfileResponse,
629
+ UntagPolicyResponse,
630
+ UntagRoleResponse,
631
+ UntagUserResponse,
632
+ UpdateAccessKeyResponse,
633
+ UpdateAssumeRolePolicyResponse,
634
+ UpdateGroupResponse,
635
+ UpdateLoginProfileResponse,
54
636
  UpdateRoleResponse,
637
+ UpdateRoleDescriptionResponse,
638
+ UpdateUserResponse,
55
639
  // $EXPORT_END
56
640
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-lite/iam-types",
3
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
4
  "description": "Type definitions for the `@aws-lite/iam` plugin",
5
5
  "homepage": "https://aws-lite.org/services/iam",
6
6
  "repository": {