@aws-lite/iam-types 0.0.5 → 0.0.6

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 +138 -136
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -146,6 +146,8 @@ import {
146
146
  // $IMPORTS_END
147
147
  } from "@aws-sdk/client-iam";
148
148
 
149
+ import type { AwsLiteMethodOptions } from "@aws-lite/client";
150
+
149
151
  declare interface AwsLiteIAM {
150
152
  /* ! Do not remove METHODS_START / METHODS_END ! */
151
153
  // $METHODS_START
@@ -154,133 +156,133 @@ declare interface AwsLiteIAM {
154
156
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AddClientIDToOpenIDConnectProvider.html IAM: AddClientIDToOpenIDConnectProvider}
155
157
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#AddClientIDToOpenIDConnectProvider IAM: AddClientIDToOpenIDConnectProvider}
156
158
  */
157
- AddClientIDToOpenIDConnectProvider: (input: { ClientID: string, OpenIDConnectProviderArn: string }) => Promise<AddClientIDToOpenIDConnectProviderResponse>
159
+ AddClientIDToOpenIDConnectProvider: (input: AwsLiteMethodOptions & { ClientID: string, OpenIDConnectProviderArn: string }) => Promise<AddClientIDToOpenIDConnectProviderResponse>
158
160
  /**
159
161
  * @description
160
162
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AddRoleToInstanceProfile.html IAM: AddRoleToInstanceProfile}
161
163
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#AddRoleToInstanceProfile IAM: AddRoleToInstanceProfile}
162
164
  */
163
- AddRoleToInstanceProfile: (input: { InstanceProfileName: string, RoleName: string }) => Promise<AddRoleToInstanceProfileResponse>
165
+ AddRoleToInstanceProfile: (input: AwsLiteMethodOptions & { InstanceProfileName: string, RoleName: string }) => Promise<AddRoleToInstanceProfileResponse>
164
166
  /**
165
167
  * @description
166
168
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AddUserToGroup.html IAM: AddUserToGroup}
167
169
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#AddUserToGroup IAM: AddUserToGroup}
168
170
  */
169
- AddUserToGroup: (input: { GroupName: string, UserName: string }) => Promise<AddUserToGroupResponse>
171
+ AddUserToGroup: (input: AwsLiteMethodOptions & { GroupName: string, UserName: string }) => Promise<AddUserToGroupResponse>
170
172
  /**
171
173
  * @description
172
174
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AttachGroupPolicy.html IAM: AttachGroupPolicy}
173
175
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#AttachGroupPolicy IAM: AttachGroupPolicy}
174
176
  */
175
- AttachGroupPolicy: (input: { GroupName: string, PolicyArn: string }) => Promise<AttachGroupPolicyResponse>
177
+ AttachGroupPolicy: (input: AwsLiteMethodOptions & { GroupName: string, PolicyArn: string }) => Promise<AttachGroupPolicyResponse>
176
178
  /**
177
179
  * @description
178
180
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AttachRolePolicy.html IAM: AttachRolePolicy}
179
181
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#AttachRolePolicy IAM: AttachRolePolicy}
180
182
  */
181
- AttachRolePolicy: (input: { PolicyArn: string, RoleName: string }) => Promise<AttachRolePolicyResponse>
183
+ AttachRolePolicy: (input: AwsLiteMethodOptions & { PolicyArn: string, RoleName: string }) => Promise<AttachRolePolicyResponse>
182
184
  /**
183
185
  * @description
184
186
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_AttachUserPolicy.html IAM: AttachUserPolicy}
185
187
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#AttachUserPolicy IAM: AttachUserPolicy}
186
188
  */
187
- AttachUserPolicy: (input: { PolicyArn: string, UserName: string }) => Promise<AttachUserPolicyResponse>
189
+ AttachUserPolicy: (input: AwsLiteMethodOptions & { PolicyArn: string, UserName: string }) => Promise<AttachUserPolicyResponse>
188
190
  /**
189
191
  * @description
190
192
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ChangePassword.html IAM: ChangePassword}
191
193
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ChangePassword IAM: ChangePassword}
192
194
  */
193
- ChangePassword: (input: { NewPassword: string, OldPassword: string }) => Promise<ChangePasswordResponse>
195
+ ChangePassword: (input: AwsLiteMethodOptions & { NewPassword: string, OldPassword: string }) => Promise<ChangePasswordResponse>
194
196
  /**
195
197
  * @description
196
198
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateAccessKey.html IAM: CreateAccessKey}
197
199
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreateAccessKey IAM: CreateAccessKey}
198
200
  */
199
- CreateAccessKey: (input: { UserName: string }) => Promise<CreateAccessKeyResponse>
201
+ CreateAccessKey: (input: AwsLiteMethodOptions & { UserName: string }) => Promise<CreateAccessKeyResponse>
200
202
  /**
201
203
  * @description
202
204
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateAccountAlias.html IAM: CreateAccountAlias}
203
205
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreateAccountAlias IAM: CreateAccountAlias}
204
206
  */
205
- CreateAccountAlias: (input: { AccountAlias: string }) => Promise<CreateAccountAliasResponse>
207
+ CreateAccountAlias: (input: AwsLiteMethodOptions & { AccountAlias: string }) => Promise<CreateAccountAliasResponse>
206
208
  /**
207
209
  * @description
208
210
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateGroup.html IAM: CreateGroup}
209
211
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreateGroup IAM: CreateGroup}
210
212
  */
211
- CreateGroup: (input: { GroupName: string, Path?: string }) => Promise<CreateGroupResponse>
213
+ CreateGroup: (input: AwsLiteMethodOptions & { GroupName: string, Path?: string }) => Promise<CreateGroupResponse>
212
214
  /**
213
215
  * @description
214
216
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateInstanceProfile.html IAM: CreateInstanceProfile}
215
217
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreateInstanceProfile IAM: CreateInstanceProfile}
216
218
  */
217
- CreateInstanceProfile: (input: { InstanceProfileName: string, Path?: string, Tags?: any[] }) => Promise<CreateInstanceProfileResponse>
219
+ CreateInstanceProfile: (input: AwsLiteMethodOptions & { InstanceProfileName: string, Path?: string, Tags?: any[] }) => Promise<CreateInstanceProfileResponse>
218
220
  /**
219
221
  * @description
220
222
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateLoginProfile.html IAM: CreateLoginProfile}
221
223
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreateLoginProfile IAM: CreateLoginProfile}
222
224
  */
223
- CreateLoginProfile: (input: { Password: string, UserName: string, PasswordResetRequired?: boolean }) => Promise<CreateLoginProfileResponse>
225
+ CreateLoginProfile: (input: AwsLiteMethodOptions & { Password: string, UserName: string, PasswordResetRequired?: boolean }) => Promise<CreateLoginProfileResponse>
224
226
  /**
225
227
  * @description
226
228
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html IAM: CreateOpenIDConnectProvider}
227
229
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreateOpenIDConnectProvider IAM: CreateOpenIDConnectProvider}
228
230
  */
229
- CreateOpenIDConnectProvider: (input: { Url: string, ClientIDList?: any[], Tags?: any[], ThumbprintList?: any[] }) => Promise<CreateOpenIDConnectProviderResponse>
231
+ CreateOpenIDConnectProvider: (input: AwsLiteMethodOptions & { Url: string, ClientIDList?: any[], Tags?: any[], ThumbprintList?: any[] }) => Promise<CreateOpenIDConnectProviderResponse>
230
232
  /**
231
233
  * @description
232
234
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreatePolicy.html IAM: CreatePolicy}
233
235
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreatePolicy IAM: CreatePolicy}
234
236
  */
235
- CreatePolicy: (input: { PolicyDocument: string | Record<string, any>, PolicyName: string, Description?: string, Path?: string, Tags?: any[] }) => Promise<CreatePolicyResponse>
237
+ CreatePolicy: (input: AwsLiteMethodOptions & { PolicyDocument: string | Record<string, any>, PolicyName: string, Description?: string, Path?: string, Tags?: any[] }) => Promise<CreatePolicyResponse>
236
238
  /**
237
239
  * @description
238
240
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreatePolicyVersion.html IAM: CreatePolicyVersion}
239
241
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreatePolicyVersion IAM: CreatePolicyVersion}
240
242
  */
241
- CreatePolicyVersion: (input: { PolicyArn: string, PolicyDocument: string | Record<string, any>, SetAsDefault?: boolean }) => Promise<CreatePolicyVersionResponse>
243
+ CreatePolicyVersion: (input: AwsLiteMethodOptions & { PolicyArn: string, PolicyDocument: string | Record<string, any>, SetAsDefault?: boolean }) => Promise<CreatePolicyVersionResponse>
242
244
  /**
243
245
  * @description
244
246
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateRole.html IAM: CreateRole}
245
247
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreateRole IAM: CreateRole}
246
248
  */
247
- CreateRole: (input: { AssumeRolePolicyDocument: string | Record<string, any>, RoleName: string, Description?: string, MaxSessionDuration?: number, Path?: string, PermissionsBoundary?: string, Tags?: any[] }) => Promise<CreateRoleResponse>
249
+ CreateRole: (input: AwsLiteMethodOptions & { AssumeRolePolicyDocument: string | Record<string, any>, RoleName: string, Description?: string, MaxSessionDuration?: number, Path?: string, PermissionsBoundary?: string, Tags?: any[] }) => Promise<CreateRoleResponse>
248
250
  /**
249
251
  * @description
250
252
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateServiceLinkedRole.html IAM: CreateServiceLinkedRole}
251
253
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreateServiceLinkedRole IAM: CreateServiceLinkedRole}
252
254
  */
253
- CreateServiceLinkedRole: (input: { AWSServiceName: string, CustomSuffix?: string, Description?: string }) => Promise<CreateServiceLinkedRoleResponse>
255
+ CreateServiceLinkedRole: (input: AwsLiteMethodOptions & { AWSServiceName: string, CustomSuffix?: string, Description?: string }) => Promise<CreateServiceLinkedRoleResponse>
254
256
  /**
255
257
  * @description
256
258
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateServiceSpecificCredential.html IAM: CreateServiceSpecificCredential}
257
259
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreateServiceSpecificCredential IAM: CreateServiceSpecificCredential}
258
260
  */
259
- CreateServiceSpecificCredential: (input: { ServiceName: string, UserName: string }) => Promise<CreateServiceSpecificCredentialResponse>
261
+ CreateServiceSpecificCredential: (input: AwsLiteMethodOptions & { ServiceName: string, UserName: string }) => Promise<CreateServiceSpecificCredentialResponse>
260
262
  /**
261
263
  * @description
262
264
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateUser.html IAM: CreateUser}
263
265
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreateUser IAM: CreateUser}
264
266
  */
265
- CreateUser: (input: { UserName: string, Path?: string, PermissionsBoundary?: string, Tags?: any[] }) => Promise<CreateUserResponse>
267
+ CreateUser: (input: AwsLiteMethodOptions & { UserName: string, Path?: string, PermissionsBoundary?: string, Tags?: any[] }) => Promise<CreateUserResponse>
266
268
  /**
267
269
  * @description
268
270
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateVirtualMFADevice.html IAM: CreateVirtualMFADevice}
269
271
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#CreateVirtualMFADevice IAM: CreateVirtualMFADevice}
270
272
  */
271
- CreateVirtualMFADevice: (input: { VirtualMFADeviceName: string, Path?: string, Tags?: any[] }) => Promise<CreateVirtualMFADeviceResponse>
273
+ CreateVirtualMFADevice: (input: AwsLiteMethodOptions & { VirtualMFADeviceName: string, Path?: string, Tags?: any[] }) => Promise<CreateVirtualMFADeviceResponse>
272
274
  /**
273
275
  * @description
274
276
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteAccessKey.html IAM: DeleteAccessKey}
275
277
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteAccessKey IAM: DeleteAccessKey}
276
278
  */
277
- DeleteAccessKey: (input: { AccessKeyId: string, UserName?: string }) => Promise<DeleteAccessKeyResponse>
279
+ DeleteAccessKey: (input: AwsLiteMethodOptions & { AccessKeyId: string, UserName?: string }) => Promise<DeleteAccessKeyResponse>
278
280
  /**
279
281
  * @description
280
282
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteAccountAlias.html IAM: DeleteAccountAlias}
281
283
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteAccountAlias IAM: DeleteAccountAlias}
282
284
  */
283
- DeleteAccountAlias: (input: { AccountAlias: string }) => Promise<DeleteAccountAliasResponse>
285
+ DeleteAccountAlias: (input: AwsLiteMethodOptions & { AccountAlias: string }) => Promise<DeleteAccountAliasResponse>
284
286
  /** @description aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteAccountPasswordPolicy IAM: DeleteAccountPasswordPolicy} */
285
287
  DeleteAccountPasswordPolicy: () => Promise<DeleteAccountPasswordPolicyResponse>
286
288
  /**
@@ -288,133 +290,133 @@ declare interface AwsLiteIAM {
288
290
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteGroup.html IAM: DeleteGroup}
289
291
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteGroup IAM: DeleteGroup}
290
292
  */
291
- DeleteGroup: (input: { GroupName: string }) => Promise<DeleteGroupResponse>
293
+ DeleteGroup: (input: AwsLiteMethodOptions & { GroupName: string }) => Promise<DeleteGroupResponse>
292
294
  /**
293
295
  * @description
294
296
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteGroupPolicy.html IAM: DeleteGroupPolicy}
295
297
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteGroupPolicy IAM: DeleteGroupPolicy}
296
298
  */
297
- DeleteGroupPolicy: (input: { GroupName: string, PolicyName: string }) => Promise<DeleteGroupPolicyResponse>
299
+ DeleteGroupPolicy: (input: AwsLiteMethodOptions & { GroupName: string, PolicyName: string }) => Promise<DeleteGroupPolicyResponse>
298
300
  /**
299
301
  * @description
300
302
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteInstanceProfile.html IAM: DeleteInstanceProfile}
301
303
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteInstanceProfile IAM: DeleteInstanceProfile}
302
304
  */
303
- DeleteInstanceProfile: (input: { InstanceProfileName: string }) => Promise<DeleteInstanceProfileResponse>
305
+ DeleteInstanceProfile: (input: AwsLiteMethodOptions & { InstanceProfileName: string }) => Promise<DeleteInstanceProfileResponse>
304
306
  /**
305
307
  * @description
306
308
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteLoginProfile.html IAM: DeleteLoginProfile}
307
309
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteLoginProfile IAM: DeleteLoginProfile}
308
310
  */
309
- DeleteLoginProfile: (input: { UserName: string }) => Promise<DeleteLoginProfileResponse>
311
+ DeleteLoginProfile: (input: AwsLiteMethodOptions & { UserName: string }) => Promise<DeleteLoginProfileResponse>
310
312
  /**
311
313
  * @description
312
314
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteOpenIDConnectProvider.html IAM: DeleteOpenIDConnectProvider}
313
315
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteOpenIDConnectProvider IAM: DeleteOpenIDConnectProvider}
314
316
  */
315
- DeleteOpenIDConnectProvider: (input: { OpenIDConnectProviderArn: string }) => Promise<DeleteOpenIDConnectProviderResponse>
317
+ DeleteOpenIDConnectProvider: (input: AwsLiteMethodOptions & { OpenIDConnectProviderArn: string }) => Promise<DeleteOpenIDConnectProviderResponse>
316
318
  /**
317
319
  * @description
318
320
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeletePolicy.html IAM: DeletePolicy}
319
321
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeletePolicy IAM: DeletePolicy}
320
322
  */
321
- DeletePolicy: (input: { PolicyArn: string }) => Promise<DeletePolicyResponse>
323
+ DeletePolicy: (input: AwsLiteMethodOptions & { PolicyArn: string }) => Promise<DeletePolicyResponse>
322
324
  /**
323
325
  * @description
324
326
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeletePolicyVersion.html IAM: DeletePolicyVersion}
325
327
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeletePolicyVersion IAM: DeletePolicyVersion}
326
328
  */
327
- DeletePolicyVersion: (input: { PolicyArn: string, VersionId: string }) => Promise<DeletePolicyVersionResponse>
329
+ DeletePolicyVersion: (input: AwsLiteMethodOptions & { PolicyArn: string, VersionId: string }) => Promise<DeletePolicyVersionResponse>
328
330
  /**
329
331
  * @description
330
332
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteRole.html IAM: DeleteRole}
331
333
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteRole IAM: DeleteRole}
332
334
  */
333
- DeleteRole: (input: { RoleName: string }) => Promise<DeleteRoleResponse>
335
+ DeleteRole: (input: AwsLiteMethodOptions & { RoleName: string }) => Promise<DeleteRoleResponse>
334
336
  /**
335
337
  * @description
336
338
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteRolePermissionsBoundary.html IAM: DeleteRolePermissionsBoundary}
337
339
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteRolePermissionsBoundary IAM: DeleteRolePermissionsBoundary}
338
340
  */
339
- DeleteRolePermissionsBoundary: (input: { RoleName: string }) => Promise<DeleteRolePermissionsBoundaryResponse>
341
+ DeleteRolePermissionsBoundary: (input: AwsLiteMethodOptions & { RoleName: string }) => Promise<DeleteRolePermissionsBoundaryResponse>
340
342
  /**
341
343
  * @description
342
344
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteRolePolicy.html IAM: DeleteRolePolicy}
343
345
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteRolePolicy IAM: DeleteRolePolicy}
344
346
  */
345
- DeleteRolePolicy: (input: { RoleName: string, PolicyName: string }) => Promise<DeleteRolePolicyResponse>
347
+ DeleteRolePolicy: (input: AwsLiteMethodOptions & { RoleName: string, PolicyName: string }) => Promise<DeleteRolePolicyResponse>
346
348
  /**
347
349
  * @description
348
350
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteServerCertificate.html IAM: DeleteServerCertificate}
349
351
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteServerCertificate IAM: DeleteServerCertificate}
350
352
  */
351
- DeleteServerCertificate: (input: { ServerCertificateName: string }) => Promise<DeleteServerCertificateResponse>
353
+ DeleteServerCertificate: (input: AwsLiteMethodOptions & { ServerCertificateName: string }) => Promise<DeleteServerCertificateResponse>
352
354
  /**
353
355
  * @description
354
356
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteServiceLinkedRole.html IAM: DeleteServiceLinkedRole}
355
357
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteServiceLinkedRole IAM: DeleteServiceLinkedRole}
356
358
  */
357
- DeleteServiceLinkedRole: (input: { RoleName: string }) => Promise<DeleteServiceLinkedRoleResponse>
359
+ DeleteServiceLinkedRole: (input: AwsLiteMethodOptions & { RoleName: string }) => Promise<DeleteServiceLinkedRoleResponse>
358
360
  /**
359
361
  * @description
360
362
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteServiceSpecificCredential.html IAM: DeleteServiceSpecificCredential}
361
363
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteServiceSpecificCredential IAM: DeleteServiceSpecificCredential}
362
364
  */
363
- DeleteServiceSpecificCredential: (input: { ServiceSpecificCredentialId: string, UserName: string }) => Promise<DeleteServiceSpecificCredentialResponse>
365
+ DeleteServiceSpecificCredential: (input: AwsLiteMethodOptions & { ServiceSpecificCredentialId: string, UserName: string }) => Promise<DeleteServiceSpecificCredentialResponse>
364
366
  /**
365
367
  * @description
366
368
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteSigningCertificate.html IAM: DeleteSigningCertificate}
367
369
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteSigningCertificate IAM: DeleteSigningCertificate}
368
370
  */
369
- DeleteSigningCertificate: (input: { CertificateId: string, UserName?: string }) => Promise<DeleteSigningCertificateResponse>
371
+ DeleteSigningCertificate: (input: AwsLiteMethodOptions & { CertificateId: string, UserName?: string }) => Promise<DeleteSigningCertificateResponse>
370
372
  /**
371
373
  * @description
372
374
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteSSHPublicKey.html IAM: DeleteSSHPublicKey}
373
375
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteSSHPublicKey IAM: DeleteSSHPublicKey}
374
376
  */
375
- DeleteSSHPublicKey: (input: { SSHPublicKeyId: string, UserName: string }) => Promise<DeleteSSHPublicKeyResponse>
377
+ DeleteSSHPublicKey: (input: AwsLiteMethodOptions & { SSHPublicKeyId: string, UserName: string }) => Promise<DeleteSSHPublicKeyResponse>
376
378
  /**
377
379
  * @description
378
380
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteUser.html IAM: DeleteUser}
379
381
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteUser IAM: DeleteUser}
380
382
  */
381
- DeleteUser: (input: { UserName: string }) => Promise<DeleteUserResponse>
383
+ DeleteUser: (input: AwsLiteMethodOptions & { UserName: string }) => Promise<DeleteUserResponse>
382
384
  /**
383
385
  * @description
384
386
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteUserPermissionsBoundary.html IAM: DeleteUserPermissionsBoundary}
385
387
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteUserPermissionsBoundary IAM: DeleteUserPermissionsBoundary}
386
388
  */
387
- DeleteUserPermissionsBoundary: (input: { UserName: string }) => Promise<DeleteUserPermissionsBoundaryResponse>
389
+ DeleteUserPermissionsBoundary: (input: AwsLiteMethodOptions & { UserName: string }) => Promise<DeleteUserPermissionsBoundaryResponse>
388
390
  /**
389
391
  * @description
390
392
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteUserPolicy.html IAM: DeleteUserPolicy}
391
393
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteUserPolicy IAM: DeleteUserPolicy}
392
394
  */
393
- DeleteUserPolicy: (input: { PolicyName: string, UserName: string }) => Promise<DeleteUserPolicyResponse>
395
+ DeleteUserPolicy: (input: AwsLiteMethodOptions & { PolicyName: string, UserName: string }) => Promise<DeleteUserPolicyResponse>
394
396
  /**
395
397
  * @description
396
398
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DeleteVirtualMFADevice.html IAM: DeleteVirtualMFADevice}
397
399
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DeleteVirtualMFADevice IAM: DeleteVirtualMFADevice}
398
400
  */
399
- DeleteVirtualMFADevice: (input: { SerialNumber: string }) => Promise<DeleteVirtualMFADeviceResponse>
401
+ DeleteVirtualMFADevice: (input: AwsLiteMethodOptions & { SerialNumber: string }) => Promise<DeleteVirtualMFADeviceResponse>
400
402
  /**
401
403
  * @description
402
404
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DetachGroupPolicy.html IAM: DetachGroupPolicy}
403
405
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DetachGroupPolicy IAM: DetachGroupPolicy}
404
406
  */
405
- DetachGroupPolicy: (input: { GroupName: string, PolicyArn: string }) => Promise<DetachGroupPolicyResponse>
407
+ DetachGroupPolicy: (input: AwsLiteMethodOptions & { GroupName: string, PolicyArn: string }) => Promise<DetachGroupPolicyResponse>
406
408
  /**
407
409
  * @description
408
410
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DetachRolePolicy.html IAM: DetachRolePolicy}
409
411
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DetachRolePolicy IAM: DetachRolePolicy}
410
412
  */
411
- DetachRolePolicy: (input: { PolicyArn: string, RoleName: string }) => Promise<DetachRolePolicyResponse>
413
+ DetachRolePolicy: (input: AwsLiteMethodOptions & { PolicyArn: string, RoleName: string }) => Promise<DetachRolePolicyResponse>
412
414
  /**
413
415
  * @description
414
416
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_DetachUserPolicy.html IAM: DetachUserPolicy}
415
417
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#DetachUserPolicy IAM: DetachUserPolicy}
416
418
  */
417
- DetachUserPolicy: (input: { PolicyArn: string, UserName: string }) => Promise<DetachUserPolicyResponse>
419
+ DetachUserPolicy: (input: AwsLiteMethodOptions & { PolicyArn: string, UserName: string }) => Promise<DetachUserPolicyResponse>
418
420
  /** @description aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GenerateCredentialReport IAM: GenerateCredentialReport} */
419
421
  GenerateCredentialReport: () => Promise<GenerateCredentialReportResponse>
420
422
  /**
@@ -422,25 +424,25 @@ declare interface AwsLiteIAM {
422
424
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GenerateOrganizationsAccessReport.html IAM: GenerateOrganizationsAccessReport}
423
425
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GenerateOrganizationsAccessReport IAM: GenerateOrganizationsAccessReport}
424
426
  */
425
- GenerateOrganizationsAccessReport: (input: { EntityPath: string, OrganizationsPolicyId?: string }) => Promise<GenerateOrganizationsAccessReportResponse>
427
+ GenerateOrganizationsAccessReport: (input: AwsLiteMethodOptions & { EntityPath: string, OrganizationsPolicyId?: string }) => Promise<GenerateOrganizationsAccessReportResponse>
426
428
  /**
427
429
  * @description
428
430
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GenerateServiceLastAccessedDetails.html IAM: GenerateServiceLastAccessedDetails}
429
431
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GenerateServiceLastAccessedDetails IAM: GenerateServiceLastAccessedDetails}
430
432
  */
431
- GenerateServiceLastAccessedDetails: (input: { Arn: string, Granularity?: string }) => Promise<GenerateServiceLastAccessedDetailsResponse>
433
+ GenerateServiceLastAccessedDetails: (input: AwsLiteMethodOptions & { Arn: string, Granularity?: string }) => Promise<GenerateServiceLastAccessedDetailsResponse>
432
434
  /**
433
435
  * @description
434
436
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccessKeyLastUsed.html IAM: GetAccessKeyLastUsed}
435
437
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetAccessKeyLastUsed IAM: GetAccessKeyLastUsed}
436
438
  */
437
- GetAccessKeyLastUsed: (input: { AccessKeyId: string }) => Promise<GetAccessKeyLastUsedResponse>
439
+ GetAccessKeyLastUsed: (input: AwsLiteMethodOptions & { AccessKeyId: string }) => Promise<GetAccessKeyLastUsedResponse>
438
440
  /**
439
441
  * @description
440
442
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetAccountAuthorizationDetails.html IAM: GetAccountAuthorizationDetails}
441
443
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetAccountAuthorizationDetails IAM: GetAccountAuthorizationDetails}
442
444
  */
443
- GetAccountAuthorizationDetails: (input: { Filter?: any[], Marker?: string, MaxItems?: number, paginate?: string }) => Promise<GetAccountAuthorizationDetailsResponse>
445
+ GetAccountAuthorizationDetails: (input: AwsLiteMethodOptions & { Filter?: any[], Marker?: string, MaxItems?: number, paginate?: string }) => Promise<GetAccountAuthorizationDetailsResponse>
444
446
  /** @description aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetAccountPasswordPolicy IAM: GetAccountPasswordPolicy} */
445
447
  GetAccountPasswordPolicy: () => Promise<GetAccountPasswordPolicyResponse>
446
448
  /** @description aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetAccountSummary IAM: GetAccountSummary} */
@@ -450,13 +452,13 @@ declare interface AwsLiteIAM {
450
452
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetContextKeysForCustomPolicy.html IAM: GetContextKeysForCustomPolicy}
451
453
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetContextKeysForCustomPolicy IAM: GetContextKeysForCustomPolicy}
452
454
  */
453
- GetContextKeysForCustomPolicy: (input: { PolicyInputList: any[] }) => Promise<GetContextKeysForCustomPolicyResponse>
455
+ GetContextKeysForCustomPolicy: (input: AwsLiteMethodOptions & { PolicyInputList: any[] }) => Promise<GetContextKeysForCustomPolicyResponse>
454
456
  /**
455
457
  * @description
456
458
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetContextKeysForPrincipalPolicy.html IAM: GetContextKeysForPrincipalPolicy}
457
459
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetContextKeysForPrincipalPolicy IAM: GetContextKeysForPrincipalPolicy}
458
460
  */
459
- GetContextKeysForPrincipalPolicy: (input: { PolicySourceArn: string, PolicyInputList?: any[] }) => Promise<GetContextKeysForPrincipalPolicyResponse>
461
+ GetContextKeysForPrincipalPolicy: (input: AwsLiteMethodOptions & { PolicySourceArn: string, PolicyInputList?: any[] }) => Promise<GetContextKeysForPrincipalPolicyResponse>
460
462
  /** @description aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetCredentialReport IAM: GetCredentialReport} */
461
463
  GetCredentialReport: () => Promise<GetCredentialReportResponse>
462
464
  /**
@@ -464,169 +466,169 @@ declare interface AwsLiteIAM {
464
466
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetGroup.html IAM: GetGroup}
465
467
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetGroup IAM: GetGroup}
466
468
  */
467
- GetGroup: (input: { GroupName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<GetGroupResponse>
469
+ GetGroup: (input: AwsLiteMethodOptions & { GroupName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<GetGroupResponse>
468
470
  /**
469
471
  * @description
470
472
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetGroupPolicy.html IAM: GetGroupPolicy}
471
473
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetGroupPolicy IAM: GetGroupPolicy}
472
474
  */
473
- GetGroupPolicy: (input: { GroupName: string, PolicyName: string }) => Promise<GetGroupPolicyResponse>
475
+ GetGroupPolicy: (input: AwsLiteMethodOptions & { GroupName: string, PolicyName: string }) => Promise<GetGroupPolicyResponse>
474
476
  /**
475
477
  * @description
476
478
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetInstanceProfile.html IAM: GetInstanceProfile}
477
479
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetInstanceProfile IAM: GetInstanceProfile}
478
480
  */
479
- GetInstanceProfile: (input: { InstanceProfileName: string }) => Promise<GetInstanceProfileResponse>
481
+ GetInstanceProfile: (input: AwsLiteMethodOptions & { InstanceProfileName: string }) => Promise<GetInstanceProfileResponse>
480
482
  /**
481
483
  * @description
482
484
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetLoginProfile.html IAM: GetLoginProfile}
483
485
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetLoginProfile IAM: GetLoginProfile}
484
486
  */
485
- GetLoginProfile: (input: { UserName: string }) => Promise<GetLoginProfileResponse>
487
+ GetLoginProfile: (input: AwsLiteMethodOptions & { UserName: string }) => Promise<GetLoginProfileResponse>
486
488
  /**
487
489
  * @description
488
490
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetOpenIDConnectProvider.html IAM: GetOpenIDConnectProvider}
489
491
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetOpenIDConnectProvider IAM: GetOpenIDConnectProvider}
490
492
  */
491
- GetOpenIDConnectProvider: (input: { OpenIDConnectProviderArn: string }) => Promise<GetOpenIDConnectProviderResponse>
493
+ GetOpenIDConnectProvider: (input: AwsLiteMethodOptions & { OpenIDConnectProviderArn: string }) => Promise<GetOpenIDConnectProviderResponse>
492
494
  /**
493
495
  * @description
494
496
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetOrganizationsAccessReport.html IAM: GetOrganizationsAccessReport}
495
497
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetOrganizationsAccessReport IAM: GetOrganizationsAccessReport}
496
498
  */
497
- GetOrganizationsAccessReport: (input: { JobId: string, Marker?: string, MaxItems?: number, SortKey?: string, paginate?: boolean | string }) => Promise<GetOrganizationsAccessReportResponse>
499
+ GetOrganizationsAccessReport: (input: AwsLiteMethodOptions & { JobId: string, Marker?: string, MaxItems?: number, SortKey?: string, paginate?: boolean | string }) => Promise<GetOrganizationsAccessReportResponse>
498
500
  /**
499
501
  * @description
500
502
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetPolicy.html IAM: GetPolicy}
501
503
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetPolicy IAM: GetPolicy}
502
504
  */
503
- GetPolicy: (input: { PolicyArn: string }) => Promise<GetPolicyResponse>
505
+ GetPolicy: (input: AwsLiteMethodOptions & { PolicyArn: string }) => Promise<GetPolicyResponse>
504
506
  /**
505
507
  * @description
506
508
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetPolicyVersion.html IAM: GetPolicyVersion}
507
509
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetPolicyVersion IAM: GetPolicyVersion}
508
510
  */
509
- GetPolicyVersion: (input: { PolicyArn: string, VersionId: string }) => Promise<GetPolicyVersionResponse>
511
+ GetPolicyVersion: (input: AwsLiteMethodOptions & { PolicyArn: string, VersionId: string }) => Promise<GetPolicyVersionResponse>
510
512
  /**
511
513
  * @description
512
514
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetRole.html IAM: GetRole}
513
515
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetRole IAM: GetRole}
514
516
  */
515
- GetRole: (input: { RoleName: string }) => Promise<GetRoleResponse>
517
+ GetRole: (input: AwsLiteMethodOptions & { RoleName: string }) => Promise<GetRoleResponse>
516
518
  /**
517
519
  * @description
518
520
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetRolePolicy.html IAM: GetRolePolicy}
519
521
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetRolePolicy IAM: GetRolePolicy}
520
522
  */
521
- GetRolePolicy: (input: { PolicyName: string, RoleName: string }) => Promise<GetRolePolicyResponse>
523
+ GetRolePolicy: (input: AwsLiteMethodOptions & { PolicyName: string, RoleName: string }) => Promise<GetRolePolicyResponse>
522
524
  /**
523
525
  * @description
524
526
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServerCertificate.html IAM: GetServerCertificate}
525
527
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetServerCertificate IAM: GetServerCertificate}
526
528
  */
527
- GetServerCertificate: (input: { ServerCertificateName: string }) => Promise<GetServerCertificateResponse>
529
+ GetServerCertificate: (input: AwsLiteMethodOptions & { ServerCertificateName: string }) => Promise<GetServerCertificateResponse>
528
530
  /**
529
531
  * @description
530
532
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLastAccessedDetails.html IAM: GetServiceLastAccessedDetails}
531
533
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetServiceLastAccessedDetails IAM: GetServiceLastAccessedDetails}
532
534
  */
533
- GetServiceLastAccessedDetails: (input: { JobId: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<GetServiceLastAccessedDetailsResponse>
535
+ GetServiceLastAccessedDetails: (input: AwsLiteMethodOptions & { JobId: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<GetServiceLastAccessedDetailsResponse>
534
536
  /**
535
537
  * @description
536
538
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetServiceLastAccessedDetailsWithEntities.html IAM: GetServiceLastAccessedDetailsWithEntities}
537
539
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetServiceLastAccessedDetailsWithEntities IAM: GetServiceLastAccessedDetailsWithEntities}
538
540
  */
539
- GetServiceLastAccessedDetailsWithEntities: (input: { JobId: string, ServiceNamespace: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<GetServiceLastAccessedDetailsWithEntitiesResponse>
541
+ GetServiceLastAccessedDetailsWithEntities: (input: AwsLiteMethodOptions & { JobId: string, ServiceNamespace: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<GetServiceLastAccessedDetailsWithEntitiesResponse>
540
542
  /**
541
543
  * @description
542
544
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetSSHPublicKey.html IAM: GetSSHPublicKey}
543
545
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetSSHPublicKey IAM: GetSSHPublicKey}
544
546
  */
545
- GetSSHPublicKey: (input: { Encoding: string, SSHPublicKeyId: string, UserName: string }) => Promise<GetSSHPublicKeyResponse>
547
+ GetSSHPublicKey: (input: AwsLiteMethodOptions & { Encoding: string, SSHPublicKeyId: string, UserName: string }) => Promise<GetSSHPublicKeyResponse>
546
548
  /**
547
549
  * @description
548
550
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetUser.html IAM: GetUser}
549
551
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetUser IAM: GetUser}
550
552
  */
551
- GetUser: (input: { UserName: string }) => Promise<GetUserResponse>
553
+ GetUser: (input: AwsLiteMethodOptions & { UserName: string }) => Promise<GetUserResponse>
552
554
  /**
553
555
  * @description
554
556
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetUserPolicy.html IAM: GetUserPolicy}
555
557
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#GetUserPolicy IAM: GetUserPolicy}
556
558
  */
557
- GetUserPolicy: (input: { PolicyName: string, UserName: string }) => Promise<GetUserPolicyResponse>
559
+ GetUserPolicy: (input: AwsLiteMethodOptions & { PolicyName: string, UserName: string }) => Promise<GetUserPolicyResponse>
558
560
  /**
559
561
  * @description
560
562
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAccessKeys.html IAM: ListAccessKeys}
561
563
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListAccessKeys IAM: ListAccessKeys}
562
564
  */
563
- ListAccessKeys: (input: { Marker?: string, MaxItems?: number, UserName?: string, paginate?: boolean | string }) => Promise<ListAccessKeysResponse>
565
+ ListAccessKeys: (input: AwsLiteMethodOptions & { Marker?: string, MaxItems?: number, UserName?: string, paginate?: boolean | string }) => Promise<ListAccessKeysResponse>
564
566
  /**
565
567
  * @description
566
568
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAccountAliases.html IAM: ListAccountAliases}
567
569
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListAccountAliases IAM: ListAccountAliases}
568
570
  */
569
- ListAccountAliases: (input: { Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListAccountAliasesResponse>
571
+ ListAccountAliases: (input: AwsLiteMethodOptions & { Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListAccountAliasesResponse>
570
572
  /**
571
573
  * @description
572
574
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedGroupPolicies.html IAM: ListAttachedGroupPolicies}
573
575
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListAttachedGroupPolicies IAM: ListAttachedGroupPolicies}
574
576
  */
575
- ListAttachedGroupPolicies: (input: { GroupName: string, Marker?: string, PathPrefix?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListAttachedGroupPoliciesResponse>
577
+ ListAttachedGroupPolicies: (input: AwsLiteMethodOptions & { GroupName: string, Marker?: string, PathPrefix?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListAttachedGroupPoliciesResponse>
576
578
  /**
577
579
  * @description
578
580
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedRolePolicies.html IAM: ListAttachedRolePolicies}
579
581
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListAttachedRolePolicies IAM: ListAttachedRolePolicies}
580
582
  */
581
- ListAttachedRolePolicies: (input: { RoleName: string, Marker?: string, PathPrefix?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListAttachedRolePoliciesResponse>
583
+ ListAttachedRolePolicies: (input: AwsLiteMethodOptions & { RoleName: string, Marker?: string, PathPrefix?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListAttachedRolePoliciesResponse>
582
584
  /**
583
585
  * @description
584
586
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListAttachedUserPolicies.html IAM: ListAttachedUserPolicies}
585
587
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListAttachedUserPolicies IAM: ListAttachedUserPolicies}
586
588
  */
587
- ListAttachedUserPolicies: (input: { UserName: string, Marker?: string, PathPrefix?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListAttachedUserPoliciesResponse>
589
+ ListAttachedUserPolicies: (input: AwsLiteMethodOptions & { UserName: string, Marker?: string, PathPrefix?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListAttachedUserPoliciesResponse>
588
590
  /**
589
591
  * @description
590
592
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListEntitiesForPolicy.html IAM: ListEntitiesForPolicy}
591
593
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListEntitiesForPolicy IAM: ListEntitiesForPolicy}
592
594
  */
593
- ListEntitiesForPolicy: (input: { PolicyArn: string, EntityFilter?: string, Marker?: string, MaxItems?: number, PathPrefix?: string, PolicyUsageFilter?: string, paginate?: string }) => Promise<ListEntitiesForPolicyResponse>
595
+ ListEntitiesForPolicy: (input: AwsLiteMethodOptions & { PolicyArn: string, EntityFilter?: string, Marker?: string, MaxItems?: number, PathPrefix?: string, PolicyUsageFilter?: string, paginate?: string }) => Promise<ListEntitiesForPolicyResponse>
594
596
  /**
595
597
  * @description
596
598
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListGroupPolicies.html IAM: ListGroupPolicies}
597
599
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListGroupPolicies IAM: ListGroupPolicies}
598
600
  */
599
- ListGroupPolicies: (input: { GroupName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListGroupPoliciesResponse>
601
+ ListGroupPolicies: (input: AwsLiteMethodOptions & { GroupName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListGroupPoliciesResponse>
600
602
  /**
601
603
  * @description
602
604
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListGroups.html IAM: ListGroups}
603
605
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListGroups IAM: ListGroups}
604
606
  */
605
- ListGroups: (input: { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean | string }) => Promise<ListGroupsResponse>
607
+ ListGroups: (input: AwsLiteMethodOptions & { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean | string }) => Promise<ListGroupsResponse>
606
608
  /**
607
609
  * @description
608
610
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListGroupsForUser.html IAM: ListGroupsForUser}
609
611
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListGroupsForUser IAM: ListGroupsForUser}
610
612
  */
611
- ListGroupsForUser: (input: { UserName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListGroupsForUserResponse>
613
+ ListGroupsForUser: (input: AwsLiteMethodOptions & { UserName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListGroupsForUserResponse>
612
614
  /**
613
615
  * @description
614
616
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListInstanceProfiles.html IAM: ListInstanceProfiles}
615
617
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListInstanceProfiles IAM: ListInstanceProfiles}
616
618
  */
617
- ListInstanceProfiles: (input: { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean | string }) => Promise<ListInstanceProfilesResponse>
619
+ ListInstanceProfiles: (input: AwsLiteMethodOptions & { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean | string }) => Promise<ListInstanceProfilesResponse>
618
620
  /**
619
621
  * @description
620
622
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListInstanceProfilesForRole.html IAM: ListInstanceProfilesForRole}
621
623
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListInstanceProfilesForRole IAM: ListInstanceProfilesForRole}
622
624
  */
623
- ListInstanceProfilesForRole: (input: { RoleName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListInstanceProfilesForRoleResponse>
625
+ ListInstanceProfilesForRole: (input: AwsLiteMethodOptions & { RoleName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListInstanceProfilesForRoleResponse>
624
626
  /**
625
627
  * @description
626
628
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListInstanceProfileTags.html IAM: ListInstanceProfileTags}
627
629
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListInstanceProfileTags IAM: ListInstanceProfileTags}
628
630
  */
629
- ListInstanceProfileTags: (input: { InstanceProfileName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListInstanceProfileTagsResponse>
631
+ ListInstanceProfileTags: (input: AwsLiteMethodOptions & { InstanceProfileName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListInstanceProfileTagsResponse>
630
632
  /** @description aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListOpenIDConnectProviders IAM: ListOpenIDConnectProviders} */
631
633
  ListOpenIDConnectProviders: () => Promise<ListOpenIDConnectProvidersResponse>
632
634
  /**
@@ -634,349 +636,349 @@ declare interface AwsLiteIAM {
634
636
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListOpenIDConnectProviderTags.html IAM: ListOpenIDConnectProviderTags}
635
637
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListOpenIDConnectProviderTags IAM: ListOpenIDConnectProviderTags}
636
638
  */
637
- ListOpenIDConnectProviderTags: (input: { OpenIDConnectProviderArn: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListOpenIDConnectProviderTagsResponse>
639
+ ListOpenIDConnectProviderTags: (input: AwsLiteMethodOptions & { OpenIDConnectProviderArn: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListOpenIDConnectProviderTagsResponse>
638
640
  /**
639
641
  * @description
640
642
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPolicies.html IAM: ListPolicies}
641
643
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListPolicies IAM: ListPolicies}
642
644
  */
643
- ListPolicies: (input: { Marker?: string, MaxItems?: number, OnlyAttached?: boolean, PathPrefix?: string, PolicyUsageFilter?: string, Scope?: string, paginate?: boolean | string }) => Promise<ListPoliciesResponse>
645
+ ListPolicies: (input: AwsLiteMethodOptions & { Marker?: string, MaxItems?: number, OnlyAttached?: boolean, PathPrefix?: string, PolicyUsageFilter?: string, Scope?: string, paginate?: boolean | string }) => Promise<ListPoliciesResponse>
644
646
  /**
645
647
  * @description
646
648
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPoliciesGrantingServiceAccess.html IAM: ListPoliciesGrantingServiceAccess}
647
649
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListPoliciesGrantingServiceAccess IAM: ListPoliciesGrantingServiceAccess}
648
650
  */
649
- ListPoliciesGrantingServiceAccess: (input: { Arn: string, ServiceNamespaces: any[], Marker?: string, paginate?: boolean | string }) => Promise<ListPoliciesGrantingServiceAccessResponse>
651
+ ListPoliciesGrantingServiceAccess: (input: AwsLiteMethodOptions & { Arn: string, ServiceNamespaces: any[], Marker?: string, paginate?: boolean | string }) => Promise<ListPoliciesGrantingServiceAccessResponse>
650
652
  /**
651
653
  * @description
652
654
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPolicyTags.html IAM: ListPolicyTags}
653
655
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListPolicyTags IAM: ListPolicyTags}
654
656
  */
655
- ListPolicyTags: (input: { PolicyArn: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListPolicyTagsResponse>
657
+ ListPolicyTags: (input: AwsLiteMethodOptions & { PolicyArn: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListPolicyTagsResponse>
656
658
  /**
657
659
  * @description
658
660
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListPolicyVersions.html IAM: ListPolicyVersions}
659
661
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListPolicyVersions IAM: ListPolicyVersions}
660
662
  */
661
- ListPolicyVersions: (input: { PolicyArn: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListPolicyVersionsResponse>
663
+ ListPolicyVersions: (input: AwsLiteMethodOptions & { PolicyArn: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListPolicyVersionsResponse>
662
664
  /**
663
665
  * @description
664
666
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListRolePolicies.html IAM: ListRolePolicies}
665
667
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListRolePolicies IAM: ListRolePolicies}
666
668
  */
667
- ListRolePolicies: (input: { RoleName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListRolePoliciesResponse>
669
+ ListRolePolicies: (input: AwsLiteMethodOptions & { RoleName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListRolePoliciesResponse>
668
670
  /**
669
671
  * @description
670
672
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListRoles.html IAM: ListRoles}
671
673
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListRoles IAM: ListRoles}
672
674
  */
673
- ListRoles: (input: { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean | string }) => Promise<ListRolesResponse>
675
+ ListRoles: (input: AwsLiteMethodOptions & { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean | string }) => Promise<ListRolesResponse>
674
676
  /**
675
677
  * @description
676
678
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListRoleTags.html IAM: ListRoleTags}
677
679
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListRoleTags IAM: ListRoleTags}
678
680
  */
679
- ListRoleTags: (input: { RoleName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListRoleTagsResponse>
681
+ ListRoleTags: (input: AwsLiteMethodOptions & { RoleName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListRoleTagsResponse>
680
682
  /**
681
683
  * @description
682
684
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListServerCertificates.html IAM: ListServerCertificates}
683
685
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListServerCertificates IAM: ListServerCertificates}
684
686
  */
685
- ListServerCertificates: (input: { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean | string }) => Promise<ListServerCertificatesResponse>
687
+ ListServerCertificates: (input: AwsLiteMethodOptions & { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean | string }) => Promise<ListServerCertificatesResponse>
686
688
  /**
687
689
  * @description
688
690
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListServerCertificateTags.html IAM: ListServerCertificateTags}
689
691
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListServerCertificateTags IAM: ListServerCertificateTags}
690
692
  */
691
- ListServerCertificateTags: (input: { ServerCertificateName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListServerCertificateTagsResponse>
693
+ ListServerCertificateTags: (input: AwsLiteMethodOptions & { ServerCertificateName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListServerCertificateTagsResponse>
692
694
  /**
693
695
  * @description
694
696
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListServiceSpecificCredentials.html IAM: ListServiceSpecificCredentials}
695
697
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListServiceSpecificCredentials IAM: ListServiceSpecificCredentials}
696
698
  */
697
- ListServiceSpecificCredentials: (input: { ServiceName?: string, UserName?: string }) => Promise<ListServiceSpecificCredentialsResponse>
699
+ ListServiceSpecificCredentials: (input: AwsLiteMethodOptions & { ServiceName?: string, UserName?: string }) => Promise<ListServiceSpecificCredentialsResponse>
698
700
  /**
699
701
  * @description
700
702
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListSigningCertificates.html IAM: ListSigningCertificates}
701
703
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListSigningCertificates IAM: ListSigningCertificates}
702
704
  */
703
- ListSigningCertificates: (input: { Marker?: string, MaxItems?: number, UserName?: string }) => Promise<ListSigningCertificatesResponse>
705
+ ListSigningCertificates: (input: AwsLiteMethodOptions & { Marker?: string, MaxItems?: number, UserName?: string }) => Promise<ListSigningCertificatesResponse>
704
706
  /**
705
707
  * @description
706
708
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListSSHPublicKeys.html IAM: ListSSHPublicKeys}
707
709
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListSSHPublicKeys IAM: ListSSHPublicKeys}
708
710
  */
709
- ListSSHPublicKeys: (input: { Marker?: string, MaxItems?: number, UserName?: string }) => Promise<ListSSHPublicKeysResponse>
711
+ ListSSHPublicKeys: (input: AwsLiteMethodOptions & { Marker?: string, MaxItems?: number, UserName?: string }) => Promise<ListSSHPublicKeysResponse>
710
712
  /**
711
713
  * @description
712
714
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListUserPolicies.html IAM: ListUserPolicies}
713
715
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListUserPolicies IAM: ListUserPolicies}
714
716
  */
715
- ListUserPolicies: (input: { UserName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListUserPoliciesResponse>
717
+ ListUserPolicies: (input: AwsLiteMethodOptions & { UserName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListUserPoliciesResponse>
716
718
  /**
717
719
  * @description
718
720
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListUsers.html IAM: ListUsers}
719
721
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListUsers IAM: ListUsers}
720
722
  */
721
- ListUsers: (input: { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean | string }) => Promise<ListUsersResponse>
723
+ ListUsers: (input: AwsLiteMethodOptions & { Marker?: string, MaxItems?: number, PathPrefix?: string, paginate?: boolean | string }) => Promise<ListUsersResponse>
722
724
  /**
723
725
  * @description
724
726
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListUserTags.html IAM: ListUserTags}
725
727
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListUserTags IAM: ListUserTags}
726
728
  */
727
- ListUserTags: (input: { UserName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListUserTagsResponse>
729
+ ListUserTags: (input: AwsLiteMethodOptions & { UserName: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListUserTagsResponse>
728
730
  /**
729
731
  * @description
730
732
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListVirtualMFADevices.html IAM: ListVirtualMFADevices}
731
733
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ListVirtualMFADevices IAM: ListVirtualMFADevices}
732
734
  */
733
- ListVirtualMFADevices: (input: { AssignmentStatus?: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListVirtualMFADevicesResponse>
735
+ ListVirtualMFADevices: (input: AwsLiteMethodOptions & { AssignmentStatus?: string, Marker?: string, MaxItems?: number, paginate?: boolean | string }) => Promise<ListVirtualMFADevicesResponse>
734
736
  /**
735
737
  * @description
736
738
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_PutGroupPolicy.html IAM: PutGroupPolicy}
737
739
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#PutGroupPolicy IAM: PutGroupPolicy}
738
740
  */
739
- PutGroupPolicy: (input: { GroupName: string, PolicyDocument: string | Record<string, any>, PolicyName: string }) => Promise<PutGroupPolicyResponse>
741
+ PutGroupPolicy: (input: AwsLiteMethodOptions & { GroupName: string, PolicyDocument: string | Record<string, any>, PolicyName: string }) => Promise<PutGroupPolicyResponse>
740
742
  /**
741
743
  * @description
742
744
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_PutRolePermissionsBoundary.html IAM: PutRolePermissionsBoundary}
743
745
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#PutRolePermissionsBoundary IAM: PutRolePermissionsBoundary}
744
746
  */
745
- PutRolePermissionsBoundary: (input: { PermissionsBoundary: string, RoleName: string }) => Promise<PutRolePermissionsBoundaryResponse>
747
+ PutRolePermissionsBoundary: (input: AwsLiteMethodOptions & { PermissionsBoundary: string, RoleName: string }) => Promise<PutRolePermissionsBoundaryResponse>
746
748
  /**
747
749
  * @description
748
750
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_PutRolePolicy.html IAM: PutRolePolicy}
749
751
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#PutRolePolicy IAM: PutRolePolicy}
750
752
  */
751
- PutRolePolicy: (input: { PolicyDocument: string | Record<string, any>, PolicyName: string, RoleName: string }) => Promise<PutRolePolicyResponse>
753
+ PutRolePolicy: (input: AwsLiteMethodOptions & { PolicyDocument: string | Record<string, any>, PolicyName: string, RoleName: string }) => Promise<PutRolePolicyResponse>
752
754
  /**
753
755
  * @description
754
756
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_PutUserPermissionsBoundary.html IAM: PutUserPermissionsBoundary}
755
757
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#PutUserPermissionsBoundary IAM: PutUserPermissionsBoundary}
756
758
  */
757
- PutUserPermissionsBoundary: (input: { PermissionsBoundary: string, UserName: string }) => Promise<PutUserPermissionsBoundaryResponse>
759
+ PutUserPermissionsBoundary: (input: AwsLiteMethodOptions & { PermissionsBoundary: string, UserName: string }) => Promise<PutUserPermissionsBoundaryResponse>
758
760
  /**
759
761
  * @description
760
762
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_PutUserPolicy.html IAM: PutUserPolicy}
761
763
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#PutUserPolicy IAM: PutUserPolicy}
762
764
  */
763
- PutUserPolicy: (input: { PolicyDocument: string | Record<string, any>, PolicyName: string, UserName: string }) => Promise<PutUserPolicyResponse>
765
+ PutUserPolicy: (input: AwsLiteMethodOptions & { PolicyDocument: string | Record<string, any>, PolicyName: string, UserName: string }) => Promise<PutUserPolicyResponse>
764
766
  /**
765
767
  * @description
766
768
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_RemoveClientIDFromOpenIDConnectProvider.html IAM: RemoveClientIDFromOpenIDConnectProvider}
767
769
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#RemoveClientIDFromOpenIDConnectProvider IAM: RemoveClientIDFromOpenIDConnectProvider}
768
770
  */
769
- RemoveClientIDFromOpenIDConnectProvider: (input: { ClientID: string, OpenIDConnectProviderArn: string }) => Promise<RemoveClientIDFromOpenIDConnectProviderResponse>
771
+ RemoveClientIDFromOpenIDConnectProvider: (input: AwsLiteMethodOptions & { ClientID: string, OpenIDConnectProviderArn: string }) => Promise<RemoveClientIDFromOpenIDConnectProviderResponse>
770
772
  /**
771
773
  * @description
772
774
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_RemoveRoleFromInstanceProfile.html IAM: RemoveRoleFromInstanceProfile}
773
775
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#RemoveRoleFromInstanceProfile IAM: RemoveRoleFromInstanceProfile}
774
776
  */
775
- RemoveRoleFromInstanceProfile: (input: { InstanceProfileName: string, RoleName: string }) => Promise<RemoveRoleFromInstanceProfileResponse>
777
+ RemoveRoleFromInstanceProfile: (input: AwsLiteMethodOptions & { InstanceProfileName: string, RoleName: string }) => Promise<RemoveRoleFromInstanceProfileResponse>
776
778
  /**
777
779
  * @description
778
780
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_RemoveUserFromGroup.html IAM: RemoveUserFromGroup}
779
781
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#RemoveUserFromGroup IAM: RemoveUserFromGroup}
780
782
  */
781
- RemoveUserFromGroup: (input: { GroupName: string, UserName: string }) => Promise<RemoveUserFromGroupResponse>
783
+ RemoveUserFromGroup: (input: AwsLiteMethodOptions & { GroupName: string, UserName: string }) => Promise<RemoveUserFromGroupResponse>
782
784
  /**
783
785
  * @description
784
786
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_ResetServiceSpecificCredential.html IAM: ResetServiceSpecificCredential}
785
787
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#ResetServiceSpecificCredential IAM: ResetServiceSpecificCredential}
786
788
  */
787
- ResetServiceSpecificCredential: (input: { ServiceSpecificCredentialId: string, UserName?: string }) => Promise<ResetServiceSpecificCredentialResponse>
789
+ ResetServiceSpecificCredential: (input: AwsLiteMethodOptions & { ServiceSpecificCredentialId: string, UserName?: string }) => Promise<ResetServiceSpecificCredentialResponse>
788
790
  /**
789
791
  * @description
790
792
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_SetDefaultPolicyVersion.html IAM: SetDefaultPolicyVersion}
791
793
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#SetDefaultPolicyVersion IAM: SetDefaultPolicyVersion}
792
794
  */
793
- SetDefaultPolicyVersion: (input: { PolicyArn: string, VersionId: string }) => Promise<SetDefaultPolicyVersionResponse>
795
+ SetDefaultPolicyVersion: (input: AwsLiteMethodOptions & { PolicyArn: string, VersionId: string }) => Promise<SetDefaultPolicyVersionResponse>
794
796
  /**
795
797
  * @description
796
798
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_SetSecurityTokenServicePreferences.html IAM: SetSecurityTokenServicePreferences}
797
799
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#SetSecurityTokenServicePreferences IAM: SetSecurityTokenServicePreferences}
798
800
  */
799
- SetSecurityTokenServicePreferences: (input: { GlobalEndpointTokenVersion: string }) => Promise<SetSecurityTokenServicePreferencesResponse>
801
+ SetSecurityTokenServicePreferences: (input: AwsLiteMethodOptions & { GlobalEndpointTokenVersion: string }) => Promise<SetSecurityTokenServicePreferencesResponse>
800
802
  /**
801
803
  * @description
802
804
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_SimulateCustomPolicy.html IAM: SimulateCustomPolicy}
803
805
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#SimulateCustomPolicy IAM: SimulateCustomPolicy}
804
806
  */
805
- SimulateCustomPolicy: (input: { ActionNames: any[], PolicyInputList: any[], CallerArn?: string, ContextEntries?: any[], Marker?: string, MaxItems?: number, PermissionsBoundaryPolicyInputList?: any[], ResourceArns?: any[], ResourceHandlingOption?: string, ResourceOwner?: string, ResourcePolicy?: string | Record<string, any>, paginate?: boolean | string }) => Promise<SimulateCustomPolicyResponse>
807
+ SimulateCustomPolicy: (input: AwsLiteMethodOptions & { ActionNames: any[], PolicyInputList: any[], CallerArn?: string, ContextEntries?: any[], Marker?: string, MaxItems?: number, PermissionsBoundaryPolicyInputList?: any[], ResourceArns?: any[], ResourceHandlingOption?: string, ResourceOwner?: string, ResourcePolicy?: string | Record<string, any>, paginate?: boolean | string }) => Promise<SimulateCustomPolicyResponse>
806
808
  /**
807
809
  * @description
808
810
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_SimulatePrincipalPolicy.html IAM: SimulatePrincipalPolicy}
809
811
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#SimulatePrincipalPolicy IAM: SimulatePrincipalPolicy}
810
812
  */
811
- SimulatePrincipalPolicy: (input: { ActionNames: any[], PolicySourceArn: string, CallerArn?: string, ContextEntries?: any[], Marker?: string, MaxItems?: number, PermissionsBoundaryPolicyInputList?: any[], PolicyInputList?: any[], ResourceArns?: any[], ResourceHandlingOption?: string, ResourceOwner?: string, ResourcePolicy?: string | Record<string, any>, paginate?: boolean | string }) => Promise<SimulatePrincipalPolicyResponse>
813
+ SimulatePrincipalPolicy: (input: AwsLiteMethodOptions & { ActionNames: any[], PolicySourceArn: string, CallerArn?: string, ContextEntries?: any[], Marker?: string, MaxItems?: number, PermissionsBoundaryPolicyInputList?: any[], PolicyInputList?: any[], ResourceArns?: any[], ResourceHandlingOption?: string, ResourceOwner?: string, ResourcePolicy?: string | Record<string, any>, paginate?: boolean | string }) => Promise<SimulatePrincipalPolicyResponse>
812
814
  /**
813
815
  * @description
814
816
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_TagInstanceProfile.html IAM: TagInstanceProfile}
815
817
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#TagInstanceProfile IAM: TagInstanceProfile}
816
818
  */
817
- TagInstanceProfile: (input: { InstanceProfileName: string, Tags: any[] }) => Promise<TagInstanceProfileResponse>
819
+ TagInstanceProfile: (input: AwsLiteMethodOptions & { InstanceProfileName: string, Tags: any[] }) => Promise<TagInstanceProfileResponse>
818
820
  /**
819
821
  * @description
820
822
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_TagOpenIDConnectProvider.html IAM: TagOpenIDConnectProvider}
821
823
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#TagOpenIDConnectProvider IAM: TagOpenIDConnectProvider}
822
824
  */
823
- TagOpenIDConnectProvider: (input: { OpenIDConnectProviderArn: string, Tags: any[] }) => Promise<TagOpenIDConnectProviderResponse>
825
+ TagOpenIDConnectProvider: (input: AwsLiteMethodOptions & { OpenIDConnectProviderArn: string, Tags: any[] }) => Promise<TagOpenIDConnectProviderResponse>
824
826
  /**
825
827
  * @description
826
828
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_TagPolicy.html IAM: TagPolicy}
827
829
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#TagPolicy IAM: TagPolicy}
828
830
  */
829
- TagPolicy: (input: { PolicyArn: string, Tags: any[] }) => Promise<TagPolicyResponse>
831
+ TagPolicy: (input: AwsLiteMethodOptions & { PolicyArn: string, Tags: any[] }) => Promise<TagPolicyResponse>
830
832
  /**
831
833
  * @description
832
834
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_TagRole.html IAM: TagRole}
833
835
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#TagRole IAM: TagRole}
834
836
  */
835
- TagRole: (input: { RoleName: string, Tags: any[] }) => Promise<TagRoleResponse>
837
+ TagRole: (input: AwsLiteMethodOptions & { RoleName: string, Tags: any[] }) => Promise<TagRoleResponse>
836
838
  /**
837
839
  * @description
838
840
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_TagServerCertificate.html IAM: TagServerCertificate}
839
841
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#TagServerCertificate IAM: TagServerCertificate}
840
842
  */
841
- TagServerCertificate: (input: { ServerCertificateName: string, Tags: any[] }) => Promise<TagServerCertificateResponse>
843
+ TagServerCertificate: (input: AwsLiteMethodOptions & { ServerCertificateName: string, Tags: any[] }) => Promise<TagServerCertificateResponse>
842
844
  /**
843
845
  * @description
844
846
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_TagUser.html IAM: TagUser}
845
847
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#TagUser IAM: TagUser}
846
848
  */
847
- TagUser: (input: { UserName: string, Tags: any[] }) => Promise<TagUserResponse>
849
+ TagUser: (input: AwsLiteMethodOptions & { UserName: string, Tags: any[] }) => Promise<TagUserResponse>
848
850
  /**
849
851
  * @description
850
852
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UntagInstanceProfile.html IAM: UntagInstanceProfile}
851
853
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UntagInstanceProfile IAM: UntagInstanceProfile}
852
854
  */
853
- UntagInstanceProfile: (input: { InstanceProfileName: string, TagKeys: any[] }) => Promise<UntagInstanceProfileResponse>
855
+ UntagInstanceProfile: (input: AwsLiteMethodOptions & { InstanceProfileName: string, TagKeys: any[] }) => Promise<UntagInstanceProfileResponse>
854
856
  /**
855
857
  * @description
856
858
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UntagOpenIDConnectProvider.html IAM: UntagOpenIDConnectProvider}
857
859
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UntagOpenIDConnectProvider IAM: UntagOpenIDConnectProvider}
858
860
  */
859
- UntagOpenIDConnectProvider: (input: { OpenIDConnectProviderArn: string, TagKeys: any[] }) => Promise<UntagOpenIDConnectProviderResponse>
861
+ UntagOpenIDConnectProvider: (input: AwsLiteMethodOptions & { OpenIDConnectProviderArn: string, TagKeys: any[] }) => Promise<UntagOpenIDConnectProviderResponse>
860
862
  /**
861
863
  * @description
862
864
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UntagPolicy.html IAM: UntagPolicy}
863
865
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UntagPolicy IAM: UntagPolicy}
864
866
  */
865
- UntagPolicy: (input: { PolicyArn: string, TagKeys: any[] }) => Promise<UntagPolicyResponse>
867
+ UntagPolicy: (input: AwsLiteMethodOptions & { PolicyArn: string, TagKeys: any[] }) => Promise<UntagPolicyResponse>
866
868
  /**
867
869
  * @description
868
870
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UntagRole.html IAM: UntagRole}
869
871
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UntagRole IAM: UntagRole}
870
872
  */
871
- UntagRole: (input: { RoleName: string, TagKeys: any[] }) => Promise<UntagRoleResponse>
873
+ UntagRole: (input: AwsLiteMethodOptions & { RoleName: string, TagKeys: any[] }) => Promise<UntagRoleResponse>
872
874
  /**
873
875
  * @description
874
876
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UntagServerCertificate.html IAM: UntagServerCertificate}
875
877
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UntagServerCertificate IAM: UntagServerCertificate}
876
878
  */
877
- UntagServerCertificate: (input: { ServerCertificateName: string, TagKeys: any[] }) => Promise<UntagServerCertificateResponse>
879
+ UntagServerCertificate: (input: AwsLiteMethodOptions & { ServerCertificateName: string, TagKeys: any[] }) => Promise<UntagServerCertificateResponse>
878
880
  /**
879
881
  * @description
880
882
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UntagUser.html IAM: UntagUser}
881
883
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UntagUser IAM: UntagUser}
882
884
  */
883
- UntagUser: (input: { UserName: string, TagKeys: any[] }) => Promise<UntagUserResponse>
885
+ UntagUser: (input: AwsLiteMethodOptions & { UserName: string, TagKeys: any[] }) => Promise<UntagUserResponse>
884
886
  /**
885
887
  * @description
886
888
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateAccessKey.html IAM: UpdateAccessKey}
887
889
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateAccessKey IAM: UpdateAccessKey}
888
890
  */
889
- UpdateAccessKey: (input: { AccessKeyId: string, Status: string, UserName?: string }) => Promise<UpdateAccessKeyResponse>
891
+ UpdateAccessKey: (input: AwsLiteMethodOptions & { AccessKeyId: string, Status: string, UserName?: string }) => Promise<UpdateAccessKeyResponse>
890
892
  /**
891
893
  * @description
892
894
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateAccountPasswordPolicy.html IAM: UpdateAccountPasswordPolicy}
893
895
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateAccountPasswordPolicy IAM: UpdateAccountPasswordPolicy}
894
896
  */
895
- UpdateAccountPasswordPolicy: (input: { AllowUsersToChangePassword?: boolean, HardExpiry?: boolean, MaxPasswordAge?: number, MinimumPasswordLength?: number, PasswordReusePrevention?: number, RequireLowercaseCharacters?: boolean, RequireNumbers?: boolean, RequireSymbols?: boolean, RequireUppercaseCharacters?: boolean }) => Promise<UpdateAccountPasswordPolicyResponse>
897
+ UpdateAccountPasswordPolicy: (input: AwsLiteMethodOptions & { AllowUsersToChangePassword?: boolean, HardExpiry?: boolean, MaxPasswordAge?: number, MinimumPasswordLength?: number, PasswordReusePrevention?: number, RequireLowercaseCharacters?: boolean, RequireNumbers?: boolean, RequireSymbols?: boolean, RequireUppercaseCharacters?: boolean }) => Promise<UpdateAccountPasswordPolicyResponse>
896
898
  /**
897
899
  * @description
898
900
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateAssumeRolePolicy.html IAM: UpdateAssumeRolePolicy}
899
901
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateAssumeRolePolicy IAM: UpdateAssumeRolePolicy}
900
902
  */
901
- UpdateAssumeRolePolicy: (input: { PolicyDocument: string | Record<string, any>, RoleName: string }) => Promise<UpdateAssumeRolePolicyResponse>
903
+ UpdateAssumeRolePolicy: (input: AwsLiteMethodOptions & { PolicyDocument: string | Record<string, any>, RoleName: string }) => Promise<UpdateAssumeRolePolicyResponse>
902
904
  /**
903
905
  * @description
904
906
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateGroup.html IAM: UpdateGroup}
905
907
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateGroup IAM: UpdateGroup}
906
908
  */
907
- UpdateGroup: (input: { GroupName: string, NewGroupName?: string, NewPath?: string }) => Promise<UpdateGroupResponse>
909
+ UpdateGroup: (input: AwsLiteMethodOptions & { GroupName: string, NewGroupName?: string, NewPath?: string }) => Promise<UpdateGroupResponse>
908
910
  /**
909
911
  * @description
910
912
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateLoginProfile.html IAM: UpdateLoginProfile}
911
913
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateLoginProfile IAM: UpdateLoginProfile}
912
914
  */
913
- UpdateLoginProfile: (input: { UserName: string, Password?: string, PasswordResetRequired?: boolean }) => Promise<UpdateLoginProfileResponse>
915
+ UpdateLoginProfile: (input: AwsLiteMethodOptions & { UserName: string, Password?: string, PasswordResetRequired?: boolean }) => Promise<UpdateLoginProfileResponse>
914
916
  /**
915
917
  * @description
916
918
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateOpenIDConnectProviderThumbprint.html IAM: UpdateOpenIDConnectProviderThumbprint}
917
919
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateOpenIDConnectProviderThumbprint IAM: UpdateOpenIDConnectProviderThumbprint}
918
920
  */
919
- UpdateOpenIDConnectProviderThumbprint: (input: { OpenIDConnectProviderArn: string, ThumbprintList: any[] }) => Promise<UpdateOpenIDConnectProviderThumbprintResponse>
921
+ UpdateOpenIDConnectProviderThumbprint: (input: AwsLiteMethodOptions & { OpenIDConnectProviderArn: string, ThumbprintList: any[] }) => Promise<UpdateOpenIDConnectProviderThumbprintResponse>
920
922
  /**
921
923
  * @description
922
924
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateRole.html IAM: UpdateRole}
923
925
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateRole IAM: UpdateRole}
924
926
  */
925
- UpdateRole: (input: { RoleName: string, Description?: string, MaxSessionDuration?: number }) => Promise<UpdateRoleResponse>
927
+ UpdateRole: (input: AwsLiteMethodOptions & { RoleName: string, Description?: string, MaxSessionDuration?: number }) => Promise<UpdateRoleResponse>
926
928
  /**
927
929
  * @description
928
930
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateRoleDescription.html IAM: UpdateRoleDescription}
929
931
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateRoleDescription IAM: UpdateRoleDescription}
930
932
  */
931
- UpdateRoleDescription: (input: { RoleName: string, Description?: string }) => Promise<UpdateRoleDescriptionResponse>
933
+ UpdateRoleDescription: (input: AwsLiteMethodOptions & { RoleName: string, Description?: string }) => Promise<UpdateRoleDescriptionResponse>
932
934
  /**
933
935
  * @description
934
936
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateServerCertificate.html IAM: UpdateServerCertificate}
935
937
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateServerCertificate IAM: UpdateServerCertificate}
936
938
  */
937
- UpdateServerCertificate: (input: { ServerCertificateName: string, NewPath?: string, NewServerCertificateName?: string }) => Promise<UpdateServerCertificateResponse>
939
+ UpdateServerCertificate: (input: AwsLiteMethodOptions & { ServerCertificateName: string, NewPath?: string, NewServerCertificateName?: string }) => Promise<UpdateServerCertificateResponse>
938
940
  /**
939
941
  * @description
940
942
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateServiceSpecificCredential.html IAM: UpdateServiceSpecificCredential}
941
943
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateServiceSpecificCredential IAM: UpdateServiceSpecificCredential}
942
944
  */
943
- UpdateServiceSpecificCredential: (input: { ServiceSpecificCredentialId: string, Status: string, UserName?: string }) => Promise<UpdateServiceSpecificCredentialResponse>
945
+ UpdateServiceSpecificCredential: (input: AwsLiteMethodOptions & { ServiceSpecificCredentialId: string, Status: string, UserName?: string }) => Promise<UpdateServiceSpecificCredentialResponse>
944
946
  /**
945
947
  * @description
946
948
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateSigningCertificate.html IAM: UpdateSigningCertificate}
947
949
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateSigningCertificate IAM: UpdateSigningCertificate}
948
950
  */
949
- UpdateSigningCertificate: (input: { CertificateId: string, Status: string, UserName?: string }) => Promise<UpdateSigningCertificateResponse>
951
+ UpdateSigningCertificate: (input: AwsLiteMethodOptions & { CertificateId: string, Status: string, UserName?: string }) => Promise<UpdateSigningCertificateResponse>
950
952
  /**
951
953
  * @description
952
954
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateSSHPublicKey.html IAM: UpdateSSHPublicKey}
953
955
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateSSHPublicKey IAM: UpdateSSHPublicKey}
954
956
  */
955
- UpdateSSHPublicKey: (input: { SSHPublicKeyId: string, Status: string, UserName: string }) => Promise<UpdateSSHPublicKeyResponse>
957
+ UpdateSSHPublicKey: (input: AwsLiteMethodOptions & { SSHPublicKeyId: string, Status: string, UserName: string }) => Promise<UpdateSSHPublicKeyResponse>
956
958
  /**
957
959
  * @description
958
960
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UpdateUser.html IAM: UpdateUser}
959
961
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UpdateUser IAM: UpdateUser}
960
962
  */
961
- UpdateUser: (input: { UserName: string, NewPath?: string, NewUserName?: string }) => Promise<UpdateUserResponse>
963
+ UpdateUser: (input: AwsLiteMethodOptions & { UserName: string, NewPath?: string, NewUserName?: string }) => Promise<UpdateUserResponse>
962
964
  /**
963
965
  * @description
964
966
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UploadServerCertificate.html IAM: UploadServerCertificate}
965
967
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UploadServerCertificate IAM: UploadServerCertificate}
966
968
  */
967
- UploadServerCertificate: (input: { CertificateBody: string, PrivateKey: string, ServerCertificateName: string, CertificateChain?: string, Path?: string, Tags?: any[] }) => Promise<UploadServerCertificateResponse>
969
+ UploadServerCertificate: (input: AwsLiteMethodOptions & { CertificateBody: string, PrivateKey: string, ServerCertificateName: string, CertificateChain?: string, Path?: string, Tags?: any[] }) => Promise<UploadServerCertificateResponse>
968
970
  /**
969
971
  * @description
970
972
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UploadSigningCertificate.html IAM: UploadSigningCertificate}
971
973
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UploadSigningCertificate IAM: UploadSigningCertificate}
972
974
  */
973
- UploadSigningCertificate: (input: { CertificateBody: string, UserName?: string }) => Promise<UploadSigningCertificateResponse>
975
+ UploadSigningCertificate: (input: AwsLiteMethodOptions & { CertificateBody: string, UserName?: string }) => Promise<UploadSigningCertificateResponse>
974
976
  /**
975
977
  * @description
976
978
  * - AWS docs: {@link https://docs.aws.amazon.com/IAM/latest/APIReference/API_UploadSSHPublicKey.html IAM: UploadSSHPublicKey}
977
979
  * - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/iam/readme.md#UploadSSHPublicKey IAM: UploadSSHPublicKey}
978
980
  */
979
- UploadSSHPublicKey: (input: { SSHPublicKeyBody: string, UserName: string }) => Promise<UploadSSHPublicKeyResponse>
981
+ UploadSSHPublicKey: (input: AwsLiteMethodOptions & { SSHPublicKeyBody: string, UserName: string }) => Promise<UploadSSHPublicKeyResponse>
980
982
  // $METHODS_END
981
983
  }
982
984
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-lite/iam-types",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Type definitions for the `@aws-lite/iam` plugin",
5
5
  "homepage": "https://aws-lite.org/services/iam",
6
6
  "repository": {