@aws-sdk/client-iam 3.686.0 → 3.691.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.
|
@@ -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,18 @@ 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
39
|
}
|
|
40
40
|
export interface AddClientIDToOpenIDConnectProviderRequest {
|
|
41
41
|
OpenIDConnectProviderArn: string | undefined;
|
|
@@ -104,12 +104,12 @@ export declare const PermissionsBoundaryAttachmentType: {
|
|
|
104
104
|
export type PermissionsBoundaryAttachmentType =
|
|
105
105
|
(typeof PermissionsBoundaryAttachmentType)[keyof typeof PermissionsBoundaryAttachmentType];
|
|
106
106
|
export interface AttachedPermissionsBoundary {
|
|
107
|
-
PermissionsBoundaryType?: PermissionsBoundaryAttachmentType;
|
|
108
|
-
PermissionsBoundaryArn?: string;
|
|
107
|
+
PermissionsBoundaryType?: PermissionsBoundaryAttachmentType | undefined;
|
|
108
|
+
PermissionsBoundaryArn?: string | undefined;
|
|
109
109
|
}
|
|
110
110
|
export interface AttachedPolicy {
|
|
111
|
-
PolicyName?: string;
|
|
112
|
-
PolicyArn?: string;
|
|
111
|
+
PolicyName?: string | undefined;
|
|
112
|
+
PolicyArn?: string | undefined;
|
|
113
113
|
}
|
|
114
114
|
export interface AttachGroupPolicyRequest {
|
|
115
115
|
GroupName: string | undefined;
|
|
@@ -162,7 +162,7 @@ export declare class PasswordPolicyViolationException extends __BaseException {
|
|
|
162
162
|
);
|
|
163
163
|
}
|
|
164
164
|
export interface CreateAccessKeyRequest {
|
|
165
|
-
UserName?: string;
|
|
165
|
+
UserName?: string | undefined;
|
|
166
166
|
}
|
|
167
167
|
export interface CreateAccessKeyResponse {
|
|
168
168
|
AccessKey: AccessKey | undefined;
|
|
@@ -181,7 +181,7 @@ export interface CreateAccountAliasRequest {
|
|
|
181
181
|
AccountAlias: string | undefined;
|
|
182
182
|
}
|
|
183
183
|
export interface CreateGroupRequest {
|
|
184
|
-
Path?: string;
|
|
184
|
+
Path?: string | undefined;
|
|
185
185
|
GroupName: string | undefined;
|
|
186
186
|
}
|
|
187
187
|
export interface Group {
|
|
@@ -200,12 +200,12 @@ export interface Tag {
|
|
|
200
200
|
}
|
|
201
201
|
export interface CreateInstanceProfileRequest {
|
|
202
202
|
InstanceProfileName: string | undefined;
|
|
203
|
-
Path?: string;
|
|
204
|
-
Tags?: Tag[];
|
|
203
|
+
Path?: string | undefined;
|
|
204
|
+
Tags?: Tag[] | undefined;
|
|
205
205
|
}
|
|
206
206
|
export interface RoleLastUsed {
|
|
207
|
-
LastUsedDate?: Date;
|
|
208
|
-
Region?: string;
|
|
207
|
+
LastUsedDate?: Date | undefined;
|
|
208
|
+
Region?: string | undefined;
|
|
209
209
|
}
|
|
210
210
|
export interface Role {
|
|
211
211
|
Path: string | undefined;
|
|
@@ -213,12 +213,12 @@ export interface Role {
|
|
|
213
213
|
RoleId: string | undefined;
|
|
214
214
|
Arn: string | undefined;
|
|
215
215
|
CreateDate: Date | undefined;
|
|
216
|
-
AssumeRolePolicyDocument?: string;
|
|
217
|
-
Description?: string;
|
|
218
|
-
MaxSessionDuration?: number;
|
|
219
|
-
PermissionsBoundary?: AttachedPermissionsBoundary;
|
|
220
|
-
Tags?: Tag[];
|
|
221
|
-
RoleLastUsed?: RoleLastUsed;
|
|
216
|
+
AssumeRolePolicyDocument?: string | undefined;
|
|
217
|
+
Description?: string | undefined;
|
|
218
|
+
MaxSessionDuration?: number | undefined;
|
|
219
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
220
|
+
Tags?: Tag[] | undefined;
|
|
221
|
+
RoleLastUsed?: RoleLastUsed | undefined;
|
|
222
222
|
}
|
|
223
223
|
export interface InstanceProfile {
|
|
224
224
|
Path: string | undefined;
|
|
@@ -227,7 +227,7 @@ export interface InstanceProfile {
|
|
|
227
227
|
Arn: string | undefined;
|
|
228
228
|
CreateDate: Date | undefined;
|
|
229
229
|
Roles: Role[] | undefined;
|
|
230
|
-
Tags?: Tag[];
|
|
230
|
+
Tags?: Tag[] | undefined;
|
|
231
231
|
}
|
|
232
232
|
export interface CreateInstanceProfileResponse {
|
|
233
233
|
InstanceProfile: InstanceProfile | undefined;
|
|
@@ -235,25 +235,25 @@ export interface CreateInstanceProfileResponse {
|
|
|
235
235
|
export interface CreateLoginProfileRequest {
|
|
236
236
|
UserName: string | undefined;
|
|
237
237
|
Password: string | undefined;
|
|
238
|
-
PasswordResetRequired?: boolean;
|
|
238
|
+
PasswordResetRequired?: boolean | undefined;
|
|
239
239
|
}
|
|
240
240
|
export interface LoginProfile {
|
|
241
241
|
UserName: string | undefined;
|
|
242
242
|
CreateDate: Date | undefined;
|
|
243
|
-
PasswordResetRequired?: boolean;
|
|
243
|
+
PasswordResetRequired?: boolean | undefined;
|
|
244
244
|
}
|
|
245
245
|
export interface CreateLoginProfileResponse {
|
|
246
246
|
LoginProfile: LoginProfile | undefined;
|
|
247
247
|
}
|
|
248
248
|
export interface CreateOpenIDConnectProviderRequest {
|
|
249
249
|
Url: string | undefined;
|
|
250
|
-
ClientIDList?: string[];
|
|
251
|
-
ThumbprintList?: string[];
|
|
252
|
-
Tags?: Tag[];
|
|
250
|
+
ClientIDList?: string[] | undefined;
|
|
251
|
+
ThumbprintList?: string[] | undefined;
|
|
252
|
+
Tags?: Tag[] | undefined;
|
|
253
253
|
}
|
|
254
254
|
export interface CreateOpenIDConnectProviderResponse {
|
|
255
|
-
OpenIDConnectProviderArn?: string;
|
|
256
|
-
Tags?: Tag[];
|
|
255
|
+
OpenIDConnectProviderArn?: string | undefined;
|
|
256
|
+
Tags?: Tag[] | undefined;
|
|
257
257
|
}
|
|
258
258
|
export declare class OpenIdIdpCommunicationErrorException extends __BaseException {
|
|
259
259
|
readonly name: "OpenIdIdpCommunicationErrorException";
|
|
@@ -267,27 +267,27 @@ export declare class OpenIdIdpCommunicationErrorException extends __BaseExceptio
|
|
|
267
267
|
}
|
|
268
268
|
export interface CreatePolicyRequest {
|
|
269
269
|
PolicyName: string | undefined;
|
|
270
|
-
Path?: string;
|
|
270
|
+
Path?: string | undefined;
|
|
271
271
|
PolicyDocument: string | undefined;
|
|
272
|
-
Description?: string;
|
|
273
|
-
Tags?: Tag[];
|
|
272
|
+
Description?: string | undefined;
|
|
273
|
+
Tags?: Tag[] | undefined;
|
|
274
274
|
}
|
|
275
275
|
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[];
|
|
276
|
+
PolicyName?: string | undefined;
|
|
277
|
+
PolicyId?: string | undefined;
|
|
278
|
+
Arn?: string | undefined;
|
|
279
|
+
Path?: string | undefined;
|
|
280
|
+
DefaultVersionId?: string | undefined;
|
|
281
|
+
AttachmentCount?: number | undefined;
|
|
282
|
+
PermissionsBoundaryUsageCount?: number | undefined;
|
|
283
|
+
IsAttachable?: boolean | undefined;
|
|
284
|
+
Description?: string | undefined;
|
|
285
|
+
CreateDate?: Date | undefined;
|
|
286
|
+
UpdateDate?: Date | undefined;
|
|
287
|
+
Tags?: Tag[] | undefined;
|
|
288
288
|
}
|
|
289
289
|
export interface CreatePolicyResponse {
|
|
290
|
-
Policy?: Policy;
|
|
290
|
+
Policy?: Policy | undefined;
|
|
291
291
|
}
|
|
292
292
|
export declare class MalformedPolicyDocumentException extends __BaseException {
|
|
293
293
|
readonly name: "MalformedPolicyDocumentException";
|
|
@@ -302,25 +302,25 @@ export declare class MalformedPolicyDocumentException extends __BaseException {
|
|
|
302
302
|
export interface CreatePolicyVersionRequest {
|
|
303
303
|
PolicyArn: string | undefined;
|
|
304
304
|
PolicyDocument: string | undefined;
|
|
305
|
-
SetAsDefault?: boolean;
|
|
305
|
+
SetAsDefault?: boolean | undefined;
|
|
306
306
|
}
|
|
307
307
|
export interface PolicyVersion {
|
|
308
|
-
Document?: string;
|
|
309
|
-
VersionId?: string;
|
|
310
|
-
IsDefaultVersion?: boolean;
|
|
311
|
-
CreateDate?: Date;
|
|
308
|
+
Document?: string | undefined;
|
|
309
|
+
VersionId?: string | undefined;
|
|
310
|
+
IsDefaultVersion?: boolean | undefined;
|
|
311
|
+
CreateDate?: Date | undefined;
|
|
312
312
|
}
|
|
313
313
|
export interface CreatePolicyVersionResponse {
|
|
314
|
-
PolicyVersion?: PolicyVersion;
|
|
314
|
+
PolicyVersion?: PolicyVersion | undefined;
|
|
315
315
|
}
|
|
316
316
|
export interface CreateRoleRequest {
|
|
317
|
-
Path?: string;
|
|
317
|
+
Path?: string | undefined;
|
|
318
318
|
RoleName: string | undefined;
|
|
319
319
|
AssumeRolePolicyDocument: string | undefined;
|
|
320
|
-
Description?: string;
|
|
321
|
-
MaxSessionDuration?: number;
|
|
322
|
-
PermissionsBoundary?: string;
|
|
323
|
-
Tags?: Tag[];
|
|
320
|
+
Description?: string | undefined;
|
|
321
|
+
MaxSessionDuration?: number | undefined;
|
|
322
|
+
PermissionsBoundary?: string | undefined;
|
|
323
|
+
Tags?: Tag[] | undefined;
|
|
324
324
|
}
|
|
325
325
|
export interface CreateRoleResponse {
|
|
326
326
|
Role: Role | undefined;
|
|
@@ -328,19 +328,19 @@ export interface CreateRoleResponse {
|
|
|
328
328
|
export interface CreateSAMLProviderRequest {
|
|
329
329
|
SAMLMetadataDocument: string | undefined;
|
|
330
330
|
Name: string | undefined;
|
|
331
|
-
Tags?: Tag[];
|
|
331
|
+
Tags?: Tag[] | undefined;
|
|
332
332
|
}
|
|
333
333
|
export interface CreateSAMLProviderResponse {
|
|
334
|
-
SAMLProviderArn?: string;
|
|
335
|
-
Tags?: Tag[];
|
|
334
|
+
SAMLProviderArn?: string | undefined;
|
|
335
|
+
Tags?: Tag[] | undefined;
|
|
336
336
|
}
|
|
337
337
|
export interface CreateServiceLinkedRoleRequest {
|
|
338
338
|
AWSServiceName: string | undefined;
|
|
339
|
-
Description?: string;
|
|
340
|
-
CustomSuffix?: string;
|
|
339
|
+
Description?: string | undefined;
|
|
340
|
+
CustomSuffix?: string | undefined;
|
|
341
341
|
}
|
|
342
342
|
export interface CreateServiceLinkedRoleResponse {
|
|
343
|
-
Role?: Role;
|
|
343
|
+
Role?: Role | undefined;
|
|
344
344
|
}
|
|
345
345
|
export interface CreateServiceSpecificCredentialRequest {
|
|
346
346
|
UserName: string | undefined;
|
|
@@ -356,7 +356,7 @@ export interface ServiceSpecificCredential {
|
|
|
356
356
|
Status: StatusType | undefined;
|
|
357
357
|
}
|
|
358
358
|
export interface CreateServiceSpecificCredentialResponse {
|
|
359
|
-
ServiceSpecificCredential?: ServiceSpecificCredential;
|
|
359
|
+
ServiceSpecificCredential?: ServiceSpecificCredential | undefined;
|
|
360
360
|
}
|
|
361
361
|
export declare class ServiceNotSupportedException extends __BaseException {
|
|
362
362
|
readonly name: "ServiceNotSupportedException";
|
|
@@ -366,10 +366,10 @@ export declare class ServiceNotSupportedException extends __BaseException {
|
|
|
366
366
|
);
|
|
367
367
|
}
|
|
368
368
|
export interface CreateUserRequest {
|
|
369
|
-
Path?: string;
|
|
369
|
+
Path?: string | undefined;
|
|
370
370
|
UserName: string | undefined;
|
|
371
|
-
PermissionsBoundary?: string;
|
|
372
|
-
Tags?: Tag[];
|
|
371
|
+
PermissionsBoundary?: string | undefined;
|
|
372
|
+
Tags?: Tag[] | undefined;
|
|
373
373
|
}
|
|
374
374
|
export interface User {
|
|
375
375
|
Path: string | undefined;
|
|
@@ -377,25 +377,25 @@ export interface User {
|
|
|
377
377
|
UserId: string | undefined;
|
|
378
378
|
Arn: string | undefined;
|
|
379
379
|
CreateDate: Date | undefined;
|
|
380
|
-
PasswordLastUsed?: Date;
|
|
381
|
-
PermissionsBoundary?: AttachedPermissionsBoundary;
|
|
382
|
-
Tags?: Tag[];
|
|
380
|
+
PasswordLastUsed?: Date | undefined;
|
|
381
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
382
|
+
Tags?: Tag[] | undefined;
|
|
383
383
|
}
|
|
384
384
|
export interface CreateUserResponse {
|
|
385
|
-
User?: User;
|
|
385
|
+
User?: User | undefined;
|
|
386
386
|
}
|
|
387
387
|
export interface CreateVirtualMFADeviceRequest {
|
|
388
|
-
Path?: string;
|
|
388
|
+
Path?: string | undefined;
|
|
389
389
|
VirtualMFADeviceName: string | undefined;
|
|
390
|
-
Tags?: Tag[];
|
|
390
|
+
Tags?: Tag[] | undefined;
|
|
391
391
|
}
|
|
392
392
|
export interface VirtualMFADevice {
|
|
393
393
|
SerialNumber: string | undefined;
|
|
394
|
-
Base32StringSeed?: Uint8Array;
|
|
395
|
-
QRCodePNG?: Uint8Array;
|
|
396
|
-
User?: User;
|
|
397
|
-
EnableDate?: Date;
|
|
398
|
-
Tags?: Tag[];
|
|
394
|
+
Base32StringSeed?: Uint8Array | undefined;
|
|
395
|
+
QRCodePNG?: Uint8Array | undefined;
|
|
396
|
+
User?: User | undefined;
|
|
397
|
+
EnableDate?: Date | undefined;
|
|
398
|
+
Tags?: Tag[] | undefined;
|
|
399
399
|
}
|
|
400
400
|
export interface CreateVirtualMFADeviceResponse {
|
|
401
401
|
VirtualMFADevice: VirtualMFADevice | undefined;
|
|
@@ -405,7 +405,7 @@ export interface DeactivateMFADeviceRequest {
|
|
|
405
405
|
SerialNumber: string | undefined;
|
|
406
406
|
}
|
|
407
407
|
export interface DeleteAccessKeyRequest {
|
|
408
|
-
UserName?: string;
|
|
408
|
+
UserName?: string | undefined;
|
|
409
409
|
AccessKeyId: string | undefined;
|
|
410
410
|
}
|
|
411
411
|
export interface DeleteAccountAliasRequest {
|
|
@@ -464,11 +464,11 @@ export interface DeleteServiceLinkedRoleResponse {
|
|
|
464
464
|
DeletionTaskId: string | undefined;
|
|
465
465
|
}
|
|
466
466
|
export interface DeleteServiceSpecificCredentialRequest {
|
|
467
|
-
UserName?: string;
|
|
467
|
+
UserName?: string | undefined;
|
|
468
468
|
ServiceSpecificCredentialId: string | undefined;
|
|
469
469
|
}
|
|
470
470
|
export interface DeleteSigningCertificateRequest {
|
|
471
|
-
UserName?: string;
|
|
471
|
+
UserName?: string | undefined;
|
|
472
472
|
CertificateId: string | undefined;
|
|
473
473
|
}
|
|
474
474
|
export interface DeleteSSHPublicKeyRequest {
|
|
@@ -524,15 +524,15 @@ export declare const ReportStateType: {
|
|
|
524
524
|
export type ReportStateType =
|
|
525
525
|
(typeof ReportStateType)[keyof typeof ReportStateType];
|
|
526
526
|
export interface GenerateCredentialReportResponse {
|
|
527
|
-
State?: ReportStateType;
|
|
528
|
-
Description?: string;
|
|
527
|
+
State?: ReportStateType | undefined;
|
|
528
|
+
Description?: string | undefined;
|
|
529
529
|
}
|
|
530
530
|
export interface GenerateOrganizationsAccessReportRequest {
|
|
531
531
|
EntityPath: string | undefined;
|
|
532
|
-
OrganizationsPolicyId?: string;
|
|
532
|
+
OrganizationsPolicyId?: string | undefined;
|
|
533
533
|
}
|
|
534
534
|
export interface GenerateOrganizationsAccessReportResponse {
|
|
535
|
-
JobId?: string;
|
|
535
|
+
JobId?: string | undefined;
|
|
536
536
|
}
|
|
537
537
|
export declare class ReportGenerationLimitExceededException extends __BaseException {
|
|
538
538
|
readonly name: "ReportGenerationLimitExceededException";
|
|
@@ -546,17 +546,17 @@ export declare class ReportGenerationLimitExceededException extends __BaseExcept
|
|
|
546
546
|
}
|
|
547
547
|
export interface GenerateServiceLastAccessedDetailsRequest {
|
|
548
548
|
Arn: string | undefined;
|
|
549
|
-
Granularity?: AccessAdvisorUsageGranularityType;
|
|
549
|
+
Granularity?: AccessAdvisorUsageGranularityType | undefined;
|
|
550
550
|
}
|
|
551
551
|
export interface GenerateServiceLastAccessedDetailsResponse {
|
|
552
|
-
JobId?: string;
|
|
552
|
+
JobId?: string | undefined;
|
|
553
553
|
}
|
|
554
554
|
export interface GetAccessKeyLastUsedRequest {
|
|
555
555
|
AccessKeyId: string | undefined;
|
|
556
556
|
}
|
|
557
557
|
export interface GetAccessKeyLastUsedResponse {
|
|
558
|
-
UserName?: string;
|
|
559
|
-
AccessKeyLastUsed?: AccessKeyLastUsed;
|
|
558
|
+
UserName?: string | undefined;
|
|
559
|
+
AccessKeyLastUsed?: AccessKeyLastUsed | undefined;
|
|
560
560
|
}
|
|
561
561
|
export declare const EntityType: {
|
|
562
562
|
readonly AWSManagedPolicy: "AWSManagedPolicy";
|
|
@@ -567,82 +567,82 @@ export declare const EntityType: {
|
|
|
567
567
|
};
|
|
568
568
|
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
569
569
|
export interface GetAccountAuthorizationDetailsRequest {
|
|
570
|
-
Filter?: EntityType[];
|
|
571
|
-
MaxItems?: number;
|
|
572
|
-
Marker?: string;
|
|
570
|
+
Filter?: EntityType[] | undefined;
|
|
571
|
+
MaxItems?: number | undefined;
|
|
572
|
+
Marker?: string | undefined;
|
|
573
573
|
}
|
|
574
574
|
export interface PolicyDetail {
|
|
575
|
-
PolicyName?: string;
|
|
576
|
-
PolicyDocument?: string;
|
|
575
|
+
PolicyName?: string | undefined;
|
|
576
|
+
PolicyDocument?: string | undefined;
|
|
577
577
|
}
|
|
578
578
|
export interface GroupDetail {
|
|
579
|
-
Path?: string;
|
|
580
|
-
GroupName?: string;
|
|
581
|
-
GroupId?: string;
|
|
582
|
-
Arn?: string;
|
|
583
|
-
CreateDate?: Date;
|
|
584
|
-
GroupPolicyList?: PolicyDetail[];
|
|
585
|
-
AttachedManagedPolicies?: AttachedPolicy[];
|
|
579
|
+
Path?: string | undefined;
|
|
580
|
+
GroupName?: string | undefined;
|
|
581
|
+
GroupId?: string | undefined;
|
|
582
|
+
Arn?: string | undefined;
|
|
583
|
+
CreateDate?: Date | undefined;
|
|
584
|
+
GroupPolicyList?: PolicyDetail[] | undefined;
|
|
585
|
+
AttachedManagedPolicies?: AttachedPolicy[] | undefined;
|
|
586
586
|
}
|
|
587
587
|
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[];
|
|
588
|
+
PolicyName?: string | undefined;
|
|
589
|
+
PolicyId?: string | undefined;
|
|
590
|
+
Arn?: string | undefined;
|
|
591
|
+
Path?: string | undefined;
|
|
592
|
+
DefaultVersionId?: string | undefined;
|
|
593
|
+
AttachmentCount?: number | undefined;
|
|
594
|
+
PermissionsBoundaryUsageCount?: number | undefined;
|
|
595
|
+
IsAttachable?: boolean | undefined;
|
|
596
|
+
Description?: string | undefined;
|
|
597
|
+
CreateDate?: Date | undefined;
|
|
598
|
+
UpdateDate?: Date | undefined;
|
|
599
|
+
PolicyVersionList?: PolicyVersion[] | undefined;
|
|
600
600
|
}
|
|
601
601
|
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;
|
|
602
|
+
Path?: string | undefined;
|
|
603
|
+
RoleName?: string | undefined;
|
|
604
|
+
RoleId?: string | undefined;
|
|
605
|
+
Arn?: string | undefined;
|
|
606
|
+
CreateDate?: Date | undefined;
|
|
607
|
+
AssumeRolePolicyDocument?: string | undefined;
|
|
608
|
+
InstanceProfileList?: InstanceProfile[] | undefined;
|
|
609
|
+
RolePolicyList?: PolicyDetail[] | undefined;
|
|
610
|
+
AttachedManagedPolicies?: AttachedPolicy[] | undefined;
|
|
611
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
612
|
+
Tags?: Tag[] | undefined;
|
|
613
|
+
RoleLastUsed?: RoleLastUsed | undefined;
|
|
614
614
|
}
|
|
615
615
|
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[];
|
|
616
|
+
Path?: string | undefined;
|
|
617
|
+
UserName?: string | undefined;
|
|
618
|
+
UserId?: string | undefined;
|
|
619
|
+
Arn?: string | undefined;
|
|
620
|
+
CreateDate?: Date | undefined;
|
|
621
|
+
UserPolicyList?: PolicyDetail[] | undefined;
|
|
622
|
+
GroupList?: string[] | undefined;
|
|
623
|
+
AttachedManagedPolicies?: AttachedPolicy[] | undefined;
|
|
624
|
+
PermissionsBoundary?: AttachedPermissionsBoundary | undefined;
|
|
625
|
+
Tags?: Tag[] | undefined;
|
|
626
626
|
}
|
|
627
627
|
export interface GetAccountAuthorizationDetailsResponse {
|
|
628
|
-
UserDetailList?: UserDetail[];
|
|
629
|
-
GroupDetailList?: GroupDetail[];
|
|
630
|
-
RoleDetailList?: RoleDetail[];
|
|
631
|
-
Policies?: ManagedPolicyDetail[];
|
|
632
|
-
IsTruncated?: boolean;
|
|
633
|
-
Marker?: string;
|
|
628
|
+
UserDetailList?: UserDetail[] | undefined;
|
|
629
|
+
GroupDetailList?: GroupDetail[] | undefined;
|
|
630
|
+
RoleDetailList?: RoleDetail[] | undefined;
|
|
631
|
+
Policies?: ManagedPolicyDetail[] | undefined;
|
|
632
|
+
IsTruncated?: boolean | undefined;
|
|
633
|
+
Marker?: string | undefined;
|
|
634
634
|
}
|
|
635
635
|
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;
|
|
636
|
+
MinimumPasswordLength?: number | undefined;
|
|
637
|
+
RequireSymbols?: boolean | undefined;
|
|
638
|
+
RequireNumbers?: boolean | undefined;
|
|
639
|
+
RequireUppercaseCharacters?: boolean | undefined;
|
|
640
|
+
RequireLowercaseCharacters?: boolean | undefined;
|
|
641
|
+
AllowUsersToChangePassword?: boolean | undefined;
|
|
642
|
+
ExpirePasswords?: boolean | undefined;
|
|
643
|
+
MaxPasswordAge?: number | undefined;
|
|
644
|
+
PasswordReusePrevention?: number | undefined;
|
|
645
|
+
HardExpiry?: boolean | undefined;
|
|
646
646
|
}
|
|
647
647
|
export interface GetAccountPasswordPolicyResponse {
|
|
648
648
|
PasswordPolicy: PasswordPolicy | undefined;
|
|
@@ -678,17 +678,17 @@ export declare const SummaryKeyType: {
|
|
|
678
678
|
export type SummaryKeyType =
|
|
679
679
|
(typeof SummaryKeyType)[keyof typeof SummaryKeyType];
|
|
680
680
|
export interface GetAccountSummaryResponse {
|
|
681
|
-
SummaryMap?: Partial<Record<SummaryKeyType, number
|
|
681
|
+
SummaryMap?: Partial<Record<SummaryKeyType, number>> | undefined;
|
|
682
682
|
}
|
|
683
683
|
export interface GetContextKeysForCustomPolicyRequest {
|
|
684
684
|
PolicyInputList: string[] | undefined;
|
|
685
685
|
}
|
|
686
686
|
export interface GetContextKeysForPolicyResponse {
|
|
687
|
-
ContextKeyNames?: string[];
|
|
687
|
+
ContextKeyNames?: string[] | undefined;
|
|
688
688
|
}
|
|
689
689
|
export interface GetContextKeysForPrincipalPolicyRequest {
|
|
690
690
|
PolicySourceArn: string | undefined;
|
|
691
|
-
PolicyInputList?: string[];
|
|
691
|
+
PolicyInputList?: string[] | undefined;
|
|
692
692
|
}
|
|
693
693
|
export declare class CredentialReportExpiredException extends __BaseException {
|
|
694
694
|
readonly name: "CredentialReportExpiredException";
|
|
@@ -726,20 +726,20 @@ export declare const ReportFormatType: {
|
|
|
726
726
|
export type ReportFormatType =
|
|
727
727
|
(typeof ReportFormatType)[keyof typeof ReportFormatType];
|
|
728
728
|
export interface GetCredentialReportResponse {
|
|
729
|
-
Content?: Uint8Array;
|
|
730
|
-
ReportFormat?: ReportFormatType;
|
|
731
|
-
GeneratedTime?: Date;
|
|
729
|
+
Content?: Uint8Array | undefined;
|
|
730
|
+
ReportFormat?: ReportFormatType | undefined;
|
|
731
|
+
GeneratedTime?: Date | undefined;
|
|
732
732
|
}
|
|
733
733
|
export interface GetGroupRequest {
|
|
734
734
|
GroupName: string | undefined;
|
|
735
|
-
Marker?: string;
|
|
736
|
-
MaxItems?: number;
|
|
735
|
+
Marker?: string | undefined;
|
|
736
|
+
MaxItems?: number | undefined;
|
|
737
737
|
}
|
|
738
738
|
export interface GetGroupResponse {
|
|
739
739
|
Group: Group | undefined;
|
|
740
740
|
Users: User[] | undefined;
|
|
741
|
-
IsTruncated?: boolean;
|
|
742
|
-
Marker?: string;
|
|
741
|
+
IsTruncated?: boolean | undefined;
|
|
742
|
+
Marker?: string | undefined;
|
|
743
743
|
}
|
|
744
744
|
export interface GetGroupPolicyRequest {
|
|
745
745
|
GroupName: string | undefined;
|
|
@@ -764,23 +764,23 @@ export interface GetLoginProfileResponse {
|
|
|
764
764
|
}
|
|
765
765
|
export interface GetMFADeviceRequest {
|
|
766
766
|
SerialNumber: string | undefined;
|
|
767
|
-
UserName?: string;
|
|
767
|
+
UserName?: string | undefined;
|
|
768
768
|
}
|
|
769
769
|
export interface GetMFADeviceResponse {
|
|
770
|
-
UserName?: string;
|
|
770
|
+
UserName?: string | undefined;
|
|
771
771
|
SerialNumber: string | undefined;
|
|
772
|
-
EnableDate?: Date;
|
|
773
|
-
Certifications?: Record<string, string
|
|
772
|
+
EnableDate?: Date | undefined;
|
|
773
|
+
Certifications?: Record<string, string> | undefined;
|
|
774
774
|
}
|
|
775
775
|
export interface GetOpenIDConnectProviderRequest {
|
|
776
776
|
OpenIDConnectProviderArn: string | undefined;
|
|
777
777
|
}
|
|
778
778
|
export interface GetOpenIDConnectProviderResponse {
|
|
779
|
-
Url?: string;
|
|
780
|
-
ClientIDList?: string[];
|
|
781
|
-
ThumbprintList?: string[];
|
|
782
|
-
CreateDate?: Date;
|
|
783
|
-
Tags?: Tag[];
|
|
779
|
+
Url?: string | undefined;
|
|
780
|
+
ClientIDList?: string[] | undefined;
|
|
781
|
+
ThumbprintList?: string[] | undefined;
|
|
782
|
+
CreateDate?: Date | undefined;
|
|
783
|
+
Tags?: Tag[] | undefined;
|
|
784
784
|
}
|
|
785
785
|
export declare const SortKeyType: {
|
|
786
786
|
readonly LAST_AUTHENTICATED_TIME_ASCENDING: "LAST_AUTHENTICATED_TIME_ASCENDING";
|
|
@@ -791,9 +791,9 @@ export declare const SortKeyType: {
|
|
|
791
791
|
export type SortKeyType = (typeof SortKeyType)[keyof typeof SortKeyType];
|
|
792
792
|
export interface GetOrganizationsAccessReportRequest {
|
|
793
793
|
JobId: string | undefined;
|
|
794
|
-
MaxItems?: number;
|
|
795
|
-
Marker?: string;
|
|
796
|
-
SortKey?: SortKeyType;
|
|
794
|
+
MaxItems?: number | undefined;
|
|
795
|
+
Marker?: string | undefined;
|
|
796
|
+
SortKey?: SortKeyType | undefined;
|
|
797
797
|
}
|
|
798
798
|
export interface ErrorDetails {
|
|
799
799
|
Message: string | undefined;
|
|
@@ -808,26 +808,26 @@ export type JobStatusType = (typeof JobStatusType)[keyof typeof JobStatusType];
|
|
|
808
808
|
export interface GetOrganizationsAccessReportResponse {
|
|
809
809
|
JobStatus: JobStatusType | undefined;
|
|
810
810
|
JobCreationDate: Date | undefined;
|
|
811
|
-
JobCompletionDate?: Date;
|
|
812
|
-
NumberOfServicesAccessible?: number;
|
|
813
|
-
NumberOfServicesNotAccessed?: number;
|
|
814
|
-
AccessDetails?: AccessDetail[];
|
|
815
|
-
IsTruncated?: boolean;
|
|
816
|
-
Marker?: string;
|
|
817
|
-
ErrorDetails?: ErrorDetails;
|
|
811
|
+
JobCompletionDate?: Date | undefined;
|
|
812
|
+
NumberOfServicesAccessible?: number | undefined;
|
|
813
|
+
NumberOfServicesNotAccessed?: number | undefined;
|
|
814
|
+
AccessDetails?: AccessDetail[] | undefined;
|
|
815
|
+
IsTruncated?: boolean | undefined;
|
|
816
|
+
Marker?: string | undefined;
|
|
817
|
+
ErrorDetails?: ErrorDetails | undefined;
|
|
818
818
|
}
|
|
819
819
|
export interface GetPolicyRequest {
|
|
820
820
|
PolicyArn: string | undefined;
|
|
821
821
|
}
|
|
822
822
|
export interface GetPolicyResponse {
|
|
823
|
-
Policy?: Policy;
|
|
823
|
+
Policy?: Policy | undefined;
|
|
824
824
|
}
|
|
825
825
|
export interface GetPolicyVersionRequest {
|
|
826
826
|
PolicyArn: string | undefined;
|
|
827
827
|
VersionId: string | undefined;
|
|
828
828
|
}
|
|
829
829
|
export interface GetPolicyVersionResponse {
|
|
830
|
-
PolicyVersion?: PolicyVersion;
|
|
830
|
+
PolicyVersion?: PolicyVersion | undefined;
|
|
831
831
|
}
|
|
832
832
|
export interface GetRoleRequest {
|
|
833
833
|
RoleName: string | undefined;
|
|
@@ -848,10 +848,10 @@ export interface GetSAMLProviderRequest {
|
|
|
848
848
|
SAMLProviderArn: string | undefined;
|
|
849
849
|
}
|
|
850
850
|
export interface GetSAMLProviderResponse {
|
|
851
|
-
SAMLMetadataDocument?: string;
|
|
852
|
-
CreateDate?: Date;
|
|
853
|
-
ValidUntil?: Date;
|
|
854
|
-
Tags?: Tag[];
|
|
851
|
+
SAMLMetadataDocument?: string | undefined;
|
|
852
|
+
CreateDate?: Date | undefined;
|
|
853
|
+
ValidUntil?: Date | undefined;
|
|
854
|
+
Tags?: Tag[] | undefined;
|
|
855
855
|
}
|
|
856
856
|
export interface GetServerCertificateRequest {
|
|
857
857
|
ServerCertificateName: string | undefined;
|
|
@@ -861,53 +861,53 @@ export interface ServerCertificateMetadata {
|
|
|
861
861
|
ServerCertificateName: string | undefined;
|
|
862
862
|
ServerCertificateId: string | undefined;
|
|
863
863
|
Arn: string | undefined;
|
|
864
|
-
UploadDate?: Date;
|
|
865
|
-
Expiration?: Date;
|
|
864
|
+
UploadDate?: Date | undefined;
|
|
865
|
+
Expiration?: Date | undefined;
|
|
866
866
|
}
|
|
867
867
|
export interface ServerCertificate {
|
|
868
868
|
ServerCertificateMetadata: ServerCertificateMetadata | undefined;
|
|
869
869
|
CertificateBody: string | undefined;
|
|
870
|
-
CertificateChain?: string;
|
|
871
|
-
Tags?: Tag[];
|
|
870
|
+
CertificateChain?: string | undefined;
|
|
871
|
+
Tags?: Tag[] | undefined;
|
|
872
872
|
}
|
|
873
873
|
export interface GetServerCertificateResponse {
|
|
874
874
|
ServerCertificate: ServerCertificate | undefined;
|
|
875
875
|
}
|
|
876
876
|
export interface GetServiceLastAccessedDetailsRequest {
|
|
877
877
|
JobId: string | undefined;
|
|
878
|
-
MaxItems?: number;
|
|
879
|
-
Marker?: string;
|
|
878
|
+
MaxItems?: number | undefined;
|
|
879
|
+
Marker?: string | undefined;
|
|
880
880
|
}
|
|
881
881
|
export interface TrackedActionLastAccessed {
|
|
882
|
-
ActionName?: string;
|
|
883
|
-
LastAccessedEntity?: string;
|
|
884
|
-
LastAccessedTime?: Date;
|
|
885
|
-
LastAccessedRegion?: string;
|
|
882
|
+
ActionName?: string | undefined;
|
|
883
|
+
LastAccessedEntity?: string | undefined;
|
|
884
|
+
LastAccessedTime?: Date | undefined;
|
|
885
|
+
LastAccessedRegion?: string | undefined;
|
|
886
886
|
}
|
|
887
887
|
export interface ServiceLastAccessed {
|
|
888
888
|
ServiceName: string | undefined;
|
|
889
|
-
LastAuthenticated?: Date;
|
|
889
|
+
LastAuthenticated?: Date | undefined;
|
|
890
890
|
ServiceNamespace: string | undefined;
|
|
891
|
-
LastAuthenticatedEntity?: string;
|
|
892
|
-
LastAuthenticatedRegion?: string;
|
|
893
|
-
TotalAuthenticatedEntities?: number;
|
|
894
|
-
TrackedActionsLastAccessed?: TrackedActionLastAccessed[];
|
|
891
|
+
LastAuthenticatedEntity?: string | undefined;
|
|
892
|
+
LastAuthenticatedRegion?: string | undefined;
|
|
893
|
+
TotalAuthenticatedEntities?: number | undefined;
|
|
894
|
+
TrackedActionsLastAccessed?: TrackedActionLastAccessed[] | undefined;
|
|
895
895
|
}
|
|
896
896
|
export interface GetServiceLastAccessedDetailsResponse {
|
|
897
897
|
JobStatus: JobStatusType | undefined;
|
|
898
|
-
JobType?: AccessAdvisorUsageGranularityType;
|
|
898
|
+
JobType?: AccessAdvisorUsageGranularityType | undefined;
|
|
899
899
|
JobCreationDate: Date | undefined;
|
|
900
900
|
ServicesLastAccessed: ServiceLastAccessed[] | undefined;
|
|
901
901
|
JobCompletionDate: Date | undefined;
|
|
902
|
-
IsTruncated?: boolean;
|
|
903
|
-
Marker?: string;
|
|
904
|
-
Error?: ErrorDetails;
|
|
902
|
+
IsTruncated?: boolean | undefined;
|
|
903
|
+
Marker?: string | undefined;
|
|
904
|
+
Error?: ErrorDetails | undefined;
|
|
905
905
|
}
|
|
906
906
|
export interface GetServiceLastAccessedDetailsWithEntitiesRequest {
|
|
907
907
|
JobId: string | undefined;
|
|
908
908
|
ServiceNamespace: string | undefined;
|
|
909
|
-
MaxItems?: number;
|
|
910
|
-
Marker?: string;
|
|
909
|
+
MaxItems?: number | undefined;
|
|
910
|
+
Marker?: string | undefined;
|
|
911
911
|
}
|
|
912
912
|
export declare const PolicyOwnerEntityType: {
|
|
913
913
|
readonly GROUP: "GROUP";
|
|
@@ -921,31 +921,31 @@ export interface EntityInfo {
|
|
|
921
921
|
Name: string | undefined;
|
|
922
922
|
Type: PolicyOwnerEntityType | undefined;
|
|
923
923
|
Id: string | undefined;
|
|
924
|
-
Path?: string;
|
|
924
|
+
Path?: string | undefined;
|
|
925
925
|
}
|
|
926
926
|
export interface EntityDetails {
|
|
927
927
|
EntityInfo: EntityInfo | undefined;
|
|
928
|
-
LastAuthenticated?: Date;
|
|
928
|
+
LastAuthenticated?: Date | undefined;
|
|
929
929
|
}
|
|
930
930
|
export interface GetServiceLastAccessedDetailsWithEntitiesResponse {
|
|
931
931
|
JobStatus: JobStatusType | undefined;
|
|
932
932
|
JobCreationDate: Date | undefined;
|
|
933
933
|
JobCompletionDate: Date | undefined;
|
|
934
934
|
EntityDetailsList: EntityDetails[] | undefined;
|
|
935
|
-
IsTruncated?: boolean;
|
|
936
|
-
Marker?: string;
|
|
937
|
-
Error?: ErrorDetails;
|
|
935
|
+
IsTruncated?: boolean | undefined;
|
|
936
|
+
Marker?: string | undefined;
|
|
937
|
+
Error?: ErrorDetails | undefined;
|
|
938
938
|
}
|
|
939
939
|
export interface GetServiceLinkedRoleDeletionStatusRequest {
|
|
940
940
|
DeletionTaskId: string | undefined;
|
|
941
941
|
}
|
|
942
942
|
export interface RoleUsageType {
|
|
943
|
-
Region?: string;
|
|
944
|
-
Resources?: string[];
|
|
943
|
+
Region?: string | undefined;
|
|
944
|
+
Resources?: string[] | undefined;
|
|
945
945
|
}
|
|
946
946
|
export interface DeletionTaskFailureReasonType {
|
|
947
|
-
Reason?: string;
|
|
948
|
-
RoleUsageList?: RoleUsageType[];
|
|
947
|
+
Reason?: string | undefined;
|
|
948
|
+
RoleUsageList?: RoleUsageType[] | undefined;
|
|
949
949
|
}
|
|
950
950
|
export declare const DeletionTaskStatusType: {
|
|
951
951
|
readonly FAILED: "FAILED";
|
|
@@ -957,7 +957,7 @@ export type DeletionTaskStatusType =
|
|
|
957
957
|
(typeof DeletionTaskStatusType)[keyof typeof DeletionTaskStatusType];
|
|
958
958
|
export interface GetServiceLinkedRoleDeletionStatusResponse {
|
|
959
959
|
Status: DeletionTaskStatusType | undefined;
|
|
960
|
-
Reason?: DeletionTaskFailureReasonType;
|
|
960
|
+
Reason?: DeletionTaskFailureReasonType | undefined;
|
|
961
961
|
}
|
|
962
962
|
export declare const EncodingType: {
|
|
963
963
|
readonly PEM: "PEM";
|
|
@@ -975,10 +975,10 @@ export interface SSHPublicKey {
|
|
|
975
975
|
Fingerprint: string | undefined;
|
|
976
976
|
SSHPublicKeyBody: string | undefined;
|
|
977
977
|
Status: StatusType | undefined;
|
|
978
|
-
UploadDate?: Date;
|
|
978
|
+
UploadDate?: Date | undefined;
|
|
979
979
|
}
|
|
980
980
|
export interface GetSSHPublicKeyResponse {
|
|
981
|
-
SSHPublicKey?: SSHPublicKey;
|
|
981
|
+
SSHPublicKey?: SSHPublicKey | undefined;
|
|
982
982
|
}
|
|
983
983
|
export declare class UnrecognizedPublicKeyEncodingException extends __BaseException {
|
|
984
984
|
readonly name: "UnrecognizedPublicKeyEncodingException";
|
|
@@ -991,7 +991,7 @@ export declare class UnrecognizedPublicKeyEncodingException extends __BaseExcept
|
|
|
991
991
|
);
|
|
992
992
|
}
|
|
993
993
|
export interface GetUserRequest {
|
|
994
|
-
UserName?: string;
|
|
994
|
+
UserName?: string | undefined;
|
|
995
995
|
}
|
|
996
996
|
export interface GetUserResponse {
|
|
997
997
|
User: User | undefined;
|
|
@@ -1006,56 +1006,56 @@ export interface GetUserPolicyResponse {
|
|
|
1006
1006
|
PolicyDocument: string | undefined;
|
|
1007
1007
|
}
|
|
1008
1008
|
export interface ListAccessKeysRequest {
|
|
1009
|
-
UserName?: string;
|
|
1010
|
-
Marker?: string;
|
|
1011
|
-
MaxItems?: number;
|
|
1009
|
+
UserName?: string | undefined;
|
|
1010
|
+
Marker?: string | undefined;
|
|
1011
|
+
MaxItems?: number | undefined;
|
|
1012
1012
|
}
|
|
1013
1013
|
export interface ListAccessKeysResponse {
|
|
1014
1014
|
AccessKeyMetadata: AccessKeyMetadata[] | undefined;
|
|
1015
|
-
IsTruncated?: boolean;
|
|
1016
|
-
Marker?: string;
|
|
1015
|
+
IsTruncated?: boolean | undefined;
|
|
1016
|
+
Marker?: string | undefined;
|
|
1017
1017
|
}
|
|
1018
1018
|
export interface ListAccountAliasesRequest {
|
|
1019
|
-
Marker?: string;
|
|
1020
|
-
MaxItems?: number;
|
|
1019
|
+
Marker?: string | undefined;
|
|
1020
|
+
MaxItems?: number | undefined;
|
|
1021
1021
|
}
|
|
1022
1022
|
export interface ListAccountAliasesResponse {
|
|
1023
1023
|
AccountAliases: string[] | undefined;
|
|
1024
|
-
IsTruncated?: boolean;
|
|
1025
|
-
Marker?: string;
|
|
1024
|
+
IsTruncated?: boolean | undefined;
|
|
1025
|
+
Marker?: string | undefined;
|
|
1026
1026
|
}
|
|
1027
1027
|
export interface ListAttachedGroupPoliciesRequest {
|
|
1028
1028
|
GroupName: string | undefined;
|
|
1029
|
-
PathPrefix?: string;
|
|
1030
|
-
Marker?: string;
|
|
1031
|
-
MaxItems?: number;
|
|
1029
|
+
PathPrefix?: string | undefined;
|
|
1030
|
+
Marker?: string | undefined;
|
|
1031
|
+
MaxItems?: number | undefined;
|
|
1032
1032
|
}
|
|
1033
1033
|
export interface ListAttachedGroupPoliciesResponse {
|
|
1034
|
-
AttachedPolicies?: AttachedPolicy[];
|
|
1035
|
-
IsTruncated?: boolean;
|
|
1036
|
-
Marker?: string;
|
|
1034
|
+
AttachedPolicies?: AttachedPolicy[] | undefined;
|
|
1035
|
+
IsTruncated?: boolean | undefined;
|
|
1036
|
+
Marker?: string | undefined;
|
|
1037
1037
|
}
|
|
1038
1038
|
export interface ListAttachedRolePoliciesRequest {
|
|
1039
1039
|
RoleName: string | undefined;
|
|
1040
|
-
PathPrefix?: string;
|
|
1041
|
-
Marker?: string;
|
|
1042
|
-
MaxItems?: number;
|
|
1040
|
+
PathPrefix?: string | undefined;
|
|
1041
|
+
Marker?: string | undefined;
|
|
1042
|
+
MaxItems?: number | undefined;
|
|
1043
1043
|
}
|
|
1044
1044
|
export interface ListAttachedRolePoliciesResponse {
|
|
1045
|
-
AttachedPolicies?: AttachedPolicy[];
|
|
1046
|
-
IsTruncated?: boolean;
|
|
1047
|
-
Marker?: string;
|
|
1045
|
+
AttachedPolicies?: AttachedPolicy[] | undefined;
|
|
1046
|
+
IsTruncated?: boolean | undefined;
|
|
1047
|
+
Marker?: string | undefined;
|
|
1048
1048
|
}
|
|
1049
1049
|
export interface ListAttachedUserPoliciesRequest {
|
|
1050
1050
|
UserName: string | undefined;
|
|
1051
|
-
PathPrefix?: string;
|
|
1052
|
-
Marker?: string;
|
|
1053
|
-
MaxItems?: number;
|
|
1051
|
+
PathPrefix?: string | undefined;
|
|
1052
|
+
Marker?: string | undefined;
|
|
1053
|
+
MaxItems?: number | undefined;
|
|
1054
1054
|
}
|
|
1055
1055
|
export interface ListAttachedUserPoliciesResponse {
|
|
1056
|
-
AttachedPolicies?: AttachedPolicy[];
|
|
1057
|
-
IsTruncated?: boolean;
|
|
1058
|
-
Marker?: string;
|
|
1056
|
+
AttachedPolicies?: AttachedPolicy[] | undefined;
|
|
1057
|
+
IsTruncated?: boolean | undefined;
|
|
1058
|
+
Marker?: string | undefined;
|
|
1059
1059
|
}
|
|
1060
1060
|
export declare const PolicyUsageType: {
|
|
1061
1061
|
readonly PermissionsBoundary: "PermissionsBoundary";
|
|
@@ -1065,95 +1065,95 @@ export type PolicyUsageType =
|
|
|
1065
1065
|
(typeof PolicyUsageType)[keyof typeof PolicyUsageType];
|
|
1066
1066
|
export interface ListEntitiesForPolicyRequest {
|
|
1067
1067
|
PolicyArn: string | undefined;
|
|
1068
|
-
EntityFilter?: EntityType;
|
|
1069
|
-
PathPrefix?: string;
|
|
1070
|
-
PolicyUsageFilter?: PolicyUsageType;
|
|
1071
|
-
Marker?: string;
|
|
1072
|
-
MaxItems?: number;
|
|
1068
|
+
EntityFilter?: EntityType | undefined;
|
|
1069
|
+
PathPrefix?: string | undefined;
|
|
1070
|
+
PolicyUsageFilter?: PolicyUsageType | undefined;
|
|
1071
|
+
Marker?: string | undefined;
|
|
1072
|
+
MaxItems?: number | undefined;
|
|
1073
1073
|
}
|
|
1074
1074
|
export interface PolicyGroup {
|
|
1075
|
-
GroupName?: string;
|
|
1076
|
-
GroupId?: string;
|
|
1075
|
+
GroupName?: string | undefined;
|
|
1076
|
+
GroupId?: string | undefined;
|
|
1077
1077
|
}
|
|
1078
1078
|
export interface PolicyRole {
|
|
1079
|
-
RoleName?: string;
|
|
1080
|
-
RoleId?: string;
|
|
1079
|
+
RoleName?: string | undefined;
|
|
1080
|
+
RoleId?: string | undefined;
|
|
1081
1081
|
}
|
|
1082
1082
|
export interface PolicyUser {
|
|
1083
|
-
UserName?: string;
|
|
1084
|
-
UserId?: string;
|
|
1083
|
+
UserName?: string | undefined;
|
|
1084
|
+
UserId?: string | undefined;
|
|
1085
1085
|
}
|
|
1086
1086
|
export interface ListEntitiesForPolicyResponse {
|
|
1087
|
-
PolicyGroups?: PolicyGroup[];
|
|
1088
|
-
PolicyUsers?: PolicyUser[];
|
|
1089
|
-
PolicyRoles?: PolicyRole[];
|
|
1090
|
-
IsTruncated?: boolean;
|
|
1091
|
-
Marker?: string;
|
|
1087
|
+
PolicyGroups?: PolicyGroup[] | undefined;
|
|
1088
|
+
PolicyUsers?: PolicyUser[] | undefined;
|
|
1089
|
+
PolicyRoles?: PolicyRole[] | undefined;
|
|
1090
|
+
IsTruncated?: boolean | undefined;
|
|
1091
|
+
Marker?: string | undefined;
|
|
1092
1092
|
}
|
|
1093
1093
|
export interface ListGroupPoliciesRequest {
|
|
1094
1094
|
GroupName: string | undefined;
|
|
1095
|
-
Marker?: string;
|
|
1096
|
-
MaxItems?: number;
|
|
1095
|
+
Marker?: string | undefined;
|
|
1096
|
+
MaxItems?: number | undefined;
|
|
1097
1097
|
}
|
|
1098
1098
|
export interface ListGroupPoliciesResponse {
|
|
1099
1099
|
PolicyNames: string[] | undefined;
|
|
1100
|
-
IsTruncated?: boolean;
|
|
1101
|
-
Marker?: string;
|
|
1100
|
+
IsTruncated?: boolean | undefined;
|
|
1101
|
+
Marker?: string | undefined;
|
|
1102
1102
|
}
|
|
1103
1103
|
export interface ListGroupsRequest {
|
|
1104
|
-
PathPrefix?: string;
|
|
1105
|
-
Marker?: string;
|
|
1106
|
-
MaxItems?: number;
|
|
1104
|
+
PathPrefix?: string | undefined;
|
|
1105
|
+
Marker?: string | undefined;
|
|
1106
|
+
MaxItems?: number | undefined;
|
|
1107
1107
|
}
|
|
1108
1108
|
export interface ListGroupsResponse {
|
|
1109
1109
|
Groups: Group[] | undefined;
|
|
1110
|
-
IsTruncated?: boolean;
|
|
1111
|
-
Marker?: string;
|
|
1110
|
+
IsTruncated?: boolean | undefined;
|
|
1111
|
+
Marker?: string | undefined;
|
|
1112
1112
|
}
|
|
1113
1113
|
export interface ListGroupsForUserRequest {
|
|
1114
1114
|
UserName: string | undefined;
|
|
1115
|
-
Marker?: string;
|
|
1116
|
-
MaxItems?: number;
|
|
1115
|
+
Marker?: string | undefined;
|
|
1116
|
+
MaxItems?: number | undefined;
|
|
1117
1117
|
}
|
|
1118
1118
|
export interface ListGroupsForUserResponse {
|
|
1119
1119
|
Groups: Group[] | undefined;
|
|
1120
|
-
IsTruncated?: boolean;
|
|
1121
|
-
Marker?: string;
|
|
1120
|
+
IsTruncated?: boolean | undefined;
|
|
1121
|
+
Marker?: string | undefined;
|
|
1122
1122
|
}
|
|
1123
1123
|
export interface ListInstanceProfilesRequest {
|
|
1124
|
-
PathPrefix?: string;
|
|
1125
|
-
Marker?: string;
|
|
1126
|
-
MaxItems?: number;
|
|
1124
|
+
PathPrefix?: string | undefined;
|
|
1125
|
+
Marker?: string | undefined;
|
|
1126
|
+
MaxItems?: number | undefined;
|
|
1127
1127
|
}
|
|
1128
1128
|
export interface ListInstanceProfilesResponse {
|
|
1129
1129
|
InstanceProfiles: InstanceProfile[] | undefined;
|
|
1130
|
-
IsTruncated?: boolean;
|
|
1131
|
-
Marker?: string;
|
|
1130
|
+
IsTruncated?: boolean | undefined;
|
|
1131
|
+
Marker?: string | undefined;
|
|
1132
1132
|
}
|
|
1133
1133
|
export interface ListInstanceProfilesForRoleRequest {
|
|
1134
1134
|
RoleName: string | undefined;
|
|
1135
|
-
Marker?: string;
|
|
1136
|
-
MaxItems?: number;
|
|
1135
|
+
Marker?: string | undefined;
|
|
1136
|
+
MaxItems?: number | undefined;
|
|
1137
1137
|
}
|
|
1138
1138
|
export interface ListInstanceProfilesForRoleResponse {
|
|
1139
1139
|
InstanceProfiles: InstanceProfile[] | undefined;
|
|
1140
|
-
IsTruncated?: boolean;
|
|
1141
|
-
Marker?: string;
|
|
1140
|
+
IsTruncated?: boolean | undefined;
|
|
1141
|
+
Marker?: string | undefined;
|
|
1142
1142
|
}
|
|
1143
1143
|
export interface ListInstanceProfileTagsRequest {
|
|
1144
1144
|
InstanceProfileName: string | undefined;
|
|
1145
|
-
Marker?: string;
|
|
1146
|
-
MaxItems?: number;
|
|
1145
|
+
Marker?: string | undefined;
|
|
1146
|
+
MaxItems?: number | undefined;
|
|
1147
1147
|
}
|
|
1148
1148
|
export interface ListInstanceProfileTagsResponse {
|
|
1149
1149
|
Tags: Tag[] | undefined;
|
|
1150
|
-
IsTruncated?: boolean;
|
|
1151
|
-
Marker?: string;
|
|
1150
|
+
IsTruncated?: boolean | undefined;
|
|
1151
|
+
Marker?: string | undefined;
|
|
1152
1152
|
}
|
|
1153
1153
|
export interface ListMFADevicesRequest {
|
|
1154
|
-
UserName?: string;
|
|
1155
|
-
Marker?: string;
|
|
1156
|
-
MaxItems?: number;
|
|
1154
|
+
UserName?: string | undefined;
|
|
1155
|
+
Marker?: string | undefined;
|
|
1156
|
+
MaxItems?: number | undefined;
|
|
1157
1157
|
}
|
|
1158
1158
|
export interface MFADevice {
|
|
1159
1159
|
UserName: string | undefined;
|
|
@@ -1162,35 +1162,35 @@ export interface MFADevice {
|
|
|
1162
1162
|
}
|
|
1163
1163
|
export interface ListMFADevicesResponse {
|
|
1164
1164
|
MFADevices: MFADevice[] | undefined;
|
|
1165
|
-
IsTruncated?: boolean;
|
|
1166
|
-
Marker?: string;
|
|
1165
|
+
IsTruncated?: boolean | undefined;
|
|
1166
|
+
Marker?: string | undefined;
|
|
1167
1167
|
}
|
|
1168
1168
|
export interface ListMFADeviceTagsRequest {
|
|
1169
1169
|
SerialNumber: string | undefined;
|
|
1170
|
-
Marker?: string;
|
|
1171
|
-
MaxItems?: number;
|
|
1170
|
+
Marker?: string | undefined;
|
|
1171
|
+
MaxItems?: number | undefined;
|
|
1172
1172
|
}
|
|
1173
1173
|
export interface ListMFADeviceTagsResponse {
|
|
1174
1174
|
Tags: Tag[] | undefined;
|
|
1175
|
-
IsTruncated?: boolean;
|
|
1176
|
-
Marker?: string;
|
|
1175
|
+
IsTruncated?: boolean | undefined;
|
|
1176
|
+
Marker?: string | undefined;
|
|
1177
1177
|
}
|
|
1178
1178
|
export interface ListOpenIDConnectProvidersRequest {}
|
|
1179
1179
|
export interface OpenIDConnectProviderListEntry {
|
|
1180
|
-
Arn?: string;
|
|
1180
|
+
Arn?: string | undefined;
|
|
1181
1181
|
}
|
|
1182
1182
|
export interface ListOpenIDConnectProvidersResponse {
|
|
1183
|
-
OpenIDConnectProviderList?: OpenIDConnectProviderListEntry[];
|
|
1183
|
+
OpenIDConnectProviderList?: OpenIDConnectProviderListEntry[] | undefined;
|
|
1184
1184
|
}
|
|
1185
1185
|
export interface ListOpenIDConnectProviderTagsRequest {
|
|
1186
1186
|
OpenIDConnectProviderArn: string | undefined;
|
|
1187
|
-
Marker?: string;
|
|
1188
|
-
MaxItems?: number;
|
|
1187
|
+
Marker?: string | undefined;
|
|
1188
|
+
MaxItems?: number | undefined;
|
|
1189
1189
|
}
|
|
1190
1190
|
export interface ListOpenIDConnectProviderTagsResponse {
|
|
1191
1191
|
Tags: Tag[] | undefined;
|
|
1192
|
-
IsTruncated?: boolean;
|
|
1193
|
-
Marker?: string;
|
|
1192
|
+
IsTruncated?: boolean | undefined;
|
|
1193
|
+
Marker?: string | undefined;
|
|
1194
1194
|
}
|
|
1195
1195
|
export declare const PolicyScopeType: {
|
|
1196
1196
|
readonly AWS: "AWS";
|
|
@@ -1200,20 +1200,20 @@ export declare const PolicyScopeType: {
|
|
|
1200
1200
|
export type PolicyScopeType =
|
|
1201
1201
|
(typeof PolicyScopeType)[keyof typeof PolicyScopeType];
|
|
1202
1202
|
export interface ListPoliciesRequest {
|
|
1203
|
-
Scope?: PolicyScopeType;
|
|
1204
|
-
OnlyAttached?: boolean;
|
|
1205
|
-
PathPrefix?: string;
|
|
1206
|
-
PolicyUsageFilter?: PolicyUsageType;
|
|
1207
|
-
Marker?: string;
|
|
1208
|
-
MaxItems?: number;
|
|
1203
|
+
Scope?: PolicyScopeType | undefined;
|
|
1204
|
+
OnlyAttached?: boolean | undefined;
|
|
1205
|
+
PathPrefix?: string | undefined;
|
|
1206
|
+
PolicyUsageFilter?: PolicyUsageType | undefined;
|
|
1207
|
+
Marker?: string | undefined;
|
|
1208
|
+
MaxItems?: number | undefined;
|
|
1209
1209
|
}
|
|
1210
1210
|
export interface ListPoliciesResponse {
|
|
1211
|
-
Policies?: Policy[];
|
|
1212
|
-
IsTruncated?: boolean;
|
|
1213
|
-
Marker?: string;
|
|
1211
|
+
Policies?: Policy[] | undefined;
|
|
1212
|
+
IsTruncated?: boolean | undefined;
|
|
1213
|
+
Marker?: string | undefined;
|
|
1214
1214
|
}
|
|
1215
1215
|
export interface ListPoliciesGrantingServiceAccessRequest {
|
|
1216
|
-
Marker?: string;
|
|
1216
|
+
Marker?: string | undefined;
|
|
1217
1217
|
Arn: string | undefined;
|
|
1218
1218
|
ServiceNamespaces: string[] | undefined;
|
|
1219
1219
|
}
|
|
@@ -1225,113 +1225,113 @@ export type PolicyType = (typeof PolicyType)[keyof typeof PolicyType];
|
|
|
1225
1225
|
export interface PolicyGrantingServiceAccess {
|
|
1226
1226
|
PolicyName: string | undefined;
|
|
1227
1227
|
PolicyType: PolicyType | undefined;
|
|
1228
|
-
PolicyArn?: string;
|
|
1229
|
-
EntityType?: PolicyOwnerEntityType;
|
|
1230
|
-
EntityName?: string;
|
|
1228
|
+
PolicyArn?: string | undefined;
|
|
1229
|
+
EntityType?: PolicyOwnerEntityType | undefined;
|
|
1230
|
+
EntityName?: string | undefined;
|
|
1231
1231
|
}
|
|
1232
1232
|
export interface ListPoliciesGrantingServiceAccessEntry {
|
|
1233
|
-
ServiceNamespace?: string;
|
|
1234
|
-
Policies?: PolicyGrantingServiceAccess[];
|
|
1233
|
+
ServiceNamespace?: string | undefined;
|
|
1234
|
+
Policies?: PolicyGrantingServiceAccess[] | undefined;
|
|
1235
1235
|
}
|
|
1236
1236
|
export interface ListPoliciesGrantingServiceAccessResponse {
|
|
1237
1237
|
PoliciesGrantingServiceAccess:
|
|
1238
1238
|
| ListPoliciesGrantingServiceAccessEntry[]
|
|
1239
1239
|
| undefined;
|
|
1240
|
-
IsTruncated?: boolean;
|
|
1241
|
-
Marker?: string;
|
|
1240
|
+
IsTruncated?: boolean | undefined;
|
|
1241
|
+
Marker?: string | undefined;
|
|
1242
1242
|
}
|
|
1243
1243
|
export interface ListPolicyTagsRequest {
|
|
1244
1244
|
PolicyArn: string | undefined;
|
|
1245
|
-
Marker?: string;
|
|
1246
|
-
MaxItems?: number;
|
|
1245
|
+
Marker?: string | undefined;
|
|
1246
|
+
MaxItems?: number | undefined;
|
|
1247
1247
|
}
|
|
1248
1248
|
export interface ListPolicyTagsResponse {
|
|
1249
1249
|
Tags: Tag[] | undefined;
|
|
1250
|
-
IsTruncated?: boolean;
|
|
1251
|
-
Marker?: string;
|
|
1250
|
+
IsTruncated?: boolean | undefined;
|
|
1251
|
+
Marker?: string | undefined;
|
|
1252
1252
|
}
|
|
1253
1253
|
export interface ListPolicyVersionsRequest {
|
|
1254
1254
|
PolicyArn: string | undefined;
|
|
1255
|
-
Marker?: string;
|
|
1256
|
-
MaxItems?: number;
|
|
1255
|
+
Marker?: string | undefined;
|
|
1256
|
+
MaxItems?: number | undefined;
|
|
1257
1257
|
}
|
|
1258
1258
|
export interface ListPolicyVersionsResponse {
|
|
1259
|
-
Versions?: PolicyVersion[];
|
|
1260
|
-
IsTruncated?: boolean;
|
|
1261
|
-
Marker?: string;
|
|
1259
|
+
Versions?: PolicyVersion[] | undefined;
|
|
1260
|
+
IsTruncated?: boolean | undefined;
|
|
1261
|
+
Marker?: string | undefined;
|
|
1262
1262
|
}
|
|
1263
1263
|
export interface ListRolePoliciesRequest {
|
|
1264
1264
|
RoleName: string | undefined;
|
|
1265
|
-
Marker?: string;
|
|
1266
|
-
MaxItems?: number;
|
|
1265
|
+
Marker?: string | undefined;
|
|
1266
|
+
MaxItems?: number | undefined;
|
|
1267
1267
|
}
|
|
1268
1268
|
export interface ListRolePoliciesResponse {
|
|
1269
1269
|
PolicyNames: string[] | undefined;
|
|
1270
|
-
IsTruncated?: boolean;
|
|
1271
|
-
Marker?: string;
|
|
1270
|
+
IsTruncated?: boolean | undefined;
|
|
1271
|
+
Marker?: string | undefined;
|
|
1272
1272
|
}
|
|
1273
1273
|
export interface ListRolesRequest {
|
|
1274
|
-
PathPrefix?: string;
|
|
1275
|
-
Marker?: string;
|
|
1276
|
-
MaxItems?: number;
|
|
1274
|
+
PathPrefix?: string | undefined;
|
|
1275
|
+
Marker?: string | undefined;
|
|
1276
|
+
MaxItems?: number | undefined;
|
|
1277
1277
|
}
|
|
1278
1278
|
export interface ListRolesResponse {
|
|
1279
1279
|
Roles: Role[] | undefined;
|
|
1280
|
-
IsTruncated?: boolean;
|
|
1281
|
-
Marker?: string;
|
|
1280
|
+
IsTruncated?: boolean | undefined;
|
|
1281
|
+
Marker?: string | undefined;
|
|
1282
1282
|
}
|
|
1283
1283
|
export interface ListRoleTagsRequest {
|
|
1284
1284
|
RoleName: string | undefined;
|
|
1285
|
-
Marker?: string;
|
|
1286
|
-
MaxItems?: number;
|
|
1285
|
+
Marker?: string | undefined;
|
|
1286
|
+
MaxItems?: number | undefined;
|
|
1287
1287
|
}
|
|
1288
1288
|
export interface ListRoleTagsResponse {
|
|
1289
1289
|
Tags: Tag[] | undefined;
|
|
1290
|
-
IsTruncated?: boolean;
|
|
1291
|
-
Marker?: string;
|
|
1290
|
+
IsTruncated?: boolean | undefined;
|
|
1291
|
+
Marker?: string | undefined;
|
|
1292
1292
|
}
|
|
1293
1293
|
export interface ListSAMLProvidersRequest {}
|
|
1294
1294
|
export interface SAMLProviderListEntry {
|
|
1295
|
-
Arn?: string;
|
|
1296
|
-
ValidUntil?: Date;
|
|
1297
|
-
CreateDate?: Date;
|
|
1295
|
+
Arn?: string | undefined;
|
|
1296
|
+
ValidUntil?: Date | undefined;
|
|
1297
|
+
CreateDate?: Date | undefined;
|
|
1298
1298
|
}
|
|
1299
1299
|
export interface ListSAMLProvidersResponse {
|
|
1300
|
-
SAMLProviderList?: SAMLProviderListEntry[];
|
|
1300
|
+
SAMLProviderList?: SAMLProviderListEntry[] | undefined;
|
|
1301
1301
|
}
|
|
1302
1302
|
export interface ListSAMLProviderTagsRequest {
|
|
1303
1303
|
SAMLProviderArn: string | undefined;
|
|
1304
|
-
Marker?: string;
|
|
1305
|
-
MaxItems?: number;
|
|
1304
|
+
Marker?: string | undefined;
|
|
1305
|
+
MaxItems?: number | undefined;
|
|
1306
1306
|
}
|
|
1307
1307
|
export interface ListSAMLProviderTagsResponse {
|
|
1308
1308
|
Tags: Tag[] | undefined;
|
|
1309
|
-
IsTruncated?: boolean;
|
|
1310
|
-
Marker?: string;
|
|
1309
|
+
IsTruncated?: boolean | undefined;
|
|
1310
|
+
Marker?: string | undefined;
|
|
1311
1311
|
}
|
|
1312
1312
|
export interface ListServerCertificatesRequest {
|
|
1313
|
-
PathPrefix?: string;
|
|
1314
|
-
Marker?: string;
|
|
1315
|
-
MaxItems?: number;
|
|
1313
|
+
PathPrefix?: string | undefined;
|
|
1314
|
+
Marker?: string | undefined;
|
|
1315
|
+
MaxItems?: number | undefined;
|
|
1316
1316
|
}
|
|
1317
1317
|
export interface ListServerCertificatesResponse {
|
|
1318
1318
|
ServerCertificateMetadataList: ServerCertificateMetadata[] | undefined;
|
|
1319
|
-
IsTruncated?: boolean;
|
|
1320
|
-
Marker?: string;
|
|
1319
|
+
IsTruncated?: boolean | undefined;
|
|
1320
|
+
Marker?: string | undefined;
|
|
1321
1321
|
}
|
|
1322
1322
|
export interface ListServerCertificateTagsRequest {
|
|
1323
1323
|
ServerCertificateName: string | undefined;
|
|
1324
|
-
Marker?: string;
|
|
1325
|
-
MaxItems?: number;
|
|
1324
|
+
Marker?: string | undefined;
|
|
1325
|
+
MaxItems?: number | undefined;
|
|
1326
1326
|
}
|
|
1327
1327
|
export interface ListServerCertificateTagsResponse {
|
|
1328
1328
|
Tags: Tag[] | undefined;
|
|
1329
|
-
IsTruncated?: boolean;
|
|
1330
|
-
Marker?: string;
|
|
1329
|
+
IsTruncated?: boolean | undefined;
|
|
1330
|
+
Marker?: string | undefined;
|
|
1331
1331
|
}
|
|
1332
1332
|
export interface ListServiceSpecificCredentialsRequest {
|
|
1333
|
-
UserName?: string;
|
|
1334
|
-
ServiceName?: string;
|
|
1333
|
+
UserName?: string | undefined;
|
|
1334
|
+
ServiceName?: string | undefined;
|
|
1335
1335
|
}
|
|
1336
1336
|
export interface ServiceSpecificCredentialMetadata {
|
|
1337
1337
|
UserName: string | undefined;
|
|
@@ -1342,29 +1342,29 @@ export interface ServiceSpecificCredentialMetadata {
|
|
|
1342
1342
|
ServiceName: string | undefined;
|
|
1343
1343
|
}
|
|
1344
1344
|
export interface ListServiceSpecificCredentialsResponse {
|
|
1345
|
-
ServiceSpecificCredentials?: ServiceSpecificCredentialMetadata[];
|
|
1345
|
+
ServiceSpecificCredentials?: ServiceSpecificCredentialMetadata[] | undefined;
|
|
1346
1346
|
}
|
|
1347
1347
|
export interface ListSigningCertificatesRequest {
|
|
1348
|
-
UserName?: string;
|
|
1349
|
-
Marker?: string;
|
|
1350
|
-
MaxItems?: number;
|
|
1348
|
+
UserName?: string | undefined;
|
|
1349
|
+
Marker?: string | undefined;
|
|
1350
|
+
MaxItems?: number | undefined;
|
|
1351
1351
|
}
|
|
1352
1352
|
export interface SigningCertificate {
|
|
1353
1353
|
UserName: string | undefined;
|
|
1354
1354
|
CertificateId: string | undefined;
|
|
1355
1355
|
CertificateBody: string | undefined;
|
|
1356
1356
|
Status: StatusType | undefined;
|
|
1357
|
-
UploadDate?: Date;
|
|
1357
|
+
UploadDate?: Date | undefined;
|
|
1358
1358
|
}
|
|
1359
1359
|
export interface ListSigningCertificatesResponse {
|
|
1360
1360
|
Certificates: SigningCertificate[] | undefined;
|
|
1361
|
-
IsTruncated?: boolean;
|
|
1362
|
-
Marker?: string;
|
|
1361
|
+
IsTruncated?: boolean | undefined;
|
|
1362
|
+
Marker?: string | undefined;
|
|
1363
1363
|
}
|
|
1364
1364
|
export interface ListSSHPublicKeysRequest {
|
|
1365
|
-
UserName?: string;
|
|
1366
|
-
Marker?: string;
|
|
1367
|
-
MaxItems?: number;
|
|
1365
|
+
UserName?: string | undefined;
|
|
1366
|
+
Marker?: string | undefined;
|
|
1367
|
+
MaxItems?: number | undefined;
|
|
1368
1368
|
}
|
|
1369
1369
|
export interface SSHPublicKeyMetadata {
|
|
1370
1370
|
UserName: string | undefined;
|
|
@@ -1373,49 +1373,49 @@ export interface SSHPublicKeyMetadata {
|
|
|
1373
1373
|
UploadDate: Date | undefined;
|
|
1374
1374
|
}
|
|
1375
1375
|
export interface ListSSHPublicKeysResponse {
|
|
1376
|
-
SSHPublicKeys?: SSHPublicKeyMetadata[];
|
|
1377
|
-
IsTruncated?: boolean;
|
|
1378
|
-
Marker?: string;
|
|
1376
|
+
SSHPublicKeys?: SSHPublicKeyMetadata[] | undefined;
|
|
1377
|
+
IsTruncated?: boolean | undefined;
|
|
1378
|
+
Marker?: string | undefined;
|
|
1379
1379
|
}
|
|
1380
1380
|
export interface ListUserPoliciesRequest {
|
|
1381
1381
|
UserName: string | undefined;
|
|
1382
|
-
Marker?: string;
|
|
1383
|
-
MaxItems?: number;
|
|
1382
|
+
Marker?: string | undefined;
|
|
1383
|
+
MaxItems?: number | undefined;
|
|
1384
1384
|
}
|
|
1385
1385
|
export interface ListUserPoliciesResponse {
|
|
1386
1386
|
PolicyNames: string[] | undefined;
|
|
1387
|
-
IsTruncated?: boolean;
|
|
1388
|
-
Marker?: string;
|
|
1387
|
+
IsTruncated?: boolean | undefined;
|
|
1388
|
+
Marker?: string | undefined;
|
|
1389
1389
|
}
|
|
1390
1390
|
export interface ListUsersRequest {
|
|
1391
|
-
PathPrefix?: string;
|
|
1392
|
-
Marker?: string;
|
|
1393
|
-
MaxItems?: number;
|
|
1391
|
+
PathPrefix?: string | undefined;
|
|
1392
|
+
Marker?: string | undefined;
|
|
1393
|
+
MaxItems?: number | undefined;
|
|
1394
1394
|
}
|
|
1395
1395
|
export interface ListUsersResponse {
|
|
1396
1396
|
Users: User[] | undefined;
|
|
1397
|
-
IsTruncated?: boolean;
|
|
1398
|
-
Marker?: string;
|
|
1397
|
+
IsTruncated?: boolean | undefined;
|
|
1398
|
+
Marker?: string | undefined;
|
|
1399
1399
|
}
|
|
1400
1400
|
export interface ListUserTagsRequest {
|
|
1401
1401
|
UserName: string | undefined;
|
|
1402
|
-
Marker?: string;
|
|
1403
|
-
MaxItems?: number;
|
|
1402
|
+
Marker?: string | undefined;
|
|
1403
|
+
MaxItems?: number | undefined;
|
|
1404
1404
|
}
|
|
1405
1405
|
export interface ListUserTagsResponse {
|
|
1406
1406
|
Tags: Tag[] | undefined;
|
|
1407
|
-
IsTruncated?: boolean;
|
|
1408
|
-
Marker?: string;
|
|
1407
|
+
IsTruncated?: boolean | undefined;
|
|
1408
|
+
Marker?: string | undefined;
|
|
1409
1409
|
}
|
|
1410
1410
|
export interface ListVirtualMFADevicesRequest {
|
|
1411
|
-
AssignmentStatus?: AssignmentStatusType;
|
|
1412
|
-
Marker?: string;
|
|
1413
|
-
MaxItems?: number;
|
|
1411
|
+
AssignmentStatus?: AssignmentStatusType | undefined;
|
|
1412
|
+
Marker?: string | undefined;
|
|
1413
|
+
MaxItems?: number | undefined;
|
|
1414
1414
|
}
|
|
1415
1415
|
export interface ListVirtualMFADevicesResponse {
|
|
1416
1416
|
VirtualMFADevices: VirtualMFADevice[] | undefined;
|
|
1417
|
-
IsTruncated?: boolean;
|
|
1418
|
-
Marker?: string;
|
|
1417
|
+
IsTruncated?: boolean | undefined;
|
|
1418
|
+
Marker?: string | undefined;
|
|
1419
1419
|
}
|
|
1420
1420
|
export interface PutGroupPolicyRequest {
|
|
1421
1421
|
GroupName: string | undefined;
|
|
@@ -1453,11 +1453,11 @@ export interface RemoveUserFromGroupRequest {
|
|
|
1453
1453
|
UserName: string | undefined;
|
|
1454
1454
|
}
|
|
1455
1455
|
export interface ResetServiceSpecificCredentialRequest {
|
|
1456
|
-
UserName?: string;
|
|
1456
|
+
UserName?: string | undefined;
|
|
1457
1457
|
ServiceSpecificCredentialId: string | undefined;
|
|
1458
1458
|
}
|
|
1459
1459
|
export interface ResetServiceSpecificCredentialResponse {
|
|
1460
|
-
ServiceSpecificCredential?: ServiceSpecificCredential;
|
|
1460
|
+
ServiceSpecificCredential?: ServiceSpecificCredential | undefined;
|
|
1461
1461
|
}
|
|
1462
1462
|
export interface ResyncMFADeviceRequest {
|
|
1463
1463
|
UserName: string | undefined;
|
|
@@ -1502,22 +1502,22 @@ export declare const ContextKeyTypeEnum: {
|
|
|
1502
1502
|
export type ContextKeyTypeEnum =
|
|
1503
1503
|
(typeof ContextKeyTypeEnum)[keyof typeof ContextKeyTypeEnum];
|
|
1504
1504
|
export interface ContextEntry {
|
|
1505
|
-
ContextKeyName?: string;
|
|
1506
|
-
ContextKeyValues?: string[];
|
|
1507
|
-
ContextKeyType?: ContextKeyTypeEnum;
|
|
1505
|
+
ContextKeyName?: string | undefined;
|
|
1506
|
+
ContextKeyValues?: string[] | undefined;
|
|
1507
|
+
ContextKeyType?: ContextKeyTypeEnum | undefined;
|
|
1508
1508
|
}
|
|
1509
1509
|
export interface SimulateCustomPolicyRequest {
|
|
1510
1510
|
PolicyInputList: string[] | undefined;
|
|
1511
|
-
PermissionsBoundaryPolicyInputList?: string[];
|
|
1511
|
+
PermissionsBoundaryPolicyInputList?: string[] | undefined;
|
|
1512
1512
|
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;
|
|
1513
|
+
ResourceArns?: string[] | undefined;
|
|
1514
|
+
ResourcePolicy?: string | undefined;
|
|
1515
|
+
ResourceOwner?: string | undefined;
|
|
1516
|
+
CallerArn?: string | undefined;
|
|
1517
|
+
ContextEntries?: ContextEntry[] | undefined;
|
|
1518
|
+
ResourceHandlingOption?: string | undefined;
|
|
1519
|
+
MaxItems?: number | undefined;
|
|
1520
|
+
Marker?: string | undefined;
|
|
1521
1521
|
}
|
|
1522
1522
|
export declare const PolicyEvaluationDecisionType: {
|
|
1523
1523
|
readonly ALLOWED: "allowed";
|
|
@@ -1527,8 +1527,8 @@ export declare const PolicyEvaluationDecisionType: {
|
|
|
1527
1527
|
export type PolicyEvaluationDecisionType =
|
|
1528
1528
|
(typeof PolicyEvaluationDecisionType)[keyof typeof PolicyEvaluationDecisionType];
|
|
1529
1529
|
export interface Position {
|
|
1530
|
-
Line?: number;
|
|
1531
|
-
Column?: number;
|
|
1530
|
+
Line?: number | undefined;
|
|
1531
|
+
Column?: number | undefined;
|
|
1532
1532
|
}
|
|
1533
1533
|
export declare const PolicySourceType: {
|
|
1534
1534
|
readonly AWS_MANAGED: "aws-managed";
|
|
@@ -1542,54 +1542,62 @@ export declare const PolicySourceType: {
|
|
|
1542
1542
|
export type PolicySourceType =
|
|
1543
1543
|
(typeof PolicySourceType)[keyof typeof PolicySourceType];
|
|
1544
1544
|
export interface Statement {
|
|
1545
|
-
SourcePolicyId?: string;
|
|
1546
|
-
SourcePolicyType?: PolicySourceType;
|
|
1547
|
-
StartPosition?: Position;
|
|
1548
|
-
EndPosition?: Position;
|
|
1545
|
+
SourcePolicyId?: string | undefined;
|
|
1546
|
+
SourcePolicyType?: PolicySourceType | undefined;
|
|
1547
|
+
StartPosition?: Position | undefined;
|
|
1548
|
+
EndPosition?: Position | undefined;
|
|
1549
1549
|
}
|
|
1550
1550
|
export interface OrganizationsDecisionDetail {
|
|
1551
|
-
AllowedByOrganizations?: boolean;
|
|
1551
|
+
AllowedByOrganizations?: boolean | undefined;
|
|
1552
1552
|
}
|
|
1553
1553
|
export interface PermissionsBoundaryDecisionDetail {
|
|
1554
|
-
AllowedByPermissionsBoundary?: boolean;
|
|
1554
|
+
AllowedByPermissionsBoundary?: boolean | undefined;
|
|
1555
1555
|
}
|
|
1556
1556
|
export interface ResourceSpecificResult {
|
|
1557
1557
|
EvalResourceName: string | undefined;
|
|
1558
1558
|
EvalResourceDecision: PolicyEvaluationDecisionType | undefined;
|
|
1559
|
-
MatchedStatements?: Statement[];
|
|
1560
|
-
MissingContextValues?: string[];
|
|
1561
|
-
EvalDecisionDetails?:
|
|
1562
|
-
|
|
1559
|
+
MatchedStatements?: Statement[] | undefined;
|
|
1560
|
+
MissingContextValues?: string[] | undefined;
|
|
1561
|
+
EvalDecisionDetails?:
|
|
1562
|
+
| Record<string, PolicyEvaluationDecisionType>
|
|
1563
|
+
| undefined;
|
|
1564
|
+
PermissionsBoundaryDecisionDetail?:
|
|
1565
|
+
| PermissionsBoundaryDecisionDetail
|
|
1566
|
+
| undefined;
|
|
1563
1567
|
}
|
|
1564
1568
|
export interface EvaluationResult {
|
|
1565
1569
|
EvalActionName: string | undefined;
|
|
1566
|
-
EvalResourceName?: string;
|
|
1570
|
+
EvalResourceName?: string | undefined;
|
|
1567
1571
|
EvalDecision: PolicyEvaluationDecisionType | undefined;
|
|
1568
|
-
MatchedStatements?: Statement[];
|
|
1569
|
-
MissingContextValues?: string[];
|
|
1570
|
-
OrganizationsDecisionDetail?: OrganizationsDecisionDetail;
|
|
1571
|
-
PermissionsBoundaryDecisionDetail?:
|
|
1572
|
-
|
|
1573
|
-
|
|
1572
|
+
MatchedStatements?: Statement[] | undefined;
|
|
1573
|
+
MissingContextValues?: string[] | undefined;
|
|
1574
|
+
OrganizationsDecisionDetail?: OrganizationsDecisionDetail | undefined;
|
|
1575
|
+
PermissionsBoundaryDecisionDetail?:
|
|
1576
|
+
| PermissionsBoundaryDecisionDetail
|
|
1577
|
+
| undefined;
|
|
1578
|
+
EvalDecisionDetails?:
|
|
1579
|
+
| Record<string, PolicyEvaluationDecisionType>
|
|
1580
|
+
| undefined;
|
|
1581
|
+
ResourceSpecificResults?: ResourceSpecificResult[] | undefined;
|
|
1574
1582
|
}
|
|
1575
1583
|
export interface SimulatePolicyResponse {
|
|
1576
|
-
EvaluationResults?: EvaluationResult[];
|
|
1577
|
-
IsTruncated?: boolean;
|
|
1578
|
-
Marker?: string;
|
|
1584
|
+
EvaluationResults?: EvaluationResult[] | undefined;
|
|
1585
|
+
IsTruncated?: boolean | undefined;
|
|
1586
|
+
Marker?: string | undefined;
|
|
1579
1587
|
}
|
|
1580
1588
|
export interface SimulatePrincipalPolicyRequest {
|
|
1581
1589
|
PolicySourceArn: string | undefined;
|
|
1582
|
-
PolicyInputList?: string[];
|
|
1583
|
-
PermissionsBoundaryPolicyInputList?: string[];
|
|
1590
|
+
PolicyInputList?: string[] | undefined;
|
|
1591
|
+
PermissionsBoundaryPolicyInputList?: string[] | undefined;
|
|
1584
1592
|
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
|
+
ResourceArns?: string[] | undefined;
|
|
1594
|
+
ResourcePolicy?: string | undefined;
|
|
1595
|
+
ResourceOwner?: string | undefined;
|
|
1596
|
+
CallerArn?: string | undefined;
|
|
1597
|
+
ContextEntries?: ContextEntry[] | undefined;
|
|
1598
|
+
ResourceHandlingOption?: string | undefined;
|
|
1599
|
+
MaxItems?: number | undefined;
|
|
1600
|
+
Marker?: string | undefined;
|
|
1593
1601
|
}
|
|
1594
1602
|
export interface TagInstanceProfileRequest {
|
|
1595
1603
|
InstanceProfileName: string | undefined;
|