@aws-sdk/client-iam 3.687.0 → 3.692.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -0
- package/dist-cjs/index.js +510 -10
- package/dist-es/IAM.js +10 -0
- package/dist-es/commands/DisableOrganizationsRootCredentialsManagementCommand.js +22 -0
- package/dist-es/commands/DisableOrganizationsRootSessionsCommand.js +22 -0
- package/dist-es/commands/EnableOrganizationsRootCredentialsManagementCommand.js +22 -0
- package/dist-es/commands/EnableOrganizationsRootSessionsCommand.js +22 -0
- package/dist-es/commands/ListOrganizationsFeaturesCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +70 -9
- package/dist-es/models/models_1.js +9 -0
- package/dist-es/protocols/Aws_query.js +310 -1
- package/dist-types/IAM.d.ts +43 -0
- package/dist-types/IAMClient.d.ts +7 -2
- package/dist-types/commands/CreateLoginProfileCommand.d.ts +3 -3
- package/dist-types/commands/DeactivateMFADeviceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLoginProfileCommand.d.ts +2 -2
- package/dist-types/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +91 -0
- package/dist-types/commands/DisableOrganizationsRootSessionsCommand.d.ts +91 -0
- package/dist-types/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +107 -0
- package/dist-types/commands/EnableOrganizationsRootSessionsCommand.d.ts +106 -0
- package/dist-types/commands/GetLoginProfileCommand.d.ts +2 -2
- package/dist-types/commands/ListAccountAliasesCommand.d.ts +3 -3
- package/dist-types/commands/ListOrganizationsFeaturesCommand.d.ts +89 -0
- package/dist-types/commands/SimulateCustomPolicyCommand.d.ts +2 -1
- package/dist-types/commands/SimulatePrincipalPolicyCommand.d.ts +1 -1
- package/dist-types/commands/TagInstanceProfileCommand.d.ts +1 -1
- package/dist-types/commands/TagMFADeviceCommand.d.ts +1 -1
- package/dist-types/commands/TagOpenIDConnectProviderCommand.d.ts +1 -1
- package/dist-types/commands/TagPolicyCommand.d.ts +1 -1
- package/dist-types/commands/TagRoleCommand.d.ts +1 -1
- package/dist-types/commands/TagSAMLProviderCommand.d.ts +1 -1
- package/dist-types/commands/TagServerCertificateCommand.d.ts +1 -1
- package/dist-types/commands/TagUserCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +616 -1028
- package/dist-types/models/models_1.d.ts +642 -32
- package/dist-types/protocols/Aws_query.d.ts +45 -0
- package/dist-types/ts3.4/IAM.d.ts +105 -0
- package/dist-types/ts3.4/IAMClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateLoginProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteLoginProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisableOrganizationsRootSessionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableOrganizationsRootSessionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetLoginProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListOrganizationsFeaturesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SimulateCustomPolicyCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SimulatePrincipalPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagInstanceProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagMFADeviceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagOpenIDConnectProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagRoleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagSAMLProviderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagServerCertificateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagUserCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +501 -511
- package/dist-types/ts3.4/models/models_1.d.ts +135 -31
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +60 -0
- package/package.json +36 -36
|
@@ -9,10 +9,10 @@ export type AccessAdvisorUsageGranularityType =
|
|
|
9
9
|
export interface AccessDetail {
|
|
10
10
|
ServiceName: string | undefined;
|
|
11
11
|
ServiceNamespace: string | undefined;
|
|
12
|
-
Region?: string;
|
|
13
|
-
EntityPath?: string;
|
|
14
|
-
LastAuthenticatedTime?: Date;
|
|
15
|
-
TotalAuthenticatedEntities?: number;
|
|
12
|
+
Region?: string | undefined;
|
|
13
|
+
EntityPath?: string | undefined;
|
|
14
|
+
LastAuthenticatedTime?: Date | undefined;
|
|
15
|
+
TotalAuthenticatedEntities?: number | undefined;
|
|
16
16
|
}
|
|
17
17
|
export declare const StatusType: {
|
|
18
18
|
readonly Active: "Active";
|
|
@@ -24,18 +24,29 @@ export interface AccessKey {
|
|
|
24
24
|
AccessKeyId: string | undefined;
|
|
25
25
|
Status: StatusType | undefined;
|
|
26
26
|
SecretAccessKey: string | undefined;
|
|
27
|
-
CreateDate?: Date;
|
|
27
|
+
CreateDate?: Date | undefined;
|
|
28
28
|
}
|
|
29
29
|
export interface AccessKeyLastUsed {
|
|
30
|
-
LastUsedDate?: Date;
|
|
30
|
+
LastUsedDate?: Date | undefined;
|
|
31
31
|
ServiceName: string | undefined;
|
|
32
32
|
Region: string | undefined;
|
|
33
33
|
}
|
|
34
34
|
export interface AccessKeyMetadata {
|
|
35
|
-
UserName?: string;
|
|
36
|
-
AccessKeyId?: string;
|
|
37
|
-
Status?: StatusType;
|
|
38
|
-
CreateDate?: Date;
|
|
35
|
+
UserName?: string | undefined;
|
|
36
|
+
AccessKeyId?: string | undefined;
|
|
37
|
+
Status?: StatusType | undefined;
|
|
38
|
+
CreateDate?: Date | undefined;
|
|
39
|
+
}
|
|
40
|
+
export declare class AccountNotManagementOrDelegatedAdministratorException extends __BaseException {
|
|
41
|
+
readonly name: "AccountNotManagementOrDelegatedAdministratorException";
|
|
42
|
+
readonly $fault: "client";
|
|
43
|
+
Message?: string | undefined;
|
|
44
|
+
constructor(
|
|
45
|
+
opts: __ExceptionOptionType<
|
|
46
|
+
AccountNotManagementOrDelegatedAdministratorException,
|
|
47
|
+
__BaseException
|
|
48
|
+
>
|
|
49
|
+
);
|
|
39
50
|
}
|
|
40
51
|
export interface AddClientIDToOpenIDConnectProviderRequest {
|
|
41
52
|
OpenIDConnectProviderArn: string | undefined;
|
|
@@ -104,12 +115,12 @@ export declare const PermissionsBoundaryAttachmentType: {
|
|
|
104
115
|
export type PermissionsBoundaryAttachmentType =
|
|
105
116
|
(typeof PermissionsBoundaryAttachmentType)[keyof typeof PermissionsBoundaryAttachmentType];
|
|
106
117
|
export interface AttachedPermissionsBoundary {
|
|
107
|
-
PermissionsBoundaryType?: PermissionsBoundaryAttachmentType;
|
|
108
|
-
PermissionsBoundaryArn?: string;
|
|
118
|
+
PermissionsBoundaryType?: PermissionsBoundaryAttachmentType | undefined;
|
|
119
|
+
PermissionsBoundaryArn?: string | undefined;
|
|
109
120
|
}
|
|
110
121
|
export interface AttachedPolicy {
|
|
111
|
-
PolicyName?: string;
|
|
112
|
-
PolicyArn?: string;
|
|
122
|
+
PolicyName?: string | undefined;
|
|
123
|
+
PolicyArn?: string | undefined;
|
|
113
124
|
}
|
|
114
125
|
export interface AttachGroupPolicyRequest {
|
|
115
126
|
GroupName: string | undefined;
|
|
@@ -162,7 +173,7 @@ export declare class PasswordPolicyViolationException extends __BaseException {
|
|
|
162
173
|
);
|
|
163
174
|
}
|
|
164
175
|
export interface CreateAccessKeyRequest {
|
|
165
|
-
UserName?: string;
|
|
176
|
+
UserName?: string | undefined;
|
|
166
177
|
}
|
|
167
178
|
export interface CreateAccessKeyResponse {
|
|
168
179
|
AccessKey: AccessKey | undefined;
|
|
@@ -181,7 +192,7 @@ export interface CreateAccountAliasRequest {
|
|
|
181
192
|
AccountAlias: string | undefined;
|
|
182
193
|
}
|
|
183
194
|
export interface CreateGroupRequest {
|
|
184
|
-
Path?: string;
|
|
195
|
+
Path?: string | undefined;
|
|
185
196
|
GroupName: string | undefined;
|
|
186
197
|
}
|
|
187
198
|
export interface Group {
|
|
@@ -200,12 +211,12 @@ export interface Tag {
|
|
|
200
211
|
}
|
|
201
212
|
export interface CreateInstanceProfileRequest {
|
|
202
213
|
InstanceProfileName: string | undefined;
|
|
203
|
-
Path?: string;
|
|
204
|
-
Tags?: Tag[];
|
|
214
|
+
Path?: string | undefined;
|
|
215
|
+
Tags?: Tag[] | undefined;
|
|
205
216
|
}
|
|
206
217
|
export interface RoleLastUsed {
|
|
207
|
-
LastUsedDate?: Date;
|
|
208
|
-
Region?: string;
|
|
218
|
+
LastUsedDate?: Date | undefined;
|
|
219
|
+
Region?: string | undefined;
|
|
209
220
|
}
|
|
210
221
|
export interface Role {
|
|
211
222
|
Path: string | undefined;
|
|
@@ -213,12 +224,12 @@ export interface Role {
|
|
|
213
224
|
RoleId: string | undefined;
|
|
214
225
|
Arn: string | undefined;
|
|
215
226
|
CreateDate: Date | undefined;
|
|
216
|
-
AssumeRolePolicyDocument?: string;
|
|
217
|
-
Description?: string;
|
|
218
|
-
MaxSessionDuration?: number;
|
|
219
|
-
PermissionsBoundary?: AttachedPermissionsBoundary;
|
|
220
|
-
Tags?: Tag[];
|
|
221
|
-
RoleLastUsed?: RoleLastUsed;
|
|
227
|
+
AssumeRolePolicyDocument?: string | undefined;
|
|
228
|
+
Description?: string | undefined;
|
|
229
|
+
MaxSessionDuration?: number | undefined;
|
|
230
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
231
|
+
Tags?: Tag[] | undefined;
|
|
232
|
+
RoleLastUsed?: RoleLastUsed | undefined;
|
|
222
233
|
}
|
|
223
234
|
export interface InstanceProfile {
|
|
224
235
|
Path: string | undefined;
|
|
@@ -227,33 +238,33 @@ export interface InstanceProfile {
|
|
|
227
238
|
Arn: string | undefined;
|
|
228
239
|
CreateDate: Date | undefined;
|
|
229
240
|
Roles: Role[] | undefined;
|
|
230
|
-
Tags?: Tag[];
|
|
241
|
+
Tags?: Tag[] | undefined;
|
|
231
242
|
}
|
|
232
243
|
export interface CreateInstanceProfileResponse {
|
|
233
244
|
InstanceProfile: InstanceProfile | undefined;
|
|
234
245
|
}
|
|
235
246
|
export interface CreateLoginProfileRequest {
|
|
236
|
-
UserName
|
|
237
|
-
Password
|
|
238
|
-
PasswordResetRequired?: boolean;
|
|
247
|
+
UserName?: string | undefined;
|
|
248
|
+
Password?: string | undefined;
|
|
249
|
+
PasswordResetRequired?: boolean | undefined;
|
|
239
250
|
}
|
|
240
251
|
export interface LoginProfile {
|
|
241
252
|
UserName: string | undefined;
|
|
242
253
|
CreateDate: Date | undefined;
|
|
243
|
-
PasswordResetRequired?: boolean;
|
|
254
|
+
PasswordResetRequired?: boolean | undefined;
|
|
244
255
|
}
|
|
245
256
|
export interface CreateLoginProfileResponse {
|
|
246
257
|
LoginProfile: LoginProfile | undefined;
|
|
247
258
|
}
|
|
248
259
|
export interface CreateOpenIDConnectProviderRequest {
|
|
249
260
|
Url: string | undefined;
|
|
250
|
-
ClientIDList?: string[];
|
|
251
|
-
ThumbprintList?: string[];
|
|
252
|
-
Tags?: Tag[];
|
|
261
|
+
ClientIDList?: string[] | undefined;
|
|
262
|
+
ThumbprintList?: string[] | undefined;
|
|
263
|
+
Tags?: Tag[] | undefined;
|
|
253
264
|
}
|
|
254
265
|
export interface CreateOpenIDConnectProviderResponse {
|
|
255
|
-
OpenIDConnectProviderArn?: string;
|
|
256
|
-
Tags?: Tag[];
|
|
266
|
+
OpenIDConnectProviderArn?: string | undefined;
|
|
267
|
+
Tags?: Tag[] | undefined;
|
|
257
268
|
}
|
|
258
269
|
export declare class OpenIdIdpCommunicationErrorException extends __BaseException {
|
|
259
270
|
readonly name: "OpenIdIdpCommunicationErrorException";
|
|
@@ -267,27 +278,27 @@ export declare class OpenIdIdpCommunicationErrorException extends __BaseExceptio
|
|
|
267
278
|
}
|
|
268
279
|
export interface CreatePolicyRequest {
|
|
269
280
|
PolicyName: string | undefined;
|
|
270
|
-
Path?: string;
|
|
281
|
+
Path?: string | undefined;
|
|
271
282
|
PolicyDocument: string | undefined;
|
|
272
|
-
Description?: string;
|
|
273
|
-
Tags?: Tag[];
|
|
283
|
+
Description?: string | undefined;
|
|
284
|
+
Tags?: Tag[] | undefined;
|
|
274
285
|
}
|
|
275
286
|
export interface Policy {
|
|
276
|
-
PolicyName?: string;
|
|
277
|
-
PolicyId?: string;
|
|
278
|
-
Arn?: string;
|
|
279
|
-
Path?: string;
|
|
280
|
-
DefaultVersionId?: string;
|
|
281
|
-
AttachmentCount?: number;
|
|
282
|
-
PermissionsBoundaryUsageCount?: number;
|
|
283
|
-
IsAttachable?: boolean;
|
|
284
|
-
Description?: string;
|
|
285
|
-
CreateDate?: Date;
|
|
286
|
-
UpdateDate?: Date;
|
|
287
|
-
Tags?: Tag[];
|
|
287
|
+
PolicyName?: string | undefined;
|
|
288
|
+
PolicyId?: string | undefined;
|
|
289
|
+
Arn?: string | undefined;
|
|
290
|
+
Path?: string | undefined;
|
|
291
|
+
DefaultVersionId?: string | undefined;
|
|
292
|
+
AttachmentCount?: number | undefined;
|
|
293
|
+
PermissionsBoundaryUsageCount?: number | undefined;
|
|
294
|
+
IsAttachable?: boolean | undefined;
|
|
295
|
+
Description?: string | undefined;
|
|
296
|
+
CreateDate?: Date | undefined;
|
|
297
|
+
UpdateDate?: Date | undefined;
|
|
298
|
+
Tags?: Tag[] | undefined;
|
|
288
299
|
}
|
|
289
300
|
export interface CreatePolicyResponse {
|
|
290
|
-
Policy?: Policy;
|
|
301
|
+
Policy?: Policy | undefined;
|
|
291
302
|
}
|
|
292
303
|
export declare class MalformedPolicyDocumentException extends __BaseException {
|
|
293
304
|
readonly name: "MalformedPolicyDocumentException";
|
|
@@ -302,25 +313,25 @@ export declare class MalformedPolicyDocumentException extends __BaseException {
|
|
|
302
313
|
export interface CreatePolicyVersionRequest {
|
|
303
314
|
PolicyArn: string | undefined;
|
|
304
315
|
PolicyDocument: string | undefined;
|
|
305
|
-
SetAsDefault?: boolean;
|
|
316
|
+
SetAsDefault?: boolean | undefined;
|
|
306
317
|
}
|
|
307
318
|
export interface PolicyVersion {
|
|
308
|
-
Document?: string;
|
|
309
|
-
VersionId?: string;
|
|
310
|
-
IsDefaultVersion?: boolean;
|
|
311
|
-
CreateDate?: Date;
|
|
319
|
+
Document?: string | undefined;
|
|
320
|
+
VersionId?: string | undefined;
|
|
321
|
+
IsDefaultVersion?: boolean | undefined;
|
|
322
|
+
CreateDate?: Date | undefined;
|
|
312
323
|
}
|
|
313
324
|
export interface CreatePolicyVersionResponse {
|
|
314
|
-
PolicyVersion?: PolicyVersion;
|
|
325
|
+
PolicyVersion?: PolicyVersion | undefined;
|
|
315
326
|
}
|
|
316
327
|
export interface CreateRoleRequest {
|
|
317
|
-
Path?: string;
|
|
328
|
+
Path?: string | undefined;
|
|
318
329
|
RoleName: string | undefined;
|
|
319
330
|
AssumeRolePolicyDocument: string | undefined;
|
|
320
|
-
Description?: string;
|
|
321
|
-
MaxSessionDuration?: number;
|
|
322
|
-
PermissionsBoundary?: string;
|
|
323
|
-
Tags?: Tag[];
|
|
331
|
+
Description?: string | undefined;
|
|
332
|
+
MaxSessionDuration?: number | undefined;
|
|
333
|
+
PermissionsBoundary?: string | undefined;
|
|
334
|
+
Tags?: Tag[] | undefined;
|
|
324
335
|
}
|
|
325
336
|
export interface CreateRoleResponse {
|
|
326
337
|
Role: Role | undefined;
|
|
@@ -328,19 +339,19 @@ export interface CreateRoleResponse {
|
|
|
328
339
|
export interface CreateSAMLProviderRequest {
|
|
329
340
|
SAMLMetadataDocument: string | undefined;
|
|
330
341
|
Name: string | undefined;
|
|
331
|
-
Tags?: Tag[];
|
|
342
|
+
Tags?: Tag[] | undefined;
|
|
332
343
|
}
|
|
333
344
|
export interface CreateSAMLProviderResponse {
|
|
334
|
-
SAMLProviderArn?: string;
|
|
335
|
-
Tags?: Tag[];
|
|
345
|
+
SAMLProviderArn?: string | undefined;
|
|
346
|
+
Tags?: Tag[] | undefined;
|
|
336
347
|
}
|
|
337
348
|
export interface CreateServiceLinkedRoleRequest {
|
|
338
349
|
AWSServiceName: string | undefined;
|
|
339
|
-
Description?: string;
|
|
340
|
-
CustomSuffix?: string;
|
|
350
|
+
Description?: string | undefined;
|
|
351
|
+
CustomSuffix?: string | undefined;
|
|
341
352
|
}
|
|
342
353
|
export interface CreateServiceLinkedRoleResponse {
|
|
343
|
-
Role?: Role;
|
|
354
|
+
Role?: Role | undefined;
|
|
344
355
|
}
|
|
345
356
|
export interface CreateServiceSpecificCredentialRequest {
|
|
346
357
|
UserName: string | undefined;
|
|
@@ -356,7 +367,7 @@ export interface ServiceSpecificCredential {
|
|
|
356
367
|
Status: StatusType | undefined;
|
|
357
368
|
}
|
|
358
369
|
export interface CreateServiceSpecificCredentialResponse {
|
|
359
|
-
ServiceSpecificCredential?: ServiceSpecificCredential;
|
|
370
|
+
ServiceSpecificCredential?: ServiceSpecificCredential | undefined;
|
|
360
371
|
}
|
|
361
372
|
export declare class ServiceNotSupportedException extends __BaseException {
|
|
362
373
|
readonly name: "ServiceNotSupportedException";
|
|
@@ -366,10 +377,10 @@ export declare class ServiceNotSupportedException extends __BaseException {
|
|
|
366
377
|
);
|
|
367
378
|
}
|
|
368
379
|
export interface CreateUserRequest {
|
|
369
|
-
Path?: string;
|
|
380
|
+
Path?: string | undefined;
|
|
370
381
|
UserName: string | undefined;
|
|
371
|
-
PermissionsBoundary?: string;
|
|
372
|
-
Tags?: Tag[];
|
|
382
|
+
PermissionsBoundary?: string | undefined;
|
|
383
|
+
Tags?: Tag[] | undefined;
|
|
373
384
|
}
|
|
374
385
|
export interface User {
|
|
375
386
|
Path: string | undefined;
|
|
@@ -377,35 +388,35 @@ export interface User {
|
|
|
377
388
|
UserId: string | undefined;
|
|
378
389
|
Arn: string | undefined;
|
|
379
390
|
CreateDate: Date | undefined;
|
|
380
|
-
PasswordLastUsed?: Date;
|
|
381
|
-
PermissionsBoundary?: AttachedPermissionsBoundary;
|
|
382
|
-
Tags?: Tag[];
|
|
391
|
+
PasswordLastUsed?: Date | undefined;
|
|
392
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
393
|
+
Tags?: Tag[] | undefined;
|
|
383
394
|
}
|
|
384
395
|
export interface CreateUserResponse {
|
|
385
|
-
User?: User;
|
|
396
|
+
User?: User | undefined;
|
|
386
397
|
}
|
|
387
398
|
export interface CreateVirtualMFADeviceRequest {
|
|
388
|
-
Path?: string;
|
|
399
|
+
Path?: string | undefined;
|
|
389
400
|
VirtualMFADeviceName: string | undefined;
|
|
390
|
-
Tags?: Tag[];
|
|
401
|
+
Tags?: Tag[] | undefined;
|
|
391
402
|
}
|
|
392
403
|
export interface VirtualMFADevice {
|
|
393
404
|
SerialNumber: string | undefined;
|
|
394
|
-
Base32StringSeed?: Uint8Array;
|
|
395
|
-
QRCodePNG?: Uint8Array;
|
|
396
|
-
User?: User;
|
|
397
|
-
EnableDate?: Date;
|
|
398
|
-
Tags?: Tag[];
|
|
405
|
+
Base32StringSeed?: Uint8Array | undefined;
|
|
406
|
+
QRCodePNG?: Uint8Array | undefined;
|
|
407
|
+
User?: User | undefined;
|
|
408
|
+
EnableDate?: Date | undefined;
|
|
409
|
+
Tags?: Tag[] | undefined;
|
|
399
410
|
}
|
|
400
411
|
export interface CreateVirtualMFADeviceResponse {
|
|
401
412
|
VirtualMFADevice: VirtualMFADevice | undefined;
|
|
402
413
|
}
|
|
403
414
|
export interface DeactivateMFADeviceRequest {
|
|
404
|
-
UserName
|
|
415
|
+
UserName?: string | undefined;
|
|
405
416
|
SerialNumber: string | undefined;
|
|
406
417
|
}
|
|
407
418
|
export interface DeleteAccessKeyRequest {
|
|
408
|
-
UserName?: string;
|
|
419
|
+
UserName?: string | undefined;
|
|
409
420
|
AccessKeyId: string | undefined;
|
|
410
421
|
}
|
|
411
422
|
export interface DeleteAccountAliasRequest {
|
|
@@ -429,7 +440,7 @@ export interface DeleteInstanceProfileRequest {
|
|
|
429
440
|
InstanceProfileName: string | undefined;
|
|
430
441
|
}
|
|
431
442
|
export interface DeleteLoginProfileRequest {
|
|
432
|
-
UserName
|
|
443
|
+
UserName?: string | undefined;
|
|
433
444
|
}
|
|
434
445
|
export interface DeleteOpenIDConnectProviderRequest {
|
|
435
446
|
OpenIDConnectProviderArn: string | undefined;
|
|
@@ -464,11 +475,11 @@ export interface DeleteServiceLinkedRoleResponse {
|
|
|
464
475
|
DeletionTaskId: string | undefined;
|
|
465
476
|
}
|
|
466
477
|
export interface DeleteServiceSpecificCredentialRequest {
|
|
467
|
-
UserName?: string;
|
|
478
|
+
UserName?: string | undefined;
|
|
468
479
|
ServiceSpecificCredentialId: string | undefined;
|
|
469
480
|
}
|
|
470
481
|
export interface DeleteSigningCertificateRequest {
|
|
471
|
-
UserName?: string;
|
|
482
|
+
UserName?: string | undefined;
|
|
472
483
|
CertificateId: string | undefined;
|
|
473
484
|
}
|
|
474
485
|
export interface DeleteSSHPublicKeyRequest {
|
|
@@ -500,6 +511,51 @@ export interface DetachUserPolicyRequest {
|
|
|
500
511
|
UserName: string | undefined;
|
|
501
512
|
PolicyArn: string | undefined;
|
|
502
513
|
}
|
|
514
|
+
export interface DisableOrganizationsRootCredentialsManagementRequest {}
|
|
515
|
+
export declare const FeatureType: {
|
|
516
|
+
readonly ROOT_CREDENTIALS_MANAGEMENT: "RootCredentialsManagement";
|
|
517
|
+
readonly ROOT_SESSIONS: "RootSessions";
|
|
518
|
+
};
|
|
519
|
+
export type FeatureType = (typeof FeatureType)[keyof typeof FeatureType];
|
|
520
|
+
export interface DisableOrganizationsRootCredentialsManagementResponse {
|
|
521
|
+
OrganizationId?: string | undefined;
|
|
522
|
+
EnabledFeatures?: FeatureType[] | undefined;
|
|
523
|
+
}
|
|
524
|
+
export declare class OrganizationNotFoundException extends __BaseException {
|
|
525
|
+
readonly name: "OrganizationNotFoundException";
|
|
526
|
+
readonly $fault: "client";
|
|
527
|
+
Message?: string | undefined;
|
|
528
|
+
constructor(
|
|
529
|
+
opts: __ExceptionOptionType<OrganizationNotFoundException, __BaseException>
|
|
530
|
+
);
|
|
531
|
+
}
|
|
532
|
+
export declare class OrganizationNotInAllFeaturesModeException extends __BaseException {
|
|
533
|
+
readonly name: "OrganizationNotInAllFeaturesModeException";
|
|
534
|
+
readonly $fault: "client";
|
|
535
|
+
Message?: string | undefined;
|
|
536
|
+
constructor(
|
|
537
|
+
opts: __ExceptionOptionType<
|
|
538
|
+
OrganizationNotInAllFeaturesModeException,
|
|
539
|
+
__BaseException
|
|
540
|
+
>
|
|
541
|
+
);
|
|
542
|
+
}
|
|
543
|
+
export declare class ServiceAccessNotEnabledException extends __BaseException {
|
|
544
|
+
readonly name: "ServiceAccessNotEnabledException";
|
|
545
|
+
readonly $fault: "client";
|
|
546
|
+
Message?: string | undefined;
|
|
547
|
+
constructor(
|
|
548
|
+
opts: __ExceptionOptionType<
|
|
549
|
+
ServiceAccessNotEnabledException,
|
|
550
|
+
__BaseException
|
|
551
|
+
>
|
|
552
|
+
);
|
|
553
|
+
}
|
|
554
|
+
export interface DisableOrganizationsRootSessionsRequest {}
|
|
555
|
+
export interface DisableOrganizationsRootSessionsResponse {
|
|
556
|
+
OrganizationId?: string | undefined;
|
|
557
|
+
EnabledFeatures?: FeatureType[] | undefined;
|
|
558
|
+
}
|
|
503
559
|
export interface EnableMFADeviceRequest {
|
|
504
560
|
UserName: string | undefined;
|
|
505
561
|
SerialNumber: string | undefined;
|
|
@@ -516,6 +572,27 @@ export declare class InvalidAuthenticationCodeException extends __BaseException
|
|
|
516
572
|
>
|
|
517
573
|
);
|
|
518
574
|
}
|
|
575
|
+
export declare class CallerIsNotManagementAccountException extends __BaseException {
|
|
576
|
+
readonly name: "CallerIsNotManagementAccountException";
|
|
577
|
+
readonly $fault: "client";
|
|
578
|
+
Message?: string | undefined;
|
|
579
|
+
constructor(
|
|
580
|
+
opts: __ExceptionOptionType<
|
|
581
|
+
CallerIsNotManagementAccountException,
|
|
582
|
+
__BaseException
|
|
583
|
+
>
|
|
584
|
+
);
|
|
585
|
+
}
|
|
586
|
+
export interface EnableOrganizationsRootCredentialsManagementRequest {}
|
|
587
|
+
export interface EnableOrganizationsRootCredentialsManagementResponse {
|
|
588
|
+
OrganizationId?: string | undefined;
|
|
589
|
+
EnabledFeatures?: FeatureType[] | undefined;
|
|
590
|
+
}
|
|
591
|
+
export interface EnableOrganizationsRootSessionsRequest {}
|
|
592
|
+
export interface EnableOrganizationsRootSessionsResponse {
|
|
593
|
+
OrganizationId?: string | undefined;
|
|
594
|
+
EnabledFeatures?: FeatureType[] | undefined;
|
|
595
|
+
}
|
|
519
596
|
export declare const ReportStateType: {
|
|
520
597
|
readonly COMPLETE: "COMPLETE";
|
|
521
598
|
readonly INPROGRESS: "INPROGRESS";
|
|
@@ -524,15 +601,15 @@ export declare const ReportStateType: {
|
|
|
524
601
|
export type ReportStateType =
|
|
525
602
|
(typeof ReportStateType)[keyof typeof ReportStateType];
|
|
526
603
|
export interface GenerateCredentialReportResponse {
|
|
527
|
-
State?: ReportStateType;
|
|
528
|
-
Description?: string;
|
|
604
|
+
State?: ReportStateType | undefined;
|
|
605
|
+
Description?: string | undefined;
|
|
529
606
|
}
|
|
530
607
|
export interface GenerateOrganizationsAccessReportRequest {
|
|
531
608
|
EntityPath: string | undefined;
|
|
532
|
-
OrganizationsPolicyId?: string;
|
|
609
|
+
OrganizationsPolicyId?: string | undefined;
|
|
533
610
|
}
|
|
534
611
|
export interface GenerateOrganizationsAccessReportResponse {
|
|
535
|
-
JobId?: string;
|
|
612
|
+
JobId?: string | undefined;
|
|
536
613
|
}
|
|
537
614
|
export declare class ReportGenerationLimitExceededException extends __BaseException {
|
|
538
615
|
readonly name: "ReportGenerationLimitExceededException";
|
|
@@ -546,17 +623,17 @@ export declare class ReportGenerationLimitExceededException extends __BaseExcept
|
|
|
546
623
|
}
|
|
547
624
|
export interface GenerateServiceLastAccessedDetailsRequest {
|
|
548
625
|
Arn: string | undefined;
|
|
549
|
-
Granularity?: AccessAdvisorUsageGranularityType;
|
|
626
|
+
Granularity?: AccessAdvisorUsageGranularityType | undefined;
|
|
550
627
|
}
|
|
551
628
|
export interface GenerateServiceLastAccessedDetailsResponse {
|
|
552
|
-
JobId?: string;
|
|
629
|
+
JobId?: string | undefined;
|
|
553
630
|
}
|
|
554
631
|
export interface GetAccessKeyLastUsedRequest {
|
|
555
632
|
AccessKeyId: string | undefined;
|
|
556
633
|
}
|
|
557
634
|
export interface GetAccessKeyLastUsedResponse {
|
|
558
|
-
UserName?: string;
|
|
559
|
-
AccessKeyLastUsed?: AccessKeyLastUsed;
|
|
635
|
+
UserName?: string | undefined;
|
|
636
|
+
AccessKeyLastUsed?: AccessKeyLastUsed | undefined;
|
|
560
637
|
}
|
|
561
638
|
export declare const EntityType: {
|
|
562
639
|
readonly AWSManagedPolicy: "AWSManagedPolicy";
|
|
@@ -567,82 +644,82 @@ export declare const EntityType: {
|
|
|
567
644
|
};
|
|
568
645
|
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
569
646
|
export interface GetAccountAuthorizationDetailsRequest {
|
|
570
|
-
Filter?: EntityType[];
|
|
571
|
-
MaxItems?: number;
|
|
572
|
-
Marker?: string;
|
|
647
|
+
Filter?: EntityType[] | undefined;
|
|
648
|
+
MaxItems?: number | undefined;
|
|
649
|
+
Marker?: string | undefined;
|
|
573
650
|
}
|
|
574
651
|
export interface PolicyDetail {
|
|
575
|
-
PolicyName?: string;
|
|
576
|
-
PolicyDocument?: string;
|
|
652
|
+
PolicyName?: string | undefined;
|
|
653
|
+
PolicyDocument?: string | undefined;
|
|
577
654
|
}
|
|
578
655
|
export interface GroupDetail {
|
|
579
|
-
Path?: string;
|
|
580
|
-
GroupName?: string;
|
|
581
|
-
GroupId?: string;
|
|
582
|
-
Arn?: string;
|
|
583
|
-
CreateDate?: Date;
|
|
584
|
-
GroupPolicyList?: PolicyDetail[];
|
|
585
|
-
AttachedManagedPolicies?: AttachedPolicy[];
|
|
656
|
+
Path?: string | undefined;
|
|
657
|
+
GroupName?: string | undefined;
|
|
658
|
+
GroupId?: string | undefined;
|
|
659
|
+
Arn?: string | undefined;
|
|
660
|
+
CreateDate?: Date | undefined;
|
|
661
|
+
GroupPolicyList?: PolicyDetail[] | undefined;
|
|
662
|
+
AttachedManagedPolicies?: AttachedPolicy[] | undefined;
|
|
586
663
|
}
|
|
587
664
|
export interface ManagedPolicyDetail {
|
|
588
|
-
PolicyName?: string;
|
|
589
|
-
PolicyId?: string;
|
|
590
|
-
Arn?: string;
|
|
591
|
-
Path?: string;
|
|
592
|
-
DefaultVersionId?: string;
|
|
593
|
-
AttachmentCount?: number;
|
|
594
|
-
PermissionsBoundaryUsageCount?: number;
|
|
595
|
-
IsAttachable?: boolean;
|
|
596
|
-
Description?: string;
|
|
597
|
-
CreateDate?: Date;
|
|
598
|
-
UpdateDate?: Date;
|
|
599
|
-
PolicyVersionList?: PolicyVersion[];
|
|
665
|
+
PolicyName?: string | undefined;
|
|
666
|
+
PolicyId?: string | undefined;
|
|
667
|
+
Arn?: string | undefined;
|
|
668
|
+
Path?: string | undefined;
|
|
669
|
+
DefaultVersionId?: string | undefined;
|
|
670
|
+
AttachmentCount?: number | undefined;
|
|
671
|
+
PermissionsBoundaryUsageCount?: number | undefined;
|
|
672
|
+
IsAttachable?: boolean | undefined;
|
|
673
|
+
Description?: string | undefined;
|
|
674
|
+
CreateDate?: Date | undefined;
|
|
675
|
+
UpdateDate?: Date | undefined;
|
|
676
|
+
PolicyVersionList?: PolicyVersion[] | undefined;
|
|
600
677
|
}
|
|
601
678
|
export interface RoleDetail {
|
|
602
|
-
Path?: string;
|
|
603
|
-
RoleName?: string;
|
|
604
|
-
RoleId?: string;
|
|
605
|
-
Arn?: string;
|
|
606
|
-
CreateDate?: Date;
|
|
607
|
-
AssumeRolePolicyDocument?: string;
|
|
608
|
-
InstanceProfileList?: InstanceProfile[];
|
|
609
|
-
RolePolicyList?: PolicyDetail[];
|
|
610
|
-
AttachedManagedPolicies?: AttachedPolicy[];
|
|
611
|
-
PermissionsBoundary?: AttachedPermissionsBoundary;
|
|
612
|
-
Tags?: Tag[];
|
|
613
|
-
RoleLastUsed?: RoleLastUsed;
|
|
679
|
+
Path?: string | undefined;
|
|
680
|
+
RoleName?: string | undefined;
|
|
681
|
+
RoleId?: string | undefined;
|
|
682
|
+
Arn?: string | undefined;
|
|
683
|
+
CreateDate?: Date | undefined;
|
|
684
|
+
AssumeRolePolicyDocument?: string | undefined;
|
|
685
|
+
InstanceProfileList?: InstanceProfile[] | undefined;
|
|
686
|
+
RolePolicyList?: PolicyDetail[] | undefined;
|
|
687
|
+
AttachedManagedPolicies?: AttachedPolicy[] | undefined;
|
|
688
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
689
|
+
Tags?: Tag[] | undefined;
|
|
690
|
+
RoleLastUsed?: RoleLastUsed | undefined;
|
|
614
691
|
}
|
|
615
692
|
export interface UserDetail {
|
|
616
|
-
Path?: string;
|
|
617
|
-
UserName?: string;
|
|
618
|
-
UserId?: string;
|
|
619
|
-
Arn?: string;
|
|
620
|
-
CreateDate?: Date;
|
|
621
|
-
UserPolicyList?: PolicyDetail[];
|
|
622
|
-
GroupList?: string[];
|
|
623
|
-
AttachedManagedPolicies?: AttachedPolicy[];
|
|
624
|
-
PermissionsBoundary?: AttachedPermissionsBoundary;
|
|
625
|
-
Tags?: Tag[];
|
|
693
|
+
Path?: string | undefined;
|
|
694
|
+
UserName?: string | undefined;
|
|
695
|
+
UserId?: string | undefined;
|
|
696
|
+
Arn?: string | undefined;
|
|
697
|
+
CreateDate?: Date | undefined;
|
|
698
|
+
UserPolicyList?: PolicyDetail[] | undefined;
|
|
699
|
+
GroupList?: string[] | undefined;
|
|
700
|
+
AttachedManagedPolicies?: AttachedPolicy[] | undefined;
|
|
701
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
702
|
+
Tags?: Tag[] | undefined;
|
|
626
703
|
}
|
|
627
704
|
export interface GetAccountAuthorizationDetailsResponse {
|
|
628
|
-
UserDetailList?: UserDetail[];
|
|
629
|
-
GroupDetailList?: GroupDetail[];
|
|
630
|
-
RoleDetailList?: RoleDetail[];
|
|
631
|
-
Policies?: ManagedPolicyDetail[];
|
|
632
|
-
IsTruncated?: boolean;
|
|
633
|
-
Marker?: string;
|
|
705
|
+
UserDetailList?: UserDetail[] | undefined;
|
|
706
|
+
GroupDetailList?: GroupDetail[] | undefined;
|
|
707
|
+
RoleDetailList?: RoleDetail[] | undefined;
|
|
708
|
+
Policies?: ManagedPolicyDetail[] | undefined;
|
|
709
|
+
IsTruncated?: boolean | undefined;
|
|
710
|
+
Marker?: string | undefined;
|
|
634
711
|
}
|
|
635
712
|
export interface PasswordPolicy {
|
|
636
|
-
MinimumPasswordLength?: number;
|
|
637
|
-
RequireSymbols?: boolean;
|
|
638
|
-
RequireNumbers?: boolean;
|
|
639
|
-
RequireUppercaseCharacters?: boolean;
|
|
640
|
-
RequireLowercaseCharacters?: boolean;
|
|
641
|
-
AllowUsersToChangePassword?: boolean;
|
|
642
|
-
ExpirePasswords?: boolean;
|
|
643
|
-
MaxPasswordAge?: number;
|
|
644
|
-
PasswordReusePrevention?: number;
|
|
645
|
-
HardExpiry?: boolean;
|
|
713
|
+
MinimumPasswordLength?: number | undefined;
|
|
714
|
+
RequireSymbols?: boolean | undefined;
|
|
715
|
+
RequireNumbers?: boolean | undefined;
|
|
716
|
+
RequireUppercaseCharacters?: boolean | undefined;
|
|
717
|
+
RequireLowercaseCharacters?: boolean | undefined;
|
|
718
|
+
AllowUsersToChangePassword?: boolean | undefined;
|
|
719
|
+
ExpirePasswords?: boolean | undefined;
|
|
720
|
+
MaxPasswordAge?: number | undefined;
|
|
721
|
+
PasswordReusePrevention?: number | undefined;
|
|
722
|
+
HardExpiry?: boolean | undefined;
|
|
646
723
|
}
|
|
647
724
|
export interface GetAccountPasswordPolicyResponse {
|
|
648
725
|
PasswordPolicy: PasswordPolicy | undefined;
|
|
@@ -651,6 +728,7 @@ export declare const SummaryKeyType: {
|
|
|
651
728
|
readonly AccessKeysPerUserQuota: "AccessKeysPerUserQuota";
|
|
652
729
|
readonly AccountAccessKeysPresent: "AccountAccessKeysPresent";
|
|
653
730
|
readonly AccountMFAEnabled: "AccountMFAEnabled";
|
|
731
|
+
readonly AccountPasswordPresent: "AccountPasswordPresent";
|
|
654
732
|
readonly AccountSigningCertificatesPresent: "AccountSigningCertificatesPresent";
|
|
655
733
|
readonly AttachedPoliciesPerGroupQuota: "AttachedPoliciesPerGroupQuota";
|
|
656
734
|
readonly AttachedPoliciesPerRoleQuota: "AttachedPoliciesPerRoleQuota";
|
|
@@ -678,17 +756,17 @@ export declare const SummaryKeyType: {
|
|
|
678
756
|
export type SummaryKeyType =
|
|
679
757
|
(typeof SummaryKeyType)[keyof typeof SummaryKeyType];
|
|
680
758
|
export interface GetAccountSummaryResponse {
|
|
681
|
-
SummaryMap?: Partial<Record<SummaryKeyType, number
|
|
759
|
+
SummaryMap?: Partial<Record<SummaryKeyType, number>> | undefined;
|
|
682
760
|
}
|
|
683
761
|
export interface GetContextKeysForCustomPolicyRequest {
|
|
684
762
|
PolicyInputList: string[] | undefined;
|
|
685
763
|
}
|
|
686
764
|
export interface GetContextKeysForPolicyResponse {
|
|
687
|
-
ContextKeyNames?: string[];
|
|
765
|
+
ContextKeyNames?: string[] | undefined;
|
|
688
766
|
}
|
|
689
767
|
export interface GetContextKeysForPrincipalPolicyRequest {
|
|
690
768
|
PolicySourceArn: string | undefined;
|
|
691
|
-
PolicyInputList?: string[];
|
|
769
|
+
PolicyInputList?: string[] | undefined;
|
|
692
770
|
}
|
|
693
771
|
export declare class CredentialReportExpiredException extends __BaseException {
|
|
694
772
|
readonly name: "CredentialReportExpiredException";
|
|
@@ -726,20 +804,20 @@ export declare const ReportFormatType: {
|
|
|
726
804
|
export type ReportFormatType =
|
|
727
805
|
(typeof ReportFormatType)[keyof typeof ReportFormatType];
|
|
728
806
|
export interface GetCredentialReportResponse {
|
|
729
|
-
Content?: Uint8Array;
|
|
730
|
-
ReportFormat?: ReportFormatType;
|
|
731
|
-
GeneratedTime?: Date;
|
|
807
|
+
Content?: Uint8Array | undefined;
|
|
808
|
+
ReportFormat?: ReportFormatType | undefined;
|
|
809
|
+
GeneratedTime?: Date | undefined;
|
|
732
810
|
}
|
|
733
811
|
export interface GetGroupRequest {
|
|
734
812
|
GroupName: string | undefined;
|
|
735
|
-
Marker?: string;
|
|
736
|
-
MaxItems?: number;
|
|
813
|
+
Marker?: string | undefined;
|
|
814
|
+
MaxItems?: number | undefined;
|
|
737
815
|
}
|
|
738
816
|
export interface GetGroupResponse {
|
|
739
817
|
Group: Group | undefined;
|
|
740
818
|
Users: User[] | undefined;
|
|
741
|
-
IsTruncated?: boolean;
|
|
742
|
-
Marker?: string;
|
|
819
|
+
IsTruncated?: boolean | undefined;
|
|
820
|
+
Marker?: string | undefined;
|
|
743
821
|
}
|
|
744
822
|
export interface GetGroupPolicyRequest {
|
|
745
823
|
GroupName: string | undefined;
|
|
@@ -757,30 +835,30 @@ export interface GetInstanceProfileResponse {
|
|
|
757
835
|
InstanceProfile: InstanceProfile | undefined;
|
|
758
836
|
}
|
|
759
837
|
export interface GetLoginProfileRequest {
|
|
760
|
-
UserName
|
|
838
|
+
UserName?: string | undefined;
|
|
761
839
|
}
|
|
762
840
|
export interface GetLoginProfileResponse {
|
|
763
841
|
LoginProfile: LoginProfile | undefined;
|
|
764
842
|
}
|
|
765
843
|
export interface GetMFADeviceRequest {
|
|
766
844
|
SerialNumber: string | undefined;
|
|
767
|
-
UserName?: string;
|
|
845
|
+
UserName?: string | undefined;
|
|
768
846
|
}
|
|
769
847
|
export interface GetMFADeviceResponse {
|
|
770
|
-
UserName?: string;
|
|
848
|
+
UserName?: string | undefined;
|
|
771
849
|
SerialNumber: string | undefined;
|
|
772
|
-
EnableDate?: Date;
|
|
773
|
-
Certifications?: Record<string, string
|
|
850
|
+
EnableDate?: Date | undefined;
|
|
851
|
+
Certifications?: Record<string, string> | undefined;
|
|
774
852
|
}
|
|
775
853
|
export interface GetOpenIDConnectProviderRequest {
|
|
776
854
|
OpenIDConnectProviderArn: string | undefined;
|
|
777
855
|
}
|
|
778
856
|
export interface GetOpenIDConnectProviderResponse {
|
|
779
|
-
Url?: string;
|
|
780
|
-
ClientIDList?: string[];
|
|
781
|
-
ThumbprintList?: string[];
|
|
782
|
-
CreateDate?: Date;
|
|
783
|
-
Tags?: Tag[];
|
|
857
|
+
Url?: string | undefined;
|
|
858
|
+
ClientIDList?: string[] | undefined;
|
|
859
|
+
ThumbprintList?: string[] | undefined;
|
|
860
|
+
CreateDate?: Date | undefined;
|
|
861
|
+
Tags?: Tag[] | undefined;
|
|
784
862
|
}
|
|
785
863
|
export declare const SortKeyType: {
|
|
786
864
|
readonly LAST_AUTHENTICATED_TIME_ASCENDING: "LAST_AUTHENTICATED_TIME_ASCENDING";
|
|
@@ -791,9 +869,9 @@ export declare const SortKeyType: {
|
|
|
791
869
|
export type SortKeyType = (typeof SortKeyType)[keyof typeof SortKeyType];
|
|
792
870
|
export interface GetOrganizationsAccessReportRequest {
|
|
793
871
|
JobId: string | undefined;
|
|
794
|
-
MaxItems?: number;
|
|
795
|
-
Marker?: string;
|
|
796
|
-
SortKey?: SortKeyType;
|
|
872
|
+
MaxItems?: number | undefined;
|
|
873
|
+
Marker?: string | undefined;
|
|
874
|
+
SortKey?: SortKeyType | undefined;
|
|
797
875
|
}
|
|
798
876
|
export interface ErrorDetails {
|
|
799
877
|
Message: string | undefined;
|
|
@@ -808,26 +886,26 @@ export type JobStatusType = (typeof JobStatusType)[keyof typeof JobStatusType];
|
|
|
808
886
|
export interface GetOrganizationsAccessReportResponse {
|
|
809
887
|
JobStatus: JobStatusType | undefined;
|
|
810
888
|
JobCreationDate: Date | undefined;
|
|
811
|
-
JobCompletionDate?: Date;
|
|
812
|
-
NumberOfServicesAccessible?: number;
|
|
813
|
-
NumberOfServicesNotAccessed?: number;
|
|
814
|
-
AccessDetails?: AccessDetail[];
|
|
815
|
-
IsTruncated?: boolean;
|
|
816
|
-
Marker?: string;
|
|
817
|
-
ErrorDetails?: ErrorDetails;
|
|
889
|
+
JobCompletionDate?: Date | undefined;
|
|
890
|
+
NumberOfServicesAccessible?: number | undefined;
|
|
891
|
+
NumberOfServicesNotAccessed?: number | undefined;
|
|
892
|
+
AccessDetails?: AccessDetail[] | undefined;
|
|
893
|
+
IsTruncated?: boolean | undefined;
|
|
894
|
+
Marker?: string | undefined;
|
|
895
|
+
ErrorDetails?: ErrorDetails | undefined;
|
|
818
896
|
}
|
|
819
897
|
export interface GetPolicyRequest {
|
|
820
898
|
PolicyArn: string | undefined;
|
|
821
899
|
}
|
|
822
900
|
export interface GetPolicyResponse {
|
|
823
|
-
Policy?: Policy;
|
|
901
|
+
Policy?: Policy | undefined;
|
|
824
902
|
}
|
|
825
903
|
export interface GetPolicyVersionRequest {
|
|
826
904
|
PolicyArn: string | undefined;
|
|
827
905
|
VersionId: string | undefined;
|
|
828
906
|
}
|
|
829
907
|
export interface GetPolicyVersionResponse {
|
|
830
|
-
PolicyVersion?: PolicyVersion;
|
|
908
|
+
PolicyVersion?: PolicyVersion | undefined;
|
|
831
909
|
}
|
|
832
910
|
export interface GetRoleRequest {
|
|
833
911
|
RoleName: string | undefined;
|
|
@@ -848,10 +926,10 @@ export interface GetSAMLProviderRequest {
|
|
|
848
926
|
SAMLProviderArn: string | undefined;
|
|
849
927
|
}
|
|
850
928
|
export interface GetSAMLProviderResponse {
|
|
851
|
-
SAMLMetadataDocument?: string;
|
|
852
|
-
CreateDate?: Date;
|
|
853
|
-
ValidUntil?: Date;
|
|
854
|
-
Tags?: Tag[];
|
|
929
|
+
SAMLMetadataDocument?: string | undefined;
|
|
930
|
+
CreateDate?: Date | undefined;
|
|
931
|
+
ValidUntil?: Date | undefined;
|
|
932
|
+
Tags?: Tag[] | undefined;
|
|
855
933
|
}
|
|
856
934
|
export interface GetServerCertificateRequest {
|
|
857
935
|
ServerCertificateName: string | undefined;
|
|
@@ -861,53 +939,53 @@ export interface ServerCertificateMetadata {
|
|
|
861
939
|
ServerCertificateName: string | undefined;
|
|
862
940
|
ServerCertificateId: string | undefined;
|
|
863
941
|
Arn: string | undefined;
|
|
864
|
-
UploadDate?: Date;
|
|
865
|
-
Expiration?: Date;
|
|
942
|
+
UploadDate?: Date | undefined;
|
|
943
|
+
Expiration?: Date | undefined;
|
|
866
944
|
}
|
|
867
945
|
export interface ServerCertificate {
|
|
868
946
|
ServerCertificateMetadata: ServerCertificateMetadata | undefined;
|
|
869
947
|
CertificateBody: string | undefined;
|
|
870
|
-
CertificateChain?: string;
|
|
871
|
-
Tags?: Tag[];
|
|
948
|
+
CertificateChain?: string | undefined;
|
|
949
|
+
Tags?: Tag[] | undefined;
|
|
872
950
|
}
|
|
873
951
|
export interface GetServerCertificateResponse {
|
|
874
952
|
ServerCertificate: ServerCertificate | undefined;
|
|
875
953
|
}
|
|
876
954
|
export interface GetServiceLastAccessedDetailsRequest {
|
|
877
955
|
JobId: string | undefined;
|
|
878
|
-
MaxItems?: number;
|
|
879
|
-
Marker?: string;
|
|
956
|
+
MaxItems?: number | undefined;
|
|
957
|
+
Marker?: string | undefined;
|
|
880
958
|
}
|
|
881
959
|
export interface TrackedActionLastAccessed {
|
|
882
|
-
ActionName?: string;
|
|
883
|
-
LastAccessedEntity?: string;
|
|
884
|
-
LastAccessedTime?: Date;
|
|
885
|
-
LastAccessedRegion?: string;
|
|
960
|
+
ActionName?: string | undefined;
|
|
961
|
+
LastAccessedEntity?: string | undefined;
|
|
962
|
+
LastAccessedTime?: Date | undefined;
|
|
963
|
+
LastAccessedRegion?: string | undefined;
|
|
886
964
|
}
|
|
887
965
|
export interface ServiceLastAccessed {
|
|
888
966
|
ServiceName: string | undefined;
|
|
889
|
-
LastAuthenticated?: Date;
|
|
967
|
+
LastAuthenticated?: Date | undefined;
|
|
890
968
|
ServiceNamespace: string | undefined;
|
|
891
|
-
LastAuthenticatedEntity?: string;
|
|
892
|
-
LastAuthenticatedRegion?: string;
|
|
893
|
-
TotalAuthenticatedEntities?: number;
|
|
894
|
-
TrackedActionsLastAccessed?: TrackedActionLastAccessed[];
|
|
969
|
+
LastAuthenticatedEntity?: string | undefined;
|
|
970
|
+
LastAuthenticatedRegion?: string | undefined;
|
|
971
|
+
TotalAuthenticatedEntities?: number | undefined;
|
|
972
|
+
TrackedActionsLastAccessed?: TrackedActionLastAccessed[] | undefined;
|
|
895
973
|
}
|
|
896
974
|
export interface GetServiceLastAccessedDetailsResponse {
|
|
897
975
|
JobStatus: JobStatusType | undefined;
|
|
898
|
-
JobType?: AccessAdvisorUsageGranularityType;
|
|
976
|
+
JobType?: AccessAdvisorUsageGranularityType | undefined;
|
|
899
977
|
JobCreationDate: Date | undefined;
|
|
900
978
|
ServicesLastAccessed: ServiceLastAccessed[] | undefined;
|
|
901
979
|
JobCompletionDate: Date | undefined;
|
|
902
|
-
IsTruncated?: boolean;
|
|
903
|
-
Marker?: string;
|
|
904
|
-
Error?: ErrorDetails;
|
|
980
|
+
IsTruncated?: boolean | undefined;
|
|
981
|
+
Marker?: string | undefined;
|
|
982
|
+
Error?: ErrorDetails | undefined;
|
|
905
983
|
}
|
|
906
984
|
export interface GetServiceLastAccessedDetailsWithEntitiesRequest {
|
|
907
985
|
JobId: string | undefined;
|
|
908
986
|
ServiceNamespace: string | undefined;
|
|
909
|
-
MaxItems?: number;
|
|
910
|
-
Marker?: string;
|
|
987
|
+
MaxItems?: number | undefined;
|
|
988
|
+
Marker?: string | undefined;
|
|
911
989
|
}
|
|
912
990
|
export declare const PolicyOwnerEntityType: {
|
|
913
991
|
readonly GROUP: "GROUP";
|
|
@@ -921,31 +999,31 @@ export interface EntityInfo {
|
|
|
921
999
|
Name: string | undefined;
|
|
922
1000
|
Type: PolicyOwnerEntityType | undefined;
|
|
923
1001
|
Id: string | undefined;
|
|
924
|
-
Path?: string;
|
|
1002
|
+
Path?: string | undefined;
|
|
925
1003
|
}
|
|
926
1004
|
export interface EntityDetails {
|
|
927
1005
|
EntityInfo: EntityInfo | undefined;
|
|
928
|
-
LastAuthenticated?: Date;
|
|
1006
|
+
LastAuthenticated?: Date | undefined;
|
|
929
1007
|
}
|
|
930
1008
|
export interface GetServiceLastAccessedDetailsWithEntitiesResponse {
|
|
931
1009
|
JobStatus: JobStatusType | undefined;
|
|
932
1010
|
JobCreationDate: Date | undefined;
|
|
933
1011
|
JobCompletionDate: Date | undefined;
|
|
934
1012
|
EntityDetailsList: EntityDetails[] | undefined;
|
|
935
|
-
IsTruncated?: boolean;
|
|
936
|
-
Marker?: string;
|
|
937
|
-
Error?: ErrorDetails;
|
|
1013
|
+
IsTruncated?: boolean | undefined;
|
|
1014
|
+
Marker?: string | undefined;
|
|
1015
|
+
Error?: ErrorDetails | undefined;
|
|
938
1016
|
}
|
|
939
1017
|
export interface GetServiceLinkedRoleDeletionStatusRequest {
|
|
940
1018
|
DeletionTaskId: string | undefined;
|
|
941
1019
|
}
|
|
942
1020
|
export interface RoleUsageType {
|
|
943
|
-
Region?: string;
|
|
944
|
-
Resources?: string[];
|
|
1021
|
+
Region?: string | undefined;
|
|
1022
|
+
Resources?: string[] | undefined;
|
|
945
1023
|
}
|
|
946
1024
|
export interface DeletionTaskFailureReasonType {
|
|
947
|
-
Reason?: string;
|
|
948
|
-
RoleUsageList?: RoleUsageType[];
|
|
1025
|
+
Reason?: string | undefined;
|
|
1026
|
+
RoleUsageList?: RoleUsageType[] | undefined;
|
|
949
1027
|
}
|
|
950
1028
|
export declare const DeletionTaskStatusType: {
|
|
951
1029
|
readonly FAILED: "FAILED";
|
|
@@ -957,7 +1035,7 @@ export type DeletionTaskStatusType =
|
|
|
957
1035
|
(typeof DeletionTaskStatusType)[keyof typeof DeletionTaskStatusType];
|
|
958
1036
|
export interface GetServiceLinkedRoleDeletionStatusResponse {
|
|
959
1037
|
Status: DeletionTaskStatusType | undefined;
|
|
960
|
-
Reason?: DeletionTaskFailureReasonType;
|
|
1038
|
+
Reason?: DeletionTaskFailureReasonType | undefined;
|
|
961
1039
|
}
|
|
962
1040
|
export declare const EncodingType: {
|
|
963
1041
|
readonly PEM: "PEM";
|
|
@@ -975,10 +1053,10 @@ export interface SSHPublicKey {
|
|
|
975
1053
|
Fingerprint: string | undefined;
|
|
976
1054
|
SSHPublicKeyBody: string | undefined;
|
|
977
1055
|
Status: StatusType | undefined;
|
|
978
|
-
UploadDate?: Date;
|
|
1056
|
+
UploadDate?: Date | undefined;
|
|
979
1057
|
}
|
|
980
1058
|
export interface GetSSHPublicKeyResponse {
|
|
981
|
-
SSHPublicKey?: SSHPublicKey;
|
|
1059
|
+
SSHPublicKey?: SSHPublicKey | undefined;
|
|
982
1060
|
}
|
|
983
1061
|
export declare class UnrecognizedPublicKeyEncodingException extends __BaseException {
|
|
984
1062
|
readonly name: "UnrecognizedPublicKeyEncodingException";
|
|
@@ -991,7 +1069,7 @@ export declare class UnrecognizedPublicKeyEncodingException extends __BaseExcept
|
|
|
991
1069
|
);
|
|
992
1070
|
}
|
|
993
1071
|
export interface GetUserRequest {
|
|
994
|
-
UserName?: string;
|
|
1072
|
+
UserName?: string | undefined;
|
|
995
1073
|
}
|
|
996
1074
|
export interface GetUserResponse {
|
|
997
1075
|
User: User | undefined;
|
|
@@ -1006,56 +1084,56 @@ export interface GetUserPolicyResponse {
|
|
|
1006
1084
|
PolicyDocument: string | undefined;
|
|
1007
1085
|
}
|
|
1008
1086
|
export interface ListAccessKeysRequest {
|
|
1009
|
-
UserName?: string;
|
|
1010
|
-
Marker?: string;
|
|
1011
|
-
MaxItems?: number;
|
|
1087
|
+
UserName?: string | undefined;
|
|
1088
|
+
Marker?: string | undefined;
|
|
1089
|
+
MaxItems?: number | undefined;
|
|
1012
1090
|
}
|
|
1013
1091
|
export interface ListAccessKeysResponse {
|
|
1014
1092
|
AccessKeyMetadata: AccessKeyMetadata[] | undefined;
|
|
1015
|
-
IsTruncated?: boolean;
|
|
1016
|
-
Marker?: string;
|
|
1093
|
+
IsTruncated?: boolean | undefined;
|
|
1094
|
+
Marker?: string | undefined;
|
|
1017
1095
|
}
|
|
1018
1096
|
export interface ListAccountAliasesRequest {
|
|
1019
|
-
Marker?: string;
|
|
1020
|
-
MaxItems?: number;
|
|
1097
|
+
Marker?: string | undefined;
|
|
1098
|
+
MaxItems?: number | undefined;
|
|
1021
1099
|
}
|
|
1022
1100
|
export interface ListAccountAliasesResponse {
|
|
1023
1101
|
AccountAliases: string[] | undefined;
|
|
1024
|
-
IsTruncated?: boolean;
|
|
1025
|
-
Marker?: string;
|
|
1102
|
+
IsTruncated?: boolean | undefined;
|
|
1103
|
+
Marker?: string | undefined;
|
|
1026
1104
|
}
|
|
1027
1105
|
export interface ListAttachedGroupPoliciesRequest {
|
|
1028
1106
|
GroupName: string | undefined;
|
|
1029
|
-
PathPrefix?: string;
|
|
1030
|
-
Marker?: string;
|
|
1031
|
-
MaxItems?: number;
|
|
1107
|
+
PathPrefix?: string | undefined;
|
|
1108
|
+
Marker?: string | undefined;
|
|
1109
|
+
MaxItems?: number | undefined;
|
|
1032
1110
|
}
|
|
1033
1111
|
export interface ListAttachedGroupPoliciesResponse {
|
|
1034
|
-
AttachedPolicies?: AttachedPolicy[];
|
|
1035
|
-
IsTruncated?: boolean;
|
|
1036
|
-
Marker?: string;
|
|
1112
|
+
AttachedPolicies?: AttachedPolicy[] | undefined;
|
|
1113
|
+
IsTruncated?: boolean | undefined;
|
|
1114
|
+
Marker?: string | undefined;
|
|
1037
1115
|
}
|
|
1038
1116
|
export interface ListAttachedRolePoliciesRequest {
|
|
1039
1117
|
RoleName: string | undefined;
|
|
1040
|
-
PathPrefix?: string;
|
|
1041
|
-
Marker?: string;
|
|
1042
|
-
MaxItems?: number;
|
|
1118
|
+
PathPrefix?: string | undefined;
|
|
1119
|
+
Marker?: string | undefined;
|
|
1120
|
+
MaxItems?: number | undefined;
|
|
1043
1121
|
}
|
|
1044
1122
|
export interface ListAttachedRolePoliciesResponse {
|
|
1045
|
-
AttachedPolicies?: AttachedPolicy[];
|
|
1046
|
-
IsTruncated?: boolean;
|
|
1047
|
-
Marker?: string;
|
|
1123
|
+
AttachedPolicies?: AttachedPolicy[] | undefined;
|
|
1124
|
+
IsTruncated?: boolean | undefined;
|
|
1125
|
+
Marker?: string | undefined;
|
|
1048
1126
|
}
|
|
1049
1127
|
export interface ListAttachedUserPoliciesRequest {
|
|
1050
1128
|
UserName: string | undefined;
|
|
1051
|
-
PathPrefix?: string;
|
|
1052
|
-
Marker?: string;
|
|
1053
|
-
MaxItems?: number;
|
|
1129
|
+
PathPrefix?: string | undefined;
|
|
1130
|
+
Marker?: string | undefined;
|
|
1131
|
+
MaxItems?: number | undefined;
|
|
1054
1132
|
}
|
|
1055
1133
|
export interface ListAttachedUserPoliciesResponse {
|
|
1056
|
-
AttachedPolicies?: AttachedPolicy[];
|
|
1057
|
-
IsTruncated?: boolean;
|
|
1058
|
-
Marker?: string;
|
|
1134
|
+
AttachedPolicies?: AttachedPolicy[] | undefined;
|
|
1135
|
+
IsTruncated?: boolean | undefined;
|
|
1136
|
+
Marker?: string | undefined;
|
|
1059
1137
|
}
|
|
1060
1138
|
export declare const PolicyUsageType: {
|
|
1061
1139
|
readonly PermissionsBoundary: "PermissionsBoundary";
|
|
@@ -1065,95 +1143,95 @@ export type PolicyUsageType =
|
|
|
1065
1143
|
(typeof PolicyUsageType)[keyof typeof PolicyUsageType];
|
|
1066
1144
|
export interface ListEntitiesForPolicyRequest {
|
|
1067
1145
|
PolicyArn: string | undefined;
|
|
1068
|
-
EntityFilter?: EntityType;
|
|
1069
|
-
PathPrefix?: string;
|
|
1070
|
-
PolicyUsageFilter?: PolicyUsageType;
|
|
1071
|
-
Marker?: string;
|
|
1072
|
-
MaxItems?: number;
|
|
1146
|
+
EntityFilter?: EntityType | undefined;
|
|
1147
|
+
PathPrefix?: string | undefined;
|
|
1148
|
+
PolicyUsageFilter?: PolicyUsageType | undefined;
|
|
1149
|
+
Marker?: string | undefined;
|
|
1150
|
+
MaxItems?: number | undefined;
|
|
1073
1151
|
}
|
|
1074
1152
|
export interface PolicyGroup {
|
|
1075
|
-
GroupName?: string;
|
|
1076
|
-
GroupId?: string;
|
|
1153
|
+
GroupName?: string | undefined;
|
|
1154
|
+
GroupId?: string | undefined;
|
|
1077
1155
|
}
|
|
1078
1156
|
export interface PolicyRole {
|
|
1079
|
-
RoleName?: string;
|
|
1080
|
-
RoleId?: string;
|
|
1157
|
+
RoleName?: string | undefined;
|
|
1158
|
+
RoleId?: string | undefined;
|
|
1081
1159
|
}
|
|
1082
1160
|
export interface PolicyUser {
|
|
1083
|
-
UserName?: string;
|
|
1084
|
-
UserId?: string;
|
|
1161
|
+
UserName?: string | undefined;
|
|
1162
|
+
UserId?: string | undefined;
|
|
1085
1163
|
}
|
|
1086
1164
|
export interface ListEntitiesForPolicyResponse {
|
|
1087
|
-
PolicyGroups?: PolicyGroup[];
|
|
1088
|
-
PolicyUsers?: PolicyUser[];
|
|
1089
|
-
PolicyRoles?: PolicyRole[];
|
|
1090
|
-
IsTruncated?: boolean;
|
|
1091
|
-
Marker?: string;
|
|
1165
|
+
PolicyGroups?: PolicyGroup[] | undefined;
|
|
1166
|
+
PolicyUsers?: PolicyUser[] | undefined;
|
|
1167
|
+
PolicyRoles?: PolicyRole[] | undefined;
|
|
1168
|
+
IsTruncated?: boolean | undefined;
|
|
1169
|
+
Marker?: string | undefined;
|
|
1092
1170
|
}
|
|
1093
1171
|
export interface ListGroupPoliciesRequest {
|
|
1094
1172
|
GroupName: string | undefined;
|
|
1095
|
-
Marker?: string;
|
|
1096
|
-
MaxItems?: number;
|
|
1173
|
+
Marker?: string | undefined;
|
|
1174
|
+
MaxItems?: number | undefined;
|
|
1097
1175
|
}
|
|
1098
1176
|
export interface ListGroupPoliciesResponse {
|
|
1099
1177
|
PolicyNames: string[] | undefined;
|
|
1100
|
-
IsTruncated?: boolean;
|
|
1101
|
-
Marker?: string;
|
|
1178
|
+
IsTruncated?: boolean | undefined;
|
|
1179
|
+
Marker?: string | undefined;
|
|
1102
1180
|
}
|
|
1103
1181
|
export interface ListGroupsRequest {
|
|
1104
|
-
PathPrefix?: string;
|
|
1105
|
-
Marker?: string;
|
|
1106
|
-
MaxItems?: number;
|
|
1182
|
+
PathPrefix?: string | undefined;
|
|
1183
|
+
Marker?: string | undefined;
|
|
1184
|
+
MaxItems?: number | undefined;
|
|
1107
1185
|
}
|
|
1108
1186
|
export interface ListGroupsResponse {
|
|
1109
1187
|
Groups: Group[] | undefined;
|
|
1110
|
-
IsTruncated?: boolean;
|
|
1111
|
-
Marker?: string;
|
|
1188
|
+
IsTruncated?: boolean | undefined;
|
|
1189
|
+
Marker?: string | undefined;
|
|
1112
1190
|
}
|
|
1113
1191
|
export interface ListGroupsForUserRequest {
|
|
1114
1192
|
UserName: string | undefined;
|
|
1115
|
-
Marker?: string;
|
|
1116
|
-
MaxItems?: number;
|
|
1193
|
+
Marker?: string | undefined;
|
|
1194
|
+
MaxItems?: number | undefined;
|
|
1117
1195
|
}
|
|
1118
1196
|
export interface ListGroupsForUserResponse {
|
|
1119
1197
|
Groups: Group[] | undefined;
|
|
1120
|
-
IsTruncated?: boolean;
|
|
1121
|
-
Marker?: string;
|
|
1198
|
+
IsTruncated?: boolean | undefined;
|
|
1199
|
+
Marker?: string | undefined;
|
|
1122
1200
|
}
|
|
1123
1201
|
export interface ListInstanceProfilesRequest {
|
|
1124
|
-
PathPrefix?: string;
|
|
1125
|
-
Marker?: string;
|
|
1126
|
-
MaxItems?: number;
|
|
1202
|
+
PathPrefix?: string | undefined;
|
|
1203
|
+
Marker?: string | undefined;
|
|
1204
|
+
MaxItems?: number | undefined;
|
|
1127
1205
|
}
|
|
1128
1206
|
export interface ListInstanceProfilesResponse {
|
|
1129
1207
|
InstanceProfiles: InstanceProfile[] | undefined;
|
|
1130
|
-
IsTruncated?: boolean;
|
|
1131
|
-
Marker?: string;
|
|
1208
|
+
IsTruncated?: boolean | undefined;
|
|
1209
|
+
Marker?: string | undefined;
|
|
1132
1210
|
}
|
|
1133
1211
|
export interface ListInstanceProfilesForRoleRequest {
|
|
1134
1212
|
RoleName: string | undefined;
|
|
1135
|
-
Marker?: string;
|
|
1136
|
-
MaxItems?: number;
|
|
1213
|
+
Marker?: string | undefined;
|
|
1214
|
+
MaxItems?: number | undefined;
|
|
1137
1215
|
}
|
|
1138
1216
|
export interface ListInstanceProfilesForRoleResponse {
|
|
1139
1217
|
InstanceProfiles: InstanceProfile[] | undefined;
|
|
1140
|
-
IsTruncated?: boolean;
|
|
1141
|
-
Marker?: string;
|
|
1218
|
+
IsTruncated?: boolean | undefined;
|
|
1219
|
+
Marker?: string | undefined;
|
|
1142
1220
|
}
|
|
1143
1221
|
export interface ListInstanceProfileTagsRequest {
|
|
1144
1222
|
InstanceProfileName: string | undefined;
|
|
1145
|
-
Marker?: string;
|
|
1146
|
-
MaxItems?: number;
|
|
1223
|
+
Marker?: string | undefined;
|
|
1224
|
+
MaxItems?: number | undefined;
|
|
1147
1225
|
}
|
|
1148
1226
|
export interface ListInstanceProfileTagsResponse {
|
|
1149
1227
|
Tags: Tag[] | undefined;
|
|
1150
|
-
IsTruncated?: boolean;
|
|
1151
|
-
Marker?: string;
|
|
1228
|
+
IsTruncated?: boolean | undefined;
|
|
1229
|
+
Marker?: string | undefined;
|
|
1152
1230
|
}
|
|
1153
1231
|
export interface ListMFADevicesRequest {
|
|
1154
|
-
UserName?: string;
|
|
1155
|
-
Marker?: string;
|
|
1156
|
-
MaxItems?: number;
|
|
1232
|
+
UserName?: string | undefined;
|
|
1233
|
+
Marker?: string | undefined;
|
|
1234
|
+
MaxItems?: number | undefined;
|
|
1157
1235
|
}
|
|
1158
1236
|
export interface MFADevice {
|
|
1159
1237
|
UserName: string | undefined;
|
|
@@ -1162,35 +1240,40 @@ export interface MFADevice {
|
|
|
1162
1240
|
}
|
|
1163
1241
|
export interface ListMFADevicesResponse {
|
|
1164
1242
|
MFADevices: MFADevice[] | undefined;
|
|
1165
|
-
IsTruncated?: boolean;
|
|
1166
|
-
Marker?: string;
|
|
1243
|
+
IsTruncated?: boolean | undefined;
|
|
1244
|
+
Marker?: string | undefined;
|
|
1167
1245
|
}
|
|
1168
1246
|
export interface ListMFADeviceTagsRequest {
|
|
1169
1247
|
SerialNumber: string | undefined;
|
|
1170
|
-
Marker?: string;
|
|
1171
|
-
MaxItems?: number;
|
|
1248
|
+
Marker?: string | undefined;
|
|
1249
|
+
MaxItems?: number | undefined;
|
|
1172
1250
|
}
|
|
1173
1251
|
export interface ListMFADeviceTagsResponse {
|
|
1174
1252
|
Tags: Tag[] | undefined;
|
|
1175
|
-
IsTruncated?: boolean;
|
|
1176
|
-
Marker?: string;
|
|
1253
|
+
IsTruncated?: boolean | undefined;
|
|
1254
|
+
Marker?: string | undefined;
|
|
1177
1255
|
}
|
|
1178
1256
|
export interface ListOpenIDConnectProvidersRequest {}
|
|
1179
1257
|
export interface OpenIDConnectProviderListEntry {
|
|
1180
|
-
Arn?: string;
|
|
1258
|
+
Arn?: string | undefined;
|
|
1181
1259
|
}
|
|
1182
1260
|
export interface ListOpenIDConnectProvidersResponse {
|
|
1183
|
-
OpenIDConnectProviderList?: OpenIDConnectProviderListEntry[];
|
|
1261
|
+
OpenIDConnectProviderList?: OpenIDConnectProviderListEntry[] | undefined;
|
|
1184
1262
|
}
|
|
1185
1263
|
export interface ListOpenIDConnectProviderTagsRequest {
|
|
1186
1264
|
OpenIDConnectProviderArn: string | undefined;
|
|
1187
|
-
Marker?: string;
|
|
1188
|
-
MaxItems?: number;
|
|
1265
|
+
Marker?: string | undefined;
|
|
1266
|
+
MaxItems?: number | undefined;
|
|
1189
1267
|
}
|
|
1190
1268
|
export interface ListOpenIDConnectProviderTagsResponse {
|
|
1191
1269
|
Tags: Tag[] | undefined;
|
|
1192
|
-
IsTruncated?: boolean;
|
|
1193
|
-
Marker?: string;
|
|
1270
|
+
IsTruncated?: boolean | undefined;
|
|
1271
|
+
Marker?: string | undefined;
|
|
1272
|
+
}
|
|
1273
|
+
export interface ListOrganizationsFeaturesRequest {}
|
|
1274
|
+
export interface ListOrganizationsFeaturesResponse {
|
|
1275
|
+
OrganizationId?: string | undefined;
|
|
1276
|
+
EnabledFeatures?: FeatureType[] | undefined;
|
|
1194
1277
|
}
|
|
1195
1278
|
export declare const PolicyScopeType: {
|
|
1196
1279
|
readonly AWS: "AWS";
|
|
@@ -1200,20 +1283,20 @@ export declare const PolicyScopeType: {
|
|
|
1200
1283
|
export type PolicyScopeType =
|
|
1201
1284
|
(typeof PolicyScopeType)[keyof typeof PolicyScopeType];
|
|
1202
1285
|
export interface ListPoliciesRequest {
|
|
1203
|
-
Scope?: PolicyScopeType;
|
|
1204
|
-
OnlyAttached?: boolean;
|
|
1205
|
-
PathPrefix?: string;
|
|
1206
|
-
PolicyUsageFilter?: PolicyUsageType;
|
|
1207
|
-
Marker?: string;
|
|
1208
|
-
MaxItems?: number;
|
|
1286
|
+
Scope?: PolicyScopeType | undefined;
|
|
1287
|
+
OnlyAttached?: boolean | undefined;
|
|
1288
|
+
PathPrefix?: string | undefined;
|
|
1289
|
+
PolicyUsageFilter?: PolicyUsageType | undefined;
|
|
1290
|
+
Marker?: string | undefined;
|
|
1291
|
+
MaxItems?: number | undefined;
|
|
1209
1292
|
}
|
|
1210
1293
|
export interface ListPoliciesResponse {
|
|
1211
|
-
Policies?: Policy[];
|
|
1212
|
-
IsTruncated?: boolean;
|
|
1213
|
-
Marker?: string;
|
|
1294
|
+
Policies?: Policy[] | undefined;
|
|
1295
|
+
IsTruncated?: boolean | undefined;
|
|
1296
|
+
Marker?: string | undefined;
|
|
1214
1297
|
}
|
|
1215
1298
|
export interface ListPoliciesGrantingServiceAccessRequest {
|
|
1216
|
-
Marker?: string;
|
|
1299
|
+
Marker?: string | undefined;
|
|
1217
1300
|
Arn: string | undefined;
|
|
1218
1301
|
ServiceNamespaces: string[] | undefined;
|
|
1219
1302
|
}
|
|
@@ -1225,113 +1308,113 @@ export type PolicyType = (typeof PolicyType)[keyof typeof PolicyType];
|
|
|
1225
1308
|
export interface PolicyGrantingServiceAccess {
|
|
1226
1309
|
PolicyName: string | undefined;
|
|
1227
1310
|
PolicyType: PolicyType | undefined;
|
|
1228
|
-
PolicyArn?: string;
|
|
1229
|
-
EntityType?: PolicyOwnerEntityType;
|
|
1230
|
-
EntityName?: string;
|
|
1311
|
+
PolicyArn?: string | undefined;
|
|
1312
|
+
EntityType?: PolicyOwnerEntityType | undefined;
|
|
1313
|
+
EntityName?: string | undefined;
|
|
1231
1314
|
}
|
|
1232
1315
|
export interface ListPoliciesGrantingServiceAccessEntry {
|
|
1233
|
-
ServiceNamespace?: string;
|
|
1234
|
-
Policies?: PolicyGrantingServiceAccess[];
|
|
1316
|
+
ServiceNamespace?: string | undefined;
|
|
1317
|
+
Policies?: PolicyGrantingServiceAccess[] | undefined;
|
|
1235
1318
|
}
|
|
1236
1319
|
export interface ListPoliciesGrantingServiceAccessResponse {
|
|
1237
1320
|
PoliciesGrantingServiceAccess:
|
|
1238
1321
|
| ListPoliciesGrantingServiceAccessEntry[]
|
|
1239
1322
|
| undefined;
|
|
1240
|
-
IsTruncated?: boolean;
|
|
1241
|
-
Marker?: string;
|
|
1323
|
+
IsTruncated?: boolean | undefined;
|
|
1324
|
+
Marker?: string | undefined;
|
|
1242
1325
|
}
|
|
1243
1326
|
export interface ListPolicyTagsRequest {
|
|
1244
1327
|
PolicyArn: string | undefined;
|
|
1245
|
-
Marker?: string;
|
|
1246
|
-
MaxItems?: number;
|
|
1328
|
+
Marker?: string | undefined;
|
|
1329
|
+
MaxItems?: number | undefined;
|
|
1247
1330
|
}
|
|
1248
1331
|
export interface ListPolicyTagsResponse {
|
|
1249
1332
|
Tags: Tag[] | undefined;
|
|
1250
|
-
IsTruncated?: boolean;
|
|
1251
|
-
Marker?: string;
|
|
1333
|
+
IsTruncated?: boolean | undefined;
|
|
1334
|
+
Marker?: string | undefined;
|
|
1252
1335
|
}
|
|
1253
1336
|
export interface ListPolicyVersionsRequest {
|
|
1254
1337
|
PolicyArn: string | undefined;
|
|
1255
|
-
Marker?: string;
|
|
1256
|
-
MaxItems?: number;
|
|
1338
|
+
Marker?: string | undefined;
|
|
1339
|
+
MaxItems?: number | undefined;
|
|
1257
1340
|
}
|
|
1258
1341
|
export interface ListPolicyVersionsResponse {
|
|
1259
|
-
Versions?: PolicyVersion[];
|
|
1260
|
-
IsTruncated?: boolean;
|
|
1261
|
-
Marker?: string;
|
|
1342
|
+
Versions?: PolicyVersion[] | undefined;
|
|
1343
|
+
IsTruncated?: boolean | undefined;
|
|
1344
|
+
Marker?: string | undefined;
|
|
1262
1345
|
}
|
|
1263
1346
|
export interface ListRolePoliciesRequest {
|
|
1264
1347
|
RoleName: string | undefined;
|
|
1265
|
-
Marker?: string;
|
|
1266
|
-
MaxItems?: number;
|
|
1348
|
+
Marker?: string | undefined;
|
|
1349
|
+
MaxItems?: number | undefined;
|
|
1267
1350
|
}
|
|
1268
1351
|
export interface ListRolePoliciesResponse {
|
|
1269
1352
|
PolicyNames: string[] | undefined;
|
|
1270
|
-
IsTruncated?: boolean;
|
|
1271
|
-
Marker?: string;
|
|
1353
|
+
IsTruncated?: boolean | undefined;
|
|
1354
|
+
Marker?: string | undefined;
|
|
1272
1355
|
}
|
|
1273
1356
|
export interface ListRolesRequest {
|
|
1274
|
-
PathPrefix?: string;
|
|
1275
|
-
Marker?: string;
|
|
1276
|
-
MaxItems?: number;
|
|
1357
|
+
PathPrefix?: string | undefined;
|
|
1358
|
+
Marker?: string | undefined;
|
|
1359
|
+
MaxItems?: number | undefined;
|
|
1277
1360
|
}
|
|
1278
1361
|
export interface ListRolesResponse {
|
|
1279
1362
|
Roles: Role[] | undefined;
|
|
1280
|
-
IsTruncated?: boolean;
|
|
1281
|
-
Marker?: string;
|
|
1363
|
+
IsTruncated?: boolean | undefined;
|
|
1364
|
+
Marker?: string | undefined;
|
|
1282
1365
|
}
|
|
1283
1366
|
export interface ListRoleTagsRequest {
|
|
1284
1367
|
RoleName: string | undefined;
|
|
1285
|
-
Marker?: string;
|
|
1286
|
-
MaxItems?: number;
|
|
1368
|
+
Marker?: string | undefined;
|
|
1369
|
+
MaxItems?: number | undefined;
|
|
1287
1370
|
}
|
|
1288
1371
|
export interface ListRoleTagsResponse {
|
|
1289
1372
|
Tags: Tag[] | undefined;
|
|
1290
|
-
IsTruncated?: boolean;
|
|
1291
|
-
Marker?: string;
|
|
1373
|
+
IsTruncated?: boolean | undefined;
|
|
1374
|
+
Marker?: string | undefined;
|
|
1292
1375
|
}
|
|
1293
1376
|
export interface ListSAMLProvidersRequest {}
|
|
1294
1377
|
export interface SAMLProviderListEntry {
|
|
1295
|
-
Arn?: string;
|
|
1296
|
-
ValidUntil?: Date;
|
|
1297
|
-
CreateDate?: Date;
|
|
1378
|
+
Arn?: string | undefined;
|
|
1379
|
+
ValidUntil?: Date | undefined;
|
|
1380
|
+
CreateDate?: Date | undefined;
|
|
1298
1381
|
}
|
|
1299
1382
|
export interface ListSAMLProvidersResponse {
|
|
1300
|
-
SAMLProviderList?: SAMLProviderListEntry[];
|
|
1383
|
+
SAMLProviderList?: SAMLProviderListEntry[] | undefined;
|
|
1301
1384
|
}
|
|
1302
1385
|
export interface ListSAMLProviderTagsRequest {
|
|
1303
1386
|
SAMLProviderArn: string | undefined;
|
|
1304
|
-
Marker?: string;
|
|
1305
|
-
MaxItems?: number;
|
|
1387
|
+
Marker?: string | undefined;
|
|
1388
|
+
MaxItems?: number | undefined;
|
|
1306
1389
|
}
|
|
1307
1390
|
export interface ListSAMLProviderTagsResponse {
|
|
1308
1391
|
Tags: Tag[] | undefined;
|
|
1309
|
-
IsTruncated?: boolean;
|
|
1310
|
-
Marker?: string;
|
|
1392
|
+
IsTruncated?: boolean | undefined;
|
|
1393
|
+
Marker?: string | undefined;
|
|
1311
1394
|
}
|
|
1312
1395
|
export interface ListServerCertificatesRequest {
|
|
1313
|
-
PathPrefix?: string;
|
|
1314
|
-
Marker?: string;
|
|
1315
|
-
MaxItems?: number;
|
|
1396
|
+
PathPrefix?: string | undefined;
|
|
1397
|
+
Marker?: string | undefined;
|
|
1398
|
+
MaxItems?: number | undefined;
|
|
1316
1399
|
}
|
|
1317
1400
|
export interface ListServerCertificatesResponse {
|
|
1318
1401
|
ServerCertificateMetadataList: ServerCertificateMetadata[] | undefined;
|
|
1319
|
-
IsTruncated?: boolean;
|
|
1320
|
-
Marker?: string;
|
|
1402
|
+
IsTruncated?: boolean | undefined;
|
|
1403
|
+
Marker?: string | undefined;
|
|
1321
1404
|
}
|
|
1322
1405
|
export interface ListServerCertificateTagsRequest {
|
|
1323
1406
|
ServerCertificateName: string | undefined;
|
|
1324
|
-
Marker?: string;
|
|
1325
|
-
MaxItems?: number;
|
|
1407
|
+
Marker?: string | undefined;
|
|
1408
|
+
MaxItems?: number | undefined;
|
|
1326
1409
|
}
|
|
1327
1410
|
export interface ListServerCertificateTagsResponse {
|
|
1328
1411
|
Tags: Tag[] | undefined;
|
|
1329
|
-
IsTruncated?: boolean;
|
|
1330
|
-
Marker?: string;
|
|
1412
|
+
IsTruncated?: boolean | undefined;
|
|
1413
|
+
Marker?: string | undefined;
|
|
1331
1414
|
}
|
|
1332
1415
|
export interface ListServiceSpecificCredentialsRequest {
|
|
1333
|
-
UserName?: string;
|
|
1334
|
-
ServiceName?: string;
|
|
1416
|
+
UserName?: string | undefined;
|
|
1417
|
+
ServiceName?: string | undefined;
|
|
1335
1418
|
}
|
|
1336
1419
|
export interface ServiceSpecificCredentialMetadata {
|
|
1337
1420
|
UserName: string | undefined;
|
|
@@ -1342,29 +1425,29 @@ export interface ServiceSpecificCredentialMetadata {
|
|
|
1342
1425
|
ServiceName: string | undefined;
|
|
1343
1426
|
}
|
|
1344
1427
|
export interface ListServiceSpecificCredentialsResponse {
|
|
1345
|
-
ServiceSpecificCredentials?: ServiceSpecificCredentialMetadata[];
|
|
1428
|
+
ServiceSpecificCredentials?: ServiceSpecificCredentialMetadata[] | undefined;
|
|
1346
1429
|
}
|
|
1347
1430
|
export interface ListSigningCertificatesRequest {
|
|
1348
|
-
UserName?: string;
|
|
1349
|
-
Marker?: string;
|
|
1350
|
-
MaxItems?: number;
|
|
1431
|
+
UserName?: string | undefined;
|
|
1432
|
+
Marker?: string | undefined;
|
|
1433
|
+
MaxItems?: number | undefined;
|
|
1351
1434
|
}
|
|
1352
1435
|
export interface SigningCertificate {
|
|
1353
1436
|
UserName: string | undefined;
|
|
1354
1437
|
CertificateId: string | undefined;
|
|
1355
1438
|
CertificateBody: string | undefined;
|
|
1356
1439
|
Status: StatusType | undefined;
|
|
1357
|
-
UploadDate?: Date;
|
|
1440
|
+
UploadDate?: Date | undefined;
|
|
1358
1441
|
}
|
|
1359
1442
|
export interface ListSigningCertificatesResponse {
|
|
1360
1443
|
Certificates: SigningCertificate[] | undefined;
|
|
1361
|
-
IsTruncated?: boolean;
|
|
1362
|
-
Marker?: string;
|
|
1444
|
+
IsTruncated?: boolean | undefined;
|
|
1445
|
+
Marker?: string | undefined;
|
|
1363
1446
|
}
|
|
1364
1447
|
export interface ListSSHPublicKeysRequest {
|
|
1365
|
-
UserName?: string;
|
|
1366
|
-
Marker?: string;
|
|
1367
|
-
MaxItems?: number;
|
|
1448
|
+
UserName?: string | undefined;
|
|
1449
|
+
Marker?: string | undefined;
|
|
1450
|
+
MaxItems?: number | undefined;
|
|
1368
1451
|
}
|
|
1369
1452
|
export interface SSHPublicKeyMetadata {
|
|
1370
1453
|
UserName: string | undefined;
|
|
@@ -1373,49 +1456,49 @@ export interface SSHPublicKeyMetadata {
|
|
|
1373
1456
|
UploadDate: Date | undefined;
|
|
1374
1457
|
}
|
|
1375
1458
|
export interface ListSSHPublicKeysResponse {
|
|
1376
|
-
SSHPublicKeys?: SSHPublicKeyMetadata[];
|
|
1377
|
-
IsTruncated?: boolean;
|
|
1378
|
-
Marker?: string;
|
|
1459
|
+
SSHPublicKeys?: SSHPublicKeyMetadata[] | undefined;
|
|
1460
|
+
IsTruncated?: boolean | undefined;
|
|
1461
|
+
Marker?: string | undefined;
|
|
1379
1462
|
}
|
|
1380
1463
|
export interface ListUserPoliciesRequest {
|
|
1381
1464
|
UserName: string | undefined;
|
|
1382
|
-
Marker?: string;
|
|
1383
|
-
MaxItems?: number;
|
|
1465
|
+
Marker?: string | undefined;
|
|
1466
|
+
MaxItems?: number | undefined;
|
|
1384
1467
|
}
|
|
1385
1468
|
export interface ListUserPoliciesResponse {
|
|
1386
1469
|
PolicyNames: string[] | undefined;
|
|
1387
|
-
IsTruncated?: boolean;
|
|
1388
|
-
Marker?: string;
|
|
1470
|
+
IsTruncated?: boolean | undefined;
|
|
1471
|
+
Marker?: string | undefined;
|
|
1389
1472
|
}
|
|
1390
1473
|
export interface ListUsersRequest {
|
|
1391
|
-
PathPrefix?: string;
|
|
1392
|
-
Marker?: string;
|
|
1393
|
-
MaxItems?: number;
|
|
1474
|
+
PathPrefix?: string | undefined;
|
|
1475
|
+
Marker?: string | undefined;
|
|
1476
|
+
MaxItems?: number | undefined;
|
|
1394
1477
|
}
|
|
1395
1478
|
export interface ListUsersResponse {
|
|
1396
1479
|
Users: User[] | undefined;
|
|
1397
|
-
IsTruncated?: boolean;
|
|
1398
|
-
Marker?: string;
|
|
1480
|
+
IsTruncated?: boolean | undefined;
|
|
1481
|
+
Marker?: string | undefined;
|
|
1399
1482
|
}
|
|
1400
1483
|
export interface ListUserTagsRequest {
|
|
1401
1484
|
UserName: string | undefined;
|
|
1402
|
-
Marker?: string;
|
|
1403
|
-
MaxItems?: number;
|
|
1485
|
+
Marker?: string | undefined;
|
|
1486
|
+
MaxItems?: number | undefined;
|
|
1404
1487
|
}
|
|
1405
1488
|
export interface ListUserTagsResponse {
|
|
1406
1489
|
Tags: Tag[] | undefined;
|
|
1407
|
-
IsTruncated?: boolean;
|
|
1408
|
-
Marker?: string;
|
|
1490
|
+
IsTruncated?: boolean | undefined;
|
|
1491
|
+
Marker?: string | undefined;
|
|
1409
1492
|
}
|
|
1410
1493
|
export interface ListVirtualMFADevicesRequest {
|
|
1411
|
-
AssignmentStatus?: AssignmentStatusType;
|
|
1412
|
-
Marker?: string;
|
|
1413
|
-
MaxItems?: number;
|
|
1494
|
+
AssignmentStatus?: AssignmentStatusType | undefined;
|
|
1495
|
+
Marker?: string | undefined;
|
|
1496
|
+
MaxItems?: number | undefined;
|
|
1414
1497
|
}
|
|
1415
1498
|
export interface ListVirtualMFADevicesResponse {
|
|
1416
1499
|
VirtualMFADevices: VirtualMFADevice[] | undefined;
|
|
1417
|
-
IsTruncated?: boolean;
|
|
1418
|
-
Marker?: string;
|
|
1500
|
+
IsTruncated?: boolean | undefined;
|
|
1501
|
+
Marker?: string | undefined;
|
|
1419
1502
|
}
|
|
1420
1503
|
export interface PutGroupPolicyRequest {
|
|
1421
1504
|
GroupName: string | undefined;
|
|
@@ -1453,11 +1536,11 @@ export interface RemoveUserFromGroupRequest {
|
|
|
1453
1536
|
UserName: string | undefined;
|
|
1454
1537
|
}
|
|
1455
1538
|
export interface ResetServiceSpecificCredentialRequest {
|
|
1456
|
-
UserName?: string;
|
|
1539
|
+
UserName?: string | undefined;
|
|
1457
1540
|
ServiceSpecificCredentialId: string | undefined;
|
|
1458
1541
|
}
|
|
1459
1542
|
export interface ResetServiceSpecificCredentialResponse {
|
|
1460
|
-
ServiceSpecificCredential?: ServiceSpecificCredential;
|
|
1543
|
+
ServiceSpecificCredential?: ServiceSpecificCredential | undefined;
|
|
1461
1544
|
}
|
|
1462
1545
|
export interface ResyncMFADeviceRequest {
|
|
1463
1546
|
UserName: string | undefined;
|
|
@@ -1502,22 +1585,22 @@ export declare const ContextKeyTypeEnum: {
|
|
|
1502
1585
|
export type ContextKeyTypeEnum =
|
|
1503
1586
|
(typeof ContextKeyTypeEnum)[keyof typeof ContextKeyTypeEnum];
|
|
1504
1587
|
export interface ContextEntry {
|
|
1505
|
-
ContextKeyName?: string;
|
|
1506
|
-
ContextKeyValues?: string[];
|
|
1507
|
-
ContextKeyType?: ContextKeyTypeEnum;
|
|
1588
|
+
ContextKeyName?: string | undefined;
|
|
1589
|
+
ContextKeyValues?: string[] | undefined;
|
|
1590
|
+
ContextKeyType?: ContextKeyTypeEnum | undefined;
|
|
1508
1591
|
}
|
|
1509
1592
|
export interface SimulateCustomPolicyRequest {
|
|
1510
1593
|
PolicyInputList: string[] | undefined;
|
|
1511
|
-
PermissionsBoundaryPolicyInputList?: string[];
|
|
1594
|
+
PermissionsBoundaryPolicyInputList?: string[] | undefined;
|
|
1512
1595
|
ActionNames: string[] | undefined;
|
|
1513
|
-
ResourceArns?: string[];
|
|
1514
|
-
ResourcePolicy?: string;
|
|
1515
|
-
ResourceOwner?: string;
|
|
1516
|
-
CallerArn?: string;
|
|
1517
|
-
ContextEntries?: ContextEntry[];
|
|
1518
|
-
ResourceHandlingOption?: string;
|
|
1519
|
-
MaxItems?: number;
|
|
1520
|
-
Marker?: string;
|
|
1596
|
+
ResourceArns?: string[] | undefined;
|
|
1597
|
+
ResourcePolicy?: string | undefined;
|
|
1598
|
+
ResourceOwner?: string | undefined;
|
|
1599
|
+
CallerArn?: string | undefined;
|
|
1600
|
+
ContextEntries?: ContextEntry[] | undefined;
|
|
1601
|
+
ResourceHandlingOption?: string | undefined;
|
|
1602
|
+
MaxItems?: number | undefined;
|
|
1603
|
+
Marker?: string | undefined;
|
|
1521
1604
|
}
|
|
1522
1605
|
export declare const PolicyEvaluationDecisionType: {
|
|
1523
1606
|
readonly ALLOWED: "allowed";
|
|
@@ -1527,101 +1610,8 @@ export declare const PolicyEvaluationDecisionType: {
|
|
|
1527
1610
|
export type PolicyEvaluationDecisionType =
|
|
1528
1611
|
(typeof PolicyEvaluationDecisionType)[keyof typeof PolicyEvaluationDecisionType];
|
|
1529
1612
|
export interface Position {
|
|
1530
|
-
Line?: number;
|
|
1531
|
-
Column?: number;
|
|
1532
|
-
}
|
|
1533
|
-
export declare const PolicySourceType: {
|
|
1534
|
-
readonly AWS_MANAGED: "aws-managed";
|
|
1535
|
-
readonly GROUP: "group";
|
|
1536
|
-
readonly NONE: "none";
|
|
1537
|
-
readonly RESOURCE: "resource";
|
|
1538
|
-
readonly ROLE: "role";
|
|
1539
|
-
readonly USER: "user";
|
|
1540
|
-
readonly USER_MANAGED: "user-managed";
|
|
1541
|
-
};
|
|
1542
|
-
export type PolicySourceType =
|
|
1543
|
-
(typeof PolicySourceType)[keyof typeof PolicySourceType];
|
|
1544
|
-
export interface Statement {
|
|
1545
|
-
SourcePolicyId?: string;
|
|
1546
|
-
SourcePolicyType?: PolicySourceType;
|
|
1547
|
-
StartPosition?: Position;
|
|
1548
|
-
EndPosition?: Position;
|
|
1549
|
-
}
|
|
1550
|
-
export interface OrganizationsDecisionDetail {
|
|
1551
|
-
AllowedByOrganizations?: boolean;
|
|
1552
|
-
}
|
|
1553
|
-
export interface PermissionsBoundaryDecisionDetail {
|
|
1554
|
-
AllowedByPermissionsBoundary?: boolean;
|
|
1555
|
-
}
|
|
1556
|
-
export interface ResourceSpecificResult {
|
|
1557
|
-
EvalResourceName: string | undefined;
|
|
1558
|
-
EvalResourceDecision: PolicyEvaluationDecisionType | undefined;
|
|
1559
|
-
MatchedStatements?: Statement[];
|
|
1560
|
-
MissingContextValues?: string[];
|
|
1561
|
-
EvalDecisionDetails?: Record<string, PolicyEvaluationDecisionType>;
|
|
1562
|
-
PermissionsBoundaryDecisionDetail?: PermissionsBoundaryDecisionDetail;
|
|
1563
|
-
}
|
|
1564
|
-
export interface EvaluationResult {
|
|
1565
|
-
EvalActionName: string | undefined;
|
|
1566
|
-
EvalResourceName?: string;
|
|
1567
|
-
EvalDecision: PolicyEvaluationDecisionType | undefined;
|
|
1568
|
-
MatchedStatements?: Statement[];
|
|
1569
|
-
MissingContextValues?: string[];
|
|
1570
|
-
OrganizationsDecisionDetail?: OrganizationsDecisionDetail;
|
|
1571
|
-
PermissionsBoundaryDecisionDetail?: PermissionsBoundaryDecisionDetail;
|
|
1572
|
-
EvalDecisionDetails?: Record<string, PolicyEvaluationDecisionType>;
|
|
1573
|
-
ResourceSpecificResults?: ResourceSpecificResult[];
|
|
1574
|
-
}
|
|
1575
|
-
export interface SimulatePolicyResponse {
|
|
1576
|
-
EvaluationResults?: EvaluationResult[];
|
|
1577
|
-
IsTruncated?: boolean;
|
|
1578
|
-
Marker?: string;
|
|
1579
|
-
}
|
|
1580
|
-
export interface SimulatePrincipalPolicyRequest {
|
|
1581
|
-
PolicySourceArn: string | undefined;
|
|
1582
|
-
PolicyInputList?: string[];
|
|
1583
|
-
PermissionsBoundaryPolicyInputList?: string[];
|
|
1584
|
-
ActionNames: string[] | undefined;
|
|
1585
|
-
ResourceArns?: string[];
|
|
1586
|
-
ResourcePolicy?: string;
|
|
1587
|
-
ResourceOwner?: string;
|
|
1588
|
-
CallerArn?: string;
|
|
1589
|
-
ContextEntries?: ContextEntry[];
|
|
1590
|
-
ResourceHandlingOption?: string;
|
|
1591
|
-
MaxItems?: number;
|
|
1592
|
-
Marker?: string;
|
|
1593
|
-
}
|
|
1594
|
-
export interface TagInstanceProfileRequest {
|
|
1595
|
-
InstanceProfileName: string | undefined;
|
|
1596
|
-
Tags: Tag[] | undefined;
|
|
1597
|
-
}
|
|
1598
|
-
export interface TagMFADeviceRequest {
|
|
1599
|
-
SerialNumber: string | undefined;
|
|
1600
|
-
Tags: Tag[] | undefined;
|
|
1601
|
-
}
|
|
1602
|
-
export interface TagOpenIDConnectProviderRequest {
|
|
1603
|
-
OpenIDConnectProviderArn: string | undefined;
|
|
1604
|
-
Tags: Tag[] | undefined;
|
|
1605
|
-
}
|
|
1606
|
-
export interface TagPolicyRequest {
|
|
1607
|
-
PolicyArn: string | undefined;
|
|
1608
|
-
Tags: Tag[] | undefined;
|
|
1609
|
-
}
|
|
1610
|
-
export interface TagRoleRequest {
|
|
1611
|
-
RoleName: string | undefined;
|
|
1612
|
-
Tags: Tag[] | undefined;
|
|
1613
|
-
}
|
|
1614
|
-
export interface TagSAMLProviderRequest {
|
|
1615
|
-
SAMLProviderArn: string | undefined;
|
|
1616
|
-
Tags: Tag[] | undefined;
|
|
1617
|
-
}
|
|
1618
|
-
export interface TagServerCertificateRequest {
|
|
1619
|
-
ServerCertificateName: string | undefined;
|
|
1620
|
-
Tags: Tag[] | undefined;
|
|
1621
|
-
}
|
|
1622
|
-
export interface TagUserRequest {
|
|
1623
|
-
UserName: string | undefined;
|
|
1624
|
-
Tags: Tag[] | undefined;
|
|
1613
|
+
Line?: number | undefined;
|
|
1614
|
+
Column?: number | undefined;
|
|
1625
1615
|
}
|
|
1626
1616
|
export declare const AccessKeyFilterSensitiveLog: (obj: AccessKey) => any;
|
|
1627
1617
|
export declare const ChangePasswordRequestFilterSensitiveLog: (
|