@aws-sdk/client-sso-admin 3.295.0 → 3.297.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/dist-types/SSOAdmin.d.ts +38 -0
- package/dist-types/SSOAdminClient.d.ts +24 -4
- package/dist-types/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/AttachManagedPolicyToPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/CreateAccountAssignmentCommand.d.ts +16 -0
- package/dist-types/commands/CreateInstanceAccessControlAttributeConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreatePermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAccountAssignmentCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInlinePolicyFromPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeletePermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DeletePermissionsBoundaryFromPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountAssignmentCreationStatusCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountAssignmentDeletionStatusCommand.d.ts +16 -0
- package/dist-types/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribePermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DescribePermissionSetProvisioningStatusCommand.d.ts +16 -0
- package/dist-types/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/DetachManagedPolicyFromPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/GetInlinePolicyForPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/GetPermissionsBoundaryForPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountAssignmentCreationStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountAssignmentDeletionStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountAssignmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListAccountsForProvisionedPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/ListInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListManagedPoliciesInPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionSetProvisioningStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionSetsCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionSetsProvisionedToAccountCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ProvisionPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/PutInlinePolicyToPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/PutPermissionsBoundaryToPermissionSetCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePermissionSetCommand.d.ts +16 -0
- package/dist-types/models/SSOAdminServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +262 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAccountAssignmentCreationStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAccountAssignmentDeletionStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAccountAssignmentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAccountsForProvisionedPermissionSetPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCustomerManagedPolicyReferencesInPermissionSetPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListManagedPoliciesInPermissionSetPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionSetProvisioningStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionSetsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionSetsProvisionedToAccountPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { SSOAdminServiceException as __BaseException } from "./SSOAdminServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>The value used for mapping a specified attribute to an identity source. For more
|
|
5
6
|
* information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/attributemappingsconcept.html">Attribute mappings</a>
|
|
6
7
|
* in the <i>IAM Identity Center User Guide</i>.</p>
|
|
@@ -12,6 +13,7 @@ export interface AccessControlAttributeValue {
|
|
|
12
13
|
Source: string[] | undefined;
|
|
13
14
|
}
|
|
14
15
|
/**
|
|
16
|
+
* @public
|
|
15
17
|
* <p>These are IAM Identity Center identity store attributes that you can configure for use in
|
|
16
18
|
* attributes-based access control (ABAC). You can create permissions policies that determine who
|
|
17
19
|
* can access your AWS resources based upon the configured attribute values. When you enable
|
|
@@ -31,6 +33,7 @@ export interface AccessControlAttribute {
|
|
|
31
33
|
Value: AccessControlAttributeValue | undefined;
|
|
32
34
|
}
|
|
33
35
|
/**
|
|
36
|
+
* @public
|
|
34
37
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
35
38
|
*/
|
|
36
39
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -42,11 +45,15 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
42
45
|
*/
|
|
43
46
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
44
47
|
}
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
45
51
|
export declare enum PrincipalType {
|
|
46
52
|
GROUP = "GROUP",
|
|
47
53
|
USER = "USER"
|
|
48
54
|
}
|
|
49
55
|
/**
|
|
56
|
+
* @public
|
|
50
57
|
* <p>The assignment that indicates a principal's limited access to a specified AWS account
|
|
51
58
|
* with a specified permission set.</p>
|
|
52
59
|
* <note>
|
|
@@ -73,15 +80,22 @@ export interface AccountAssignment {
|
|
|
73
80
|
*/
|
|
74
81
|
PrincipalId?: string;
|
|
75
82
|
}
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
76
86
|
export declare enum StatusValues {
|
|
77
87
|
FAILED = "FAILED",
|
|
78
88
|
IN_PROGRESS = "IN_PROGRESS",
|
|
79
89
|
SUCCEEDED = "SUCCEEDED"
|
|
80
90
|
}
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
81
94
|
export declare enum TargetType {
|
|
82
95
|
AWS_ACCOUNT = "AWS_ACCOUNT"
|
|
83
96
|
}
|
|
84
97
|
/**
|
|
98
|
+
* @public
|
|
85
99
|
* <p>The status of the creation or deletion operation of an assignment that a principal needs
|
|
86
100
|
* to access an account.</p>
|
|
87
101
|
*/
|
|
@@ -126,6 +140,7 @@ export interface AccountAssignmentOperationStatus {
|
|
|
126
140
|
CreatedDate?: Date;
|
|
127
141
|
}
|
|
128
142
|
/**
|
|
143
|
+
* @public
|
|
129
144
|
* <p>Provides information about the <a>AccountAssignment</a> creation
|
|
130
145
|
* request.</p>
|
|
131
146
|
*/
|
|
@@ -145,6 +160,7 @@ export interface AccountAssignmentOperationStatusMetadata {
|
|
|
145
160
|
CreatedDate?: Date;
|
|
146
161
|
}
|
|
147
162
|
/**
|
|
163
|
+
* @public
|
|
148
164
|
* <p>Specifies the name and path of a customer managed policy. You must have an IAM policy that matches the name and path in each AWS account where you want to deploy your permission set.</p>
|
|
149
165
|
*/
|
|
150
166
|
export interface CustomerManagedPolicyReference {
|
|
@@ -158,6 +174,9 @@ export interface CustomerManagedPolicyReference {
|
|
|
158
174
|
*/
|
|
159
175
|
Path?: string;
|
|
160
176
|
}
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
161
180
|
export interface AttachCustomerManagedPolicyReferenceToPermissionSetRequest {
|
|
162
181
|
/**
|
|
163
182
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. </p>
|
|
@@ -172,9 +191,13 @@ export interface AttachCustomerManagedPolicyReferenceToPermissionSetRequest {
|
|
|
172
191
|
*/
|
|
173
192
|
CustomerManagedPolicyReference: CustomerManagedPolicyReference | undefined;
|
|
174
193
|
}
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
175
197
|
export interface AttachCustomerManagedPolicyReferenceToPermissionSetResponse {
|
|
176
198
|
}
|
|
177
199
|
/**
|
|
200
|
+
* @public
|
|
178
201
|
* <p>Occurs when a conflict with a previous successful write is detected. This generally occurs
|
|
179
202
|
* when the previous write did not have time to propagate to the host serving the current
|
|
180
203
|
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
@@ -190,6 +213,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
190
213
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
191
214
|
}
|
|
192
215
|
/**
|
|
216
|
+
* @public
|
|
193
217
|
* <p>The request processing has failed because of an unknown error, exception, or failure with
|
|
194
218
|
* an internal server.</p>
|
|
195
219
|
*/
|
|
@@ -203,6 +227,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
203
227
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
204
228
|
}
|
|
205
229
|
/**
|
|
230
|
+
* @public
|
|
206
231
|
* <p>Indicates that a requested resource is not found.</p>
|
|
207
232
|
*/
|
|
208
233
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -215,6 +240,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
215
240
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
216
241
|
}
|
|
217
242
|
/**
|
|
243
|
+
* @public
|
|
218
244
|
* <p>Indicates that the principal has crossed the permitted number of resources that can be
|
|
219
245
|
* created.</p>
|
|
220
246
|
*/
|
|
@@ -228,6 +254,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
228
254
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
229
255
|
}
|
|
230
256
|
/**
|
|
257
|
+
* @public
|
|
231
258
|
* <p>Indicates that the principal has crossed the throttling limits of the API
|
|
232
259
|
* operations.</p>
|
|
233
260
|
*/
|
|
@@ -241,6 +268,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
241
268
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
242
269
|
}
|
|
243
270
|
/**
|
|
271
|
+
* @public
|
|
244
272
|
* <p>The request failed because it contains a syntax error.</p>
|
|
245
273
|
*/
|
|
246
274
|
export declare class ValidationException extends __BaseException {
|
|
@@ -253,6 +281,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
253
281
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
254
282
|
}
|
|
255
283
|
/**
|
|
284
|
+
* @public
|
|
256
285
|
* <p>A structure that stores the details of the AWS managed policy.</p>
|
|
257
286
|
*/
|
|
258
287
|
export interface AttachedManagedPolicy {
|
|
@@ -266,6 +295,9 @@ export interface AttachedManagedPolicy {
|
|
|
266
295
|
*/
|
|
267
296
|
Arn?: string;
|
|
268
297
|
}
|
|
298
|
+
/**
|
|
299
|
+
* @public
|
|
300
|
+
*/
|
|
269
301
|
export interface AttachManagedPolicyToPermissionSetRequest {
|
|
270
302
|
/**
|
|
271
303
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -282,8 +314,14 @@ export interface AttachManagedPolicyToPermissionSetRequest {
|
|
|
282
314
|
*/
|
|
283
315
|
ManagedPolicyArn: string | undefined;
|
|
284
316
|
}
|
|
317
|
+
/**
|
|
318
|
+
* @public
|
|
319
|
+
*/
|
|
285
320
|
export interface AttachManagedPolicyToPermissionSetResponse {
|
|
286
321
|
}
|
|
322
|
+
/**
|
|
323
|
+
* @public
|
|
324
|
+
*/
|
|
287
325
|
export interface CreateAccountAssignmentRequest {
|
|
288
326
|
/**
|
|
289
327
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -312,6 +350,9 @@ export interface CreateAccountAssignmentRequest {
|
|
|
312
350
|
*/
|
|
313
351
|
PrincipalId: string | undefined;
|
|
314
352
|
}
|
|
353
|
+
/**
|
|
354
|
+
* @public
|
|
355
|
+
*/
|
|
315
356
|
export interface CreateAccountAssignmentResponse {
|
|
316
357
|
/**
|
|
317
358
|
* <p>The status object for the account assignment creation operation.</p>
|
|
@@ -319,6 +360,7 @@ export interface CreateAccountAssignmentResponse {
|
|
|
319
360
|
AccountAssignmentCreationStatus?: AccountAssignmentOperationStatus;
|
|
320
361
|
}
|
|
321
362
|
/**
|
|
363
|
+
* @public
|
|
322
364
|
* <p>Specifies the attributes to add to your attribute-based access control (ABAC)
|
|
323
365
|
* configuration.</p>
|
|
324
366
|
*/
|
|
@@ -329,6 +371,9 @@ export interface InstanceAccessControlAttributeConfiguration {
|
|
|
329
371
|
*/
|
|
330
372
|
AccessControlAttributes: AccessControlAttribute[] | undefined;
|
|
331
373
|
}
|
|
374
|
+
/**
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
332
377
|
export interface CreateInstanceAccessControlAttributeConfigurationRequest {
|
|
333
378
|
/**
|
|
334
379
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed.</p>
|
|
@@ -343,9 +388,13 @@ export interface CreateInstanceAccessControlAttributeConfigurationRequest {
|
|
|
343
388
|
*/
|
|
344
389
|
InstanceAccessControlAttributeConfiguration: InstanceAccessControlAttributeConfiguration | undefined;
|
|
345
390
|
}
|
|
391
|
+
/**
|
|
392
|
+
* @public
|
|
393
|
+
*/
|
|
346
394
|
export interface CreateInstanceAccessControlAttributeConfigurationResponse {
|
|
347
395
|
}
|
|
348
396
|
/**
|
|
397
|
+
* @public
|
|
349
398
|
* <p>A set of key-value pairs that are used to manage the resource. Tags can only be applied to
|
|
350
399
|
* permission sets and cannot be applied to corresponding roles that IAM Identity Center creates in AWS
|
|
351
400
|
* accounts.</p>
|
|
@@ -360,6 +409,9 @@ export interface Tag {
|
|
|
360
409
|
*/
|
|
361
410
|
Value: string | undefined;
|
|
362
411
|
}
|
|
412
|
+
/**
|
|
413
|
+
* @public
|
|
414
|
+
*/
|
|
363
415
|
export interface CreatePermissionSetRequest {
|
|
364
416
|
/**
|
|
365
417
|
* <p>The name of the <a>PermissionSet</a>.</p>
|
|
@@ -390,6 +442,7 @@ export interface CreatePermissionSetRequest {
|
|
|
390
442
|
Tags?: Tag[];
|
|
391
443
|
}
|
|
392
444
|
/**
|
|
445
|
+
* @public
|
|
393
446
|
* <p>An entity that contains IAM policies.</p>
|
|
394
447
|
*/
|
|
395
448
|
export interface PermissionSet {
|
|
@@ -421,12 +474,18 @@ export interface PermissionSet {
|
|
|
421
474
|
*/
|
|
422
475
|
RelayState?: string;
|
|
423
476
|
}
|
|
477
|
+
/**
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
424
480
|
export interface CreatePermissionSetResponse {
|
|
425
481
|
/**
|
|
426
482
|
* <p>Defines the level of access on an AWS account.</p>
|
|
427
483
|
*/
|
|
428
484
|
PermissionSet?: PermissionSet;
|
|
429
485
|
}
|
|
486
|
+
/**
|
|
487
|
+
* @public
|
|
488
|
+
*/
|
|
430
489
|
export interface DeleteAccountAssignmentRequest {
|
|
431
490
|
/**
|
|
432
491
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -454,12 +513,18 @@ export interface DeleteAccountAssignmentRequest {
|
|
|
454
513
|
*/
|
|
455
514
|
PrincipalId: string | undefined;
|
|
456
515
|
}
|
|
516
|
+
/**
|
|
517
|
+
* @public
|
|
518
|
+
*/
|
|
457
519
|
export interface DeleteAccountAssignmentResponse {
|
|
458
520
|
/**
|
|
459
521
|
* <p>The status object for the account assignment deletion operation.</p>
|
|
460
522
|
*/
|
|
461
523
|
AccountAssignmentDeletionStatus?: AccountAssignmentOperationStatus;
|
|
462
524
|
}
|
|
525
|
+
/**
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
463
528
|
export interface DeleteInlinePolicyFromPermissionSetRequest {
|
|
464
529
|
/**
|
|
465
530
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -471,16 +536,28 @@ export interface DeleteInlinePolicyFromPermissionSetRequest {
|
|
|
471
536
|
*/
|
|
472
537
|
PermissionSetArn: string | undefined;
|
|
473
538
|
}
|
|
539
|
+
/**
|
|
540
|
+
* @public
|
|
541
|
+
*/
|
|
474
542
|
export interface DeleteInlinePolicyFromPermissionSetResponse {
|
|
475
543
|
}
|
|
544
|
+
/**
|
|
545
|
+
* @public
|
|
546
|
+
*/
|
|
476
547
|
export interface DeleteInstanceAccessControlAttributeConfigurationRequest {
|
|
477
548
|
/**
|
|
478
549
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed.</p>
|
|
479
550
|
*/
|
|
480
551
|
InstanceArn: string | undefined;
|
|
481
552
|
}
|
|
553
|
+
/**
|
|
554
|
+
* @public
|
|
555
|
+
*/
|
|
482
556
|
export interface DeleteInstanceAccessControlAttributeConfigurationResponse {
|
|
483
557
|
}
|
|
558
|
+
/**
|
|
559
|
+
* @public
|
|
560
|
+
*/
|
|
484
561
|
export interface DeletePermissionsBoundaryFromPermissionSetRequest {
|
|
485
562
|
/**
|
|
486
563
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. </p>
|
|
@@ -491,8 +568,14 @@ export interface DeletePermissionsBoundaryFromPermissionSetRequest {
|
|
|
491
568
|
*/
|
|
492
569
|
PermissionSetArn: string | undefined;
|
|
493
570
|
}
|
|
571
|
+
/**
|
|
572
|
+
* @public
|
|
573
|
+
*/
|
|
494
574
|
export interface DeletePermissionsBoundaryFromPermissionSetResponse {
|
|
495
575
|
}
|
|
576
|
+
/**
|
|
577
|
+
* @public
|
|
578
|
+
*/
|
|
496
579
|
export interface DeletePermissionSetRequest {
|
|
497
580
|
/**
|
|
498
581
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -504,8 +587,14 @@ export interface DeletePermissionSetRequest {
|
|
|
504
587
|
*/
|
|
505
588
|
PermissionSetArn: string | undefined;
|
|
506
589
|
}
|
|
590
|
+
/**
|
|
591
|
+
* @public
|
|
592
|
+
*/
|
|
507
593
|
export interface DeletePermissionSetResponse {
|
|
508
594
|
}
|
|
595
|
+
/**
|
|
596
|
+
* @public
|
|
597
|
+
*/
|
|
509
598
|
export interface DescribeAccountAssignmentCreationStatusRequest {
|
|
510
599
|
/**
|
|
511
600
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -517,12 +606,18 @@ export interface DescribeAccountAssignmentCreationStatusRequest {
|
|
|
517
606
|
*/
|
|
518
607
|
AccountAssignmentCreationRequestId: string | undefined;
|
|
519
608
|
}
|
|
609
|
+
/**
|
|
610
|
+
* @public
|
|
611
|
+
*/
|
|
520
612
|
export interface DescribeAccountAssignmentCreationStatusResponse {
|
|
521
613
|
/**
|
|
522
614
|
* <p>The status object for the account assignment creation operation.</p>
|
|
523
615
|
*/
|
|
524
616
|
AccountAssignmentCreationStatus?: AccountAssignmentOperationStatus;
|
|
525
617
|
}
|
|
618
|
+
/**
|
|
619
|
+
* @public
|
|
620
|
+
*/
|
|
526
621
|
export interface DescribeAccountAssignmentDeletionStatusRequest {
|
|
527
622
|
/**
|
|
528
623
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -534,23 +629,35 @@ export interface DescribeAccountAssignmentDeletionStatusRequest {
|
|
|
534
629
|
*/
|
|
535
630
|
AccountAssignmentDeletionRequestId: string | undefined;
|
|
536
631
|
}
|
|
632
|
+
/**
|
|
633
|
+
* @public
|
|
634
|
+
*/
|
|
537
635
|
export interface DescribeAccountAssignmentDeletionStatusResponse {
|
|
538
636
|
/**
|
|
539
637
|
* <p>The status object for the account assignment deletion operation.</p>
|
|
540
638
|
*/
|
|
541
639
|
AccountAssignmentDeletionStatus?: AccountAssignmentOperationStatus;
|
|
542
640
|
}
|
|
641
|
+
/**
|
|
642
|
+
* @public
|
|
643
|
+
*/
|
|
543
644
|
export interface DescribeInstanceAccessControlAttributeConfigurationRequest {
|
|
544
645
|
/**
|
|
545
646
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed.</p>
|
|
546
647
|
*/
|
|
547
648
|
InstanceArn: string | undefined;
|
|
548
649
|
}
|
|
650
|
+
/**
|
|
651
|
+
* @public
|
|
652
|
+
*/
|
|
549
653
|
export declare enum InstanceAccessControlAttributeConfigurationStatus {
|
|
550
654
|
CREATION_FAILED = "CREATION_FAILED",
|
|
551
655
|
CREATION_IN_PROGRESS = "CREATION_IN_PROGRESS",
|
|
552
656
|
ENABLED = "ENABLED"
|
|
553
657
|
}
|
|
658
|
+
/**
|
|
659
|
+
* @public
|
|
660
|
+
*/
|
|
554
661
|
export interface DescribeInstanceAccessControlAttributeConfigurationResponse {
|
|
555
662
|
/**
|
|
556
663
|
* <p>The status of the attribute configuration process.</p>
|
|
@@ -566,6 +673,9 @@ export interface DescribeInstanceAccessControlAttributeConfigurationResponse {
|
|
|
566
673
|
*/
|
|
567
674
|
InstanceAccessControlAttributeConfiguration?: InstanceAccessControlAttributeConfiguration;
|
|
568
675
|
}
|
|
676
|
+
/**
|
|
677
|
+
* @public
|
|
678
|
+
*/
|
|
569
679
|
export interface DescribePermissionSetRequest {
|
|
570
680
|
/**
|
|
571
681
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -577,12 +687,18 @@ export interface DescribePermissionSetRequest {
|
|
|
577
687
|
*/
|
|
578
688
|
PermissionSetArn: string | undefined;
|
|
579
689
|
}
|
|
690
|
+
/**
|
|
691
|
+
* @public
|
|
692
|
+
*/
|
|
580
693
|
export interface DescribePermissionSetResponse {
|
|
581
694
|
/**
|
|
582
695
|
* <p>Describes the level of access on an AWS account.</p>
|
|
583
696
|
*/
|
|
584
697
|
PermissionSet?: PermissionSet;
|
|
585
698
|
}
|
|
699
|
+
/**
|
|
700
|
+
* @public
|
|
701
|
+
*/
|
|
586
702
|
export interface DescribePermissionSetProvisioningStatusRequest {
|
|
587
703
|
/**
|
|
588
704
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -596,6 +712,7 @@ export interface DescribePermissionSetProvisioningStatusRequest {
|
|
|
596
712
|
ProvisionPermissionSetRequestId: string | undefined;
|
|
597
713
|
}
|
|
598
714
|
/**
|
|
715
|
+
* @public
|
|
599
716
|
* <p>A structure that is used to provide the status of the provisioning operation for a
|
|
600
717
|
* specified permission set.</p>
|
|
601
718
|
*/
|
|
@@ -627,12 +744,18 @@ export interface PermissionSetProvisioningStatus {
|
|
|
627
744
|
*/
|
|
628
745
|
CreatedDate?: Date;
|
|
629
746
|
}
|
|
747
|
+
/**
|
|
748
|
+
* @public
|
|
749
|
+
*/
|
|
630
750
|
export interface DescribePermissionSetProvisioningStatusResponse {
|
|
631
751
|
/**
|
|
632
752
|
* <p>The status object for the permission set provisioning operation.</p>
|
|
633
753
|
*/
|
|
634
754
|
PermissionSetProvisioningStatus?: PermissionSetProvisioningStatus;
|
|
635
755
|
}
|
|
756
|
+
/**
|
|
757
|
+
* @public
|
|
758
|
+
*/
|
|
636
759
|
export interface DetachCustomerManagedPolicyReferenceFromPermissionSetRequest {
|
|
637
760
|
/**
|
|
638
761
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. </p>
|
|
@@ -647,8 +770,14 @@ export interface DetachCustomerManagedPolicyReferenceFromPermissionSetRequest {
|
|
|
647
770
|
*/
|
|
648
771
|
CustomerManagedPolicyReference: CustomerManagedPolicyReference | undefined;
|
|
649
772
|
}
|
|
773
|
+
/**
|
|
774
|
+
* @public
|
|
775
|
+
*/
|
|
650
776
|
export interface DetachCustomerManagedPolicyReferenceFromPermissionSetResponse {
|
|
651
777
|
}
|
|
778
|
+
/**
|
|
779
|
+
* @public
|
|
780
|
+
*/
|
|
652
781
|
export interface DetachManagedPolicyFromPermissionSetRequest {
|
|
653
782
|
/**
|
|
654
783
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -665,8 +794,14 @@ export interface DetachManagedPolicyFromPermissionSetRequest {
|
|
|
665
794
|
*/
|
|
666
795
|
ManagedPolicyArn: string | undefined;
|
|
667
796
|
}
|
|
797
|
+
/**
|
|
798
|
+
* @public
|
|
799
|
+
*/
|
|
668
800
|
export interface DetachManagedPolicyFromPermissionSetResponse {
|
|
669
801
|
}
|
|
802
|
+
/**
|
|
803
|
+
* @public
|
|
804
|
+
*/
|
|
670
805
|
export interface GetInlinePolicyForPermissionSetRequest {
|
|
671
806
|
/**
|
|
672
807
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -678,12 +813,18 @@ export interface GetInlinePolicyForPermissionSetRequest {
|
|
|
678
813
|
*/
|
|
679
814
|
PermissionSetArn: string | undefined;
|
|
680
815
|
}
|
|
816
|
+
/**
|
|
817
|
+
* @public
|
|
818
|
+
*/
|
|
681
819
|
export interface GetInlinePolicyForPermissionSetResponse {
|
|
682
820
|
/**
|
|
683
821
|
* <p>The inline policy that is attached to the permission set.</p>
|
|
684
822
|
*/
|
|
685
823
|
InlinePolicy?: string;
|
|
686
824
|
}
|
|
825
|
+
/**
|
|
826
|
+
* @public
|
|
827
|
+
*/
|
|
687
828
|
export interface GetPermissionsBoundaryForPermissionSetRequest {
|
|
688
829
|
/**
|
|
689
830
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. </p>
|
|
@@ -695,6 +836,7 @@ export interface GetPermissionsBoundaryForPermissionSetRequest {
|
|
|
695
836
|
PermissionSetArn: string | undefined;
|
|
696
837
|
}
|
|
697
838
|
/**
|
|
839
|
+
* @public
|
|
698
840
|
* <p>Specifies the configuration of the AWS managed or customer managed policy that you want
|
|
699
841
|
* to set as a permissions boundary. Specify either <code>CustomerManagedPolicyReference</code>
|
|
700
842
|
* to use the name and path of a customer managed policy, or <code>ManagedPolicyArn</code> to use
|
|
@@ -719,6 +861,9 @@ export interface PermissionsBoundary {
|
|
|
719
861
|
*/
|
|
720
862
|
ManagedPolicyArn?: string;
|
|
721
863
|
}
|
|
864
|
+
/**
|
|
865
|
+
* @public
|
|
866
|
+
*/
|
|
722
867
|
export interface GetPermissionsBoundaryForPermissionSetResponse {
|
|
723
868
|
/**
|
|
724
869
|
* <p>The permissions boundary attached to the specified permission set.</p>
|
|
@@ -726,6 +871,7 @@ export interface GetPermissionsBoundaryForPermissionSetResponse {
|
|
|
726
871
|
PermissionsBoundary?: PermissionsBoundary;
|
|
727
872
|
}
|
|
728
873
|
/**
|
|
874
|
+
* @public
|
|
729
875
|
* <p>Provides information about the IAM Identity Center instance.</p>
|
|
730
876
|
*/
|
|
731
877
|
export interface InstanceMetadata {
|
|
@@ -740,6 +886,7 @@ export interface InstanceMetadata {
|
|
|
740
886
|
IdentityStoreId?: string;
|
|
741
887
|
}
|
|
742
888
|
/**
|
|
889
|
+
* @public
|
|
743
890
|
* <p>Filters he operation status list based on the passed attribute value.</p>
|
|
744
891
|
*/
|
|
745
892
|
export interface OperationStatusFilter {
|
|
@@ -748,6 +895,9 @@ export interface OperationStatusFilter {
|
|
|
748
895
|
*/
|
|
749
896
|
Status?: StatusValues | string;
|
|
750
897
|
}
|
|
898
|
+
/**
|
|
899
|
+
* @public
|
|
900
|
+
*/
|
|
751
901
|
export interface ListAccountAssignmentCreationStatusRequest {
|
|
752
902
|
/**
|
|
753
903
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -767,6 +917,9 @@ export interface ListAccountAssignmentCreationStatusRequest {
|
|
|
767
917
|
*/
|
|
768
918
|
Filter?: OperationStatusFilter;
|
|
769
919
|
}
|
|
920
|
+
/**
|
|
921
|
+
* @public
|
|
922
|
+
*/
|
|
770
923
|
export interface ListAccountAssignmentCreationStatusResponse {
|
|
771
924
|
/**
|
|
772
925
|
* <p>The status object for the account assignment creation operation.</p>
|
|
@@ -777,6 +930,9 @@ export interface ListAccountAssignmentCreationStatusResponse {
|
|
|
777
930
|
*/
|
|
778
931
|
NextToken?: string;
|
|
779
932
|
}
|
|
933
|
+
/**
|
|
934
|
+
* @public
|
|
935
|
+
*/
|
|
780
936
|
export interface ListAccountAssignmentDeletionStatusRequest {
|
|
781
937
|
/**
|
|
782
938
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -796,6 +952,9 @@ export interface ListAccountAssignmentDeletionStatusRequest {
|
|
|
796
952
|
*/
|
|
797
953
|
Filter?: OperationStatusFilter;
|
|
798
954
|
}
|
|
955
|
+
/**
|
|
956
|
+
* @public
|
|
957
|
+
*/
|
|
799
958
|
export interface ListAccountAssignmentDeletionStatusResponse {
|
|
800
959
|
/**
|
|
801
960
|
* <p>The status object for the account assignment deletion operation.</p>
|
|
@@ -806,6 +965,9 @@ export interface ListAccountAssignmentDeletionStatusResponse {
|
|
|
806
965
|
*/
|
|
807
966
|
NextToken?: string;
|
|
808
967
|
}
|
|
968
|
+
/**
|
|
969
|
+
* @public
|
|
970
|
+
*/
|
|
809
971
|
export interface ListAccountAssignmentsRequest {
|
|
810
972
|
/**
|
|
811
973
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -829,6 +991,9 @@ export interface ListAccountAssignmentsRequest {
|
|
|
829
991
|
*/
|
|
830
992
|
NextToken?: string;
|
|
831
993
|
}
|
|
994
|
+
/**
|
|
995
|
+
* @public
|
|
996
|
+
*/
|
|
832
997
|
export interface ListAccountAssignmentsResponse {
|
|
833
998
|
/**
|
|
834
999
|
* <p>The list of assignments that match the input AWS account and permission set.</p>
|
|
@@ -839,10 +1004,16 @@ export interface ListAccountAssignmentsResponse {
|
|
|
839
1004
|
*/
|
|
840
1005
|
NextToken?: string;
|
|
841
1006
|
}
|
|
1007
|
+
/**
|
|
1008
|
+
* @public
|
|
1009
|
+
*/
|
|
842
1010
|
export declare enum ProvisioningStatus {
|
|
843
1011
|
LATEST_PERMISSION_SET_NOT_PROVISIONED = "LATEST_PERMISSION_SET_NOT_PROVISIONED",
|
|
844
1012
|
LATEST_PERMISSION_SET_PROVISIONED = "LATEST_PERMISSION_SET_PROVISIONED"
|
|
845
1013
|
}
|
|
1014
|
+
/**
|
|
1015
|
+
* @public
|
|
1016
|
+
*/
|
|
846
1017
|
export interface ListAccountsForProvisionedPermissionSetRequest {
|
|
847
1018
|
/**
|
|
848
1019
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -867,6 +1038,9 @@ export interface ListAccountsForProvisionedPermissionSetRequest {
|
|
|
867
1038
|
*/
|
|
868
1039
|
NextToken?: string;
|
|
869
1040
|
}
|
|
1041
|
+
/**
|
|
1042
|
+
* @public
|
|
1043
|
+
*/
|
|
870
1044
|
export interface ListAccountsForProvisionedPermissionSetResponse {
|
|
871
1045
|
/**
|
|
872
1046
|
* <p>The list of AWS <code>AccountIds</code>.</p>
|
|
@@ -877,6 +1051,9 @@ export interface ListAccountsForProvisionedPermissionSetResponse {
|
|
|
877
1051
|
*/
|
|
878
1052
|
NextToken?: string;
|
|
879
1053
|
}
|
|
1054
|
+
/**
|
|
1055
|
+
* @public
|
|
1056
|
+
*/
|
|
880
1057
|
export interface ListCustomerManagedPolicyReferencesInPermissionSetRequest {
|
|
881
1058
|
/**
|
|
882
1059
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. </p>
|
|
@@ -896,6 +1073,9 @@ export interface ListCustomerManagedPolicyReferencesInPermissionSetRequest {
|
|
|
896
1073
|
*/
|
|
897
1074
|
NextToken?: string;
|
|
898
1075
|
}
|
|
1076
|
+
/**
|
|
1077
|
+
* @public
|
|
1078
|
+
*/
|
|
899
1079
|
export interface ListCustomerManagedPolicyReferencesInPermissionSetResponse {
|
|
900
1080
|
/**
|
|
901
1081
|
* <p>Specifies the names and paths of the customer managed policies that you have attached to
|
|
@@ -908,6 +1088,9 @@ export interface ListCustomerManagedPolicyReferencesInPermissionSetResponse {
|
|
|
908
1088
|
*/
|
|
909
1089
|
NextToken?: string;
|
|
910
1090
|
}
|
|
1091
|
+
/**
|
|
1092
|
+
* @public
|
|
1093
|
+
*/
|
|
911
1094
|
export interface ListInstancesRequest {
|
|
912
1095
|
/**
|
|
913
1096
|
* <p>The maximum number of results to display for the instance.</p>
|
|
@@ -918,6 +1101,9 @@ export interface ListInstancesRequest {
|
|
|
918
1101
|
*/
|
|
919
1102
|
NextToken?: string;
|
|
920
1103
|
}
|
|
1104
|
+
/**
|
|
1105
|
+
* @public
|
|
1106
|
+
*/
|
|
921
1107
|
export interface ListInstancesResponse {
|
|
922
1108
|
/**
|
|
923
1109
|
* <p>Lists the IAM Identity Center instances that the caller has access to.</p>
|
|
@@ -928,6 +1114,9 @@ export interface ListInstancesResponse {
|
|
|
928
1114
|
*/
|
|
929
1115
|
NextToken?: string;
|
|
930
1116
|
}
|
|
1117
|
+
/**
|
|
1118
|
+
* @public
|
|
1119
|
+
*/
|
|
931
1120
|
export interface ListManagedPoliciesInPermissionSetRequest {
|
|
932
1121
|
/**
|
|
933
1122
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -948,6 +1137,9 @@ export interface ListManagedPoliciesInPermissionSetRequest {
|
|
|
948
1137
|
*/
|
|
949
1138
|
NextToken?: string;
|
|
950
1139
|
}
|
|
1140
|
+
/**
|
|
1141
|
+
* @public
|
|
1142
|
+
*/
|
|
951
1143
|
export interface ListManagedPoliciesInPermissionSetResponse {
|
|
952
1144
|
/**
|
|
953
1145
|
* <p>An array of the <a>AttachedManagedPolicy</a> data type object.</p>
|
|
@@ -958,6 +1150,9 @@ export interface ListManagedPoliciesInPermissionSetResponse {
|
|
|
958
1150
|
*/
|
|
959
1151
|
NextToken?: string;
|
|
960
1152
|
}
|
|
1153
|
+
/**
|
|
1154
|
+
* @public
|
|
1155
|
+
*/
|
|
961
1156
|
export interface ListPermissionSetProvisioningStatusRequest {
|
|
962
1157
|
/**
|
|
963
1158
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -978,6 +1173,7 @@ export interface ListPermissionSetProvisioningStatusRequest {
|
|
|
978
1173
|
Filter?: OperationStatusFilter;
|
|
979
1174
|
}
|
|
980
1175
|
/**
|
|
1176
|
+
* @public
|
|
981
1177
|
* <p>Provides information about the permission set provisioning status.</p>
|
|
982
1178
|
*/
|
|
983
1179
|
export interface PermissionSetProvisioningStatusMetadata {
|
|
@@ -995,6 +1191,9 @@ export interface PermissionSetProvisioningStatusMetadata {
|
|
|
995
1191
|
*/
|
|
996
1192
|
CreatedDate?: Date;
|
|
997
1193
|
}
|
|
1194
|
+
/**
|
|
1195
|
+
* @public
|
|
1196
|
+
*/
|
|
998
1197
|
export interface ListPermissionSetProvisioningStatusResponse {
|
|
999
1198
|
/**
|
|
1000
1199
|
* <p>The status object for the permission set provisioning operation.</p>
|
|
@@ -1005,6 +1204,9 @@ export interface ListPermissionSetProvisioningStatusResponse {
|
|
|
1005
1204
|
*/
|
|
1006
1205
|
NextToken?: string;
|
|
1007
1206
|
}
|
|
1207
|
+
/**
|
|
1208
|
+
* @public
|
|
1209
|
+
*/
|
|
1008
1210
|
export interface ListPermissionSetsRequest {
|
|
1009
1211
|
/**
|
|
1010
1212
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -1020,6 +1222,9 @@ export interface ListPermissionSetsRequest {
|
|
|
1020
1222
|
*/
|
|
1021
1223
|
MaxResults?: number;
|
|
1022
1224
|
}
|
|
1225
|
+
/**
|
|
1226
|
+
* @public
|
|
1227
|
+
*/
|
|
1023
1228
|
export interface ListPermissionSetsResponse {
|
|
1024
1229
|
/**
|
|
1025
1230
|
* <p>Defines the level of access on an AWS account.</p>
|
|
@@ -1030,6 +1235,9 @@ export interface ListPermissionSetsResponse {
|
|
|
1030
1235
|
*/
|
|
1031
1236
|
NextToken?: string;
|
|
1032
1237
|
}
|
|
1238
|
+
/**
|
|
1239
|
+
* @public
|
|
1240
|
+
*/
|
|
1033
1241
|
export interface ListPermissionSetsProvisionedToAccountRequest {
|
|
1034
1242
|
/**
|
|
1035
1243
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -1053,6 +1261,9 @@ export interface ListPermissionSetsProvisionedToAccountRequest {
|
|
|
1053
1261
|
*/
|
|
1054
1262
|
NextToken?: string;
|
|
1055
1263
|
}
|
|
1264
|
+
/**
|
|
1265
|
+
* @public
|
|
1266
|
+
*/
|
|
1056
1267
|
export interface ListPermissionSetsProvisionedToAccountResponse {
|
|
1057
1268
|
/**
|
|
1058
1269
|
* <p>The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.</p>
|
|
@@ -1063,6 +1274,9 @@ export interface ListPermissionSetsProvisionedToAccountResponse {
|
|
|
1063
1274
|
*/
|
|
1064
1275
|
PermissionSets?: string[];
|
|
1065
1276
|
}
|
|
1277
|
+
/**
|
|
1278
|
+
* @public
|
|
1279
|
+
*/
|
|
1066
1280
|
export interface ListTagsForResourceRequest {
|
|
1067
1281
|
/**
|
|
1068
1282
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -1078,6 +1292,9 @@ export interface ListTagsForResourceRequest {
|
|
|
1078
1292
|
*/
|
|
1079
1293
|
NextToken?: string;
|
|
1080
1294
|
}
|
|
1295
|
+
/**
|
|
1296
|
+
* @public
|
|
1297
|
+
*/
|
|
1081
1298
|
export interface ListTagsForResourceResponse {
|
|
1082
1299
|
/**
|
|
1083
1300
|
* <p>A set of key-value pairs that are used to manage the resource.</p>
|
|
@@ -1088,10 +1305,16 @@ export interface ListTagsForResourceResponse {
|
|
|
1088
1305
|
*/
|
|
1089
1306
|
NextToken?: string;
|
|
1090
1307
|
}
|
|
1308
|
+
/**
|
|
1309
|
+
* @public
|
|
1310
|
+
*/
|
|
1091
1311
|
export declare enum ProvisionTargetType {
|
|
1092
1312
|
ALL_PROVISIONED_ACCOUNTS = "ALL_PROVISIONED_ACCOUNTS",
|
|
1093
1313
|
AWS_ACCOUNT = "AWS_ACCOUNT"
|
|
1094
1314
|
}
|
|
1315
|
+
/**
|
|
1316
|
+
* @public
|
|
1317
|
+
*/
|
|
1095
1318
|
export interface ProvisionPermissionSetRequest {
|
|
1096
1319
|
/**
|
|
1097
1320
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -1111,12 +1334,18 @@ export interface ProvisionPermissionSetRequest {
|
|
|
1111
1334
|
*/
|
|
1112
1335
|
TargetType: ProvisionTargetType | string | undefined;
|
|
1113
1336
|
}
|
|
1337
|
+
/**
|
|
1338
|
+
* @public
|
|
1339
|
+
*/
|
|
1114
1340
|
export interface ProvisionPermissionSetResponse {
|
|
1115
1341
|
/**
|
|
1116
1342
|
* <p>The status object for the permission set provisioning operation.</p>
|
|
1117
1343
|
*/
|
|
1118
1344
|
PermissionSetProvisioningStatus?: PermissionSetProvisioningStatus;
|
|
1119
1345
|
}
|
|
1346
|
+
/**
|
|
1347
|
+
* @public
|
|
1348
|
+
*/
|
|
1120
1349
|
export interface PutInlinePolicyToPermissionSetRequest {
|
|
1121
1350
|
/**
|
|
1122
1351
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -1132,8 +1361,14 @@ export interface PutInlinePolicyToPermissionSetRequest {
|
|
|
1132
1361
|
*/
|
|
1133
1362
|
InlinePolicy: string | undefined;
|
|
1134
1363
|
}
|
|
1364
|
+
/**
|
|
1365
|
+
* @public
|
|
1366
|
+
*/
|
|
1135
1367
|
export interface PutInlinePolicyToPermissionSetResponse {
|
|
1136
1368
|
}
|
|
1369
|
+
/**
|
|
1370
|
+
* @public
|
|
1371
|
+
*/
|
|
1137
1372
|
export interface PutPermissionsBoundaryToPermissionSetRequest {
|
|
1138
1373
|
/**
|
|
1139
1374
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. </p>
|
|
@@ -1148,8 +1383,14 @@ export interface PutPermissionsBoundaryToPermissionSetRequest {
|
|
|
1148
1383
|
*/
|
|
1149
1384
|
PermissionsBoundary: PermissionsBoundary | undefined;
|
|
1150
1385
|
}
|
|
1386
|
+
/**
|
|
1387
|
+
* @public
|
|
1388
|
+
*/
|
|
1151
1389
|
export interface PutPermissionsBoundaryToPermissionSetResponse {
|
|
1152
1390
|
}
|
|
1391
|
+
/**
|
|
1392
|
+
* @public
|
|
1393
|
+
*/
|
|
1153
1394
|
export interface TagResourceRequest {
|
|
1154
1395
|
/**
|
|
1155
1396
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -1165,8 +1406,14 @@ export interface TagResourceRequest {
|
|
|
1165
1406
|
*/
|
|
1166
1407
|
Tags: Tag[] | undefined;
|
|
1167
1408
|
}
|
|
1409
|
+
/**
|
|
1410
|
+
* @public
|
|
1411
|
+
*/
|
|
1168
1412
|
export interface TagResourceResponse {
|
|
1169
1413
|
}
|
|
1414
|
+
/**
|
|
1415
|
+
* @public
|
|
1416
|
+
*/
|
|
1170
1417
|
export interface UntagResourceRequest {
|
|
1171
1418
|
/**
|
|
1172
1419
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -1182,8 +1429,14 @@ export interface UntagResourceRequest {
|
|
|
1182
1429
|
*/
|
|
1183
1430
|
TagKeys: string[] | undefined;
|
|
1184
1431
|
}
|
|
1432
|
+
/**
|
|
1433
|
+
* @public
|
|
1434
|
+
*/
|
|
1185
1435
|
export interface UntagResourceResponse {
|
|
1186
1436
|
}
|
|
1437
|
+
/**
|
|
1438
|
+
* @public
|
|
1439
|
+
*/
|
|
1187
1440
|
export interface UpdateInstanceAccessControlAttributeConfigurationRequest {
|
|
1188
1441
|
/**
|
|
1189
1442
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed.</p>
|
|
@@ -1194,8 +1447,14 @@ export interface UpdateInstanceAccessControlAttributeConfigurationRequest {
|
|
|
1194
1447
|
*/
|
|
1195
1448
|
InstanceAccessControlAttributeConfiguration: InstanceAccessControlAttributeConfiguration | undefined;
|
|
1196
1449
|
}
|
|
1450
|
+
/**
|
|
1451
|
+
* @public
|
|
1452
|
+
*/
|
|
1197
1453
|
export interface UpdateInstanceAccessControlAttributeConfigurationResponse {
|
|
1198
1454
|
}
|
|
1455
|
+
/**
|
|
1456
|
+
* @public
|
|
1457
|
+
*/
|
|
1199
1458
|
export interface UpdatePermissionSetRequest {
|
|
1200
1459
|
/**
|
|
1201
1460
|
* <p>The ARN of the IAM Identity Center instance under which the operation will be executed. For more information about ARNs, see <a href="/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource
|
|
@@ -1221,6 +1480,9 @@ export interface UpdatePermissionSetRequest {
|
|
|
1221
1480
|
*/
|
|
1222
1481
|
RelayState?: string;
|
|
1223
1482
|
}
|
|
1483
|
+
/**
|
|
1484
|
+
* @public
|
|
1485
|
+
*/
|
|
1224
1486
|
export interface UpdatePermissionSetResponse {
|
|
1225
1487
|
}
|
|
1226
1488
|
/**
|