cdk-comprehend-s3olap 2.0.40 → 2.0.41
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/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +9 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/discovery-2015-11-01.min.json +38 -3
- package/node_modules/aws-sdk/apis/elasticache-2015-02-02.min.json +4 -1
- package/node_modules/aws-sdk/apis/kms-2014-11-01.min.json +1 -4
- package/node_modules/aws-sdk/apis/kms-2014-11-01.paginators.json +21 -0
- package/node_modules/aws-sdk/apis/mediapackage-2017-10-12.min.json +4 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +928 -548
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/sso-admin-2020-07-20.min.json +181 -36
- package/node_modules/aws-sdk/apis/sso-admin-2020-07-20.paginators.json +6 -0
- package/node_modules/aws-sdk/clients/discovery.d.ts +10 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +79 -55
- package/node_modules/aws-sdk/clients/elasticache.d.ts +12 -8
- package/node_modules/aws-sdk/clients/kms.d.ts +46 -46
- package/node_modules/aws-sdk/clients/mediapackage.d.ts +6 -2
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +475 -0
- package/node_modules/aws-sdk/clients/ssoadmin.d.ts +191 -16
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +29 -8
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +56 -56
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
@@ -12,11 +12,19 @@ declare class SSOAdmin extends Service {
|
|
12
12
|
constructor(options?: SSOAdmin.Types.ClientConfiguration)
|
13
13
|
config: Config & SSOAdmin.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Attaches
|
15
|
+
* Attaches the specified IAM customer managed policy to the specified PermissionSet.
|
16
|
+
*/
|
17
|
+
attachCustomerManagedPolicyReferenceToPermissionSet(params: SSOAdmin.Types.AttachCustomerManagedPolicyReferenceToPermissionSetRequest, callback?: (err: AWSError, data: SSOAdmin.Types.AttachCustomerManagedPolicyReferenceToPermissionSetResponse) => void): Request<SSOAdmin.Types.AttachCustomerManagedPolicyReferenceToPermissionSetResponse, AWSError>;
|
18
|
+
/**
|
19
|
+
* Attaches the specified IAM customer managed policy to the specified PermissionSet.
|
20
|
+
*/
|
21
|
+
attachCustomerManagedPolicyReferenceToPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.AttachCustomerManagedPolicyReferenceToPermissionSetResponse) => void): Request<SSOAdmin.Types.AttachCustomerManagedPolicyReferenceToPermissionSetResponse, AWSError>;
|
22
|
+
/**
|
23
|
+
* Attaches an Amazon Web Services managed IAM policy ARN to a permission set. If the permission set is already referenced by one or more account assignments, you will need to call ProvisionPermissionSet after this operation. Calling ProvisionPermissionSet applies the corresponding IAM policy updates to all assigned accounts.
|
16
24
|
*/
|
17
25
|
attachManagedPolicyToPermissionSet(params: SSOAdmin.Types.AttachManagedPolicyToPermissionSetRequest, callback?: (err: AWSError, data: SSOAdmin.Types.AttachManagedPolicyToPermissionSetResponse) => void): Request<SSOAdmin.Types.AttachManagedPolicyToPermissionSetResponse, AWSError>;
|
18
26
|
/**
|
19
|
-
* Attaches an
|
27
|
+
* Attaches an Amazon Web Services managed IAM policy ARN to a permission set. If the permission set is already referenced by one or more account assignments, you will need to call ProvisionPermissionSet after this operation. Calling ProvisionPermissionSet applies the corresponding IAM policy updates to all assigned accounts.
|
20
28
|
*/
|
21
29
|
attachManagedPolicyToPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.AttachManagedPolicyToPermissionSetResponse) => void): Request<SSOAdmin.Types.AttachManagedPolicyToPermissionSetResponse, AWSError>;
|
22
30
|
/**
|
@@ -75,6 +83,14 @@ declare class SSOAdmin extends Service {
|
|
75
83
|
* Deletes the specified permission set.
|
76
84
|
*/
|
77
85
|
deletePermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.DeletePermissionSetResponse) => void): Request<SSOAdmin.Types.DeletePermissionSetResponse, AWSError>;
|
86
|
+
/**
|
87
|
+
* Deletes the permissions boundary from a specified PermissionSet.
|
88
|
+
*/
|
89
|
+
deletePermissionsBoundaryFromPermissionSet(params: SSOAdmin.Types.DeletePermissionsBoundaryFromPermissionSetRequest, callback?: (err: AWSError, data: SSOAdmin.Types.DeletePermissionsBoundaryFromPermissionSetResponse) => void): Request<SSOAdmin.Types.DeletePermissionsBoundaryFromPermissionSetResponse, AWSError>;
|
90
|
+
/**
|
91
|
+
* Deletes the permissions boundary from a specified PermissionSet.
|
92
|
+
*/
|
93
|
+
deletePermissionsBoundaryFromPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.DeletePermissionsBoundaryFromPermissionSetResponse) => void): Request<SSOAdmin.Types.DeletePermissionsBoundaryFromPermissionSetResponse, AWSError>;
|
78
94
|
/**
|
79
95
|
* Describes the status of the assignment creation request.
|
80
96
|
*/
|
@@ -116,11 +132,19 @@ declare class SSOAdmin extends Service {
|
|
116
132
|
*/
|
117
133
|
describePermissionSetProvisioningStatus(callback?: (err: AWSError, data: SSOAdmin.Types.DescribePermissionSetProvisioningStatusResponse) => void): Request<SSOAdmin.Types.DescribePermissionSetProvisioningStatusResponse, AWSError>;
|
118
134
|
/**
|
119
|
-
* Detaches the
|
135
|
+
* Detaches the specified IAM customer managed policy from the specified PermissionSet.
|
136
|
+
*/
|
137
|
+
detachCustomerManagedPolicyReferenceFromPermissionSet(params: SSOAdmin.Types.DetachCustomerManagedPolicyReferenceFromPermissionSetRequest, callback?: (err: AWSError, data: SSOAdmin.Types.DetachCustomerManagedPolicyReferenceFromPermissionSetResponse) => void): Request<SSOAdmin.Types.DetachCustomerManagedPolicyReferenceFromPermissionSetResponse, AWSError>;
|
138
|
+
/**
|
139
|
+
* Detaches the specified IAM customer managed policy from the specified PermissionSet.
|
140
|
+
*/
|
141
|
+
detachCustomerManagedPolicyReferenceFromPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.DetachCustomerManagedPolicyReferenceFromPermissionSetResponse) => void): Request<SSOAdmin.Types.DetachCustomerManagedPolicyReferenceFromPermissionSetResponse, AWSError>;
|
142
|
+
/**
|
143
|
+
* Detaches the attached Amazon Web Services managed IAM policy ARN from the specified permission set.
|
120
144
|
*/
|
121
145
|
detachManagedPolicyFromPermissionSet(params: SSOAdmin.Types.DetachManagedPolicyFromPermissionSetRequest, callback?: (err: AWSError, data: SSOAdmin.Types.DetachManagedPolicyFromPermissionSetResponse) => void): Request<SSOAdmin.Types.DetachManagedPolicyFromPermissionSetResponse, AWSError>;
|
122
146
|
/**
|
123
|
-
* Detaches the attached
|
147
|
+
* Detaches the attached Amazon Web Services managed IAM policy ARN from the specified permission set.
|
124
148
|
*/
|
125
149
|
detachManagedPolicyFromPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.DetachManagedPolicyFromPermissionSetResponse) => void): Request<SSOAdmin.Types.DetachManagedPolicyFromPermissionSetResponse, AWSError>;
|
126
150
|
/**
|
@@ -131,6 +155,14 @@ declare class SSOAdmin extends Service {
|
|
131
155
|
* Obtains the inline policy assigned to the permission set.
|
132
156
|
*/
|
133
157
|
getInlinePolicyForPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.GetInlinePolicyForPermissionSetResponse) => void): Request<SSOAdmin.Types.GetInlinePolicyForPermissionSetResponse, AWSError>;
|
158
|
+
/**
|
159
|
+
* Obtains the permissions boundary for a specified PermissionSet.
|
160
|
+
*/
|
161
|
+
getPermissionsBoundaryForPermissionSet(params: SSOAdmin.Types.GetPermissionsBoundaryForPermissionSetRequest, callback?: (err: AWSError, data: SSOAdmin.Types.GetPermissionsBoundaryForPermissionSetResponse) => void): Request<SSOAdmin.Types.GetPermissionsBoundaryForPermissionSetResponse, AWSError>;
|
162
|
+
/**
|
163
|
+
* Obtains the permissions boundary for a specified PermissionSet.
|
164
|
+
*/
|
165
|
+
getPermissionsBoundaryForPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.GetPermissionsBoundaryForPermissionSetResponse) => void): Request<SSOAdmin.Types.GetPermissionsBoundaryForPermissionSetResponse, AWSError>;
|
134
166
|
/**
|
135
167
|
* Lists the status of the Amazon Web Services account assignment creation requests for a specified SSO instance.
|
136
168
|
*/
|
@@ -163,6 +195,14 @@ declare class SSOAdmin extends Service {
|
|
163
195
|
* Lists all the Amazon Web Services accounts where the specified permission set is provisioned.
|
164
196
|
*/
|
165
197
|
listAccountsForProvisionedPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.ListAccountsForProvisionedPermissionSetResponse) => void): Request<SSOAdmin.Types.ListAccountsForProvisionedPermissionSetResponse, AWSError>;
|
198
|
+
/**
|
199
|
+
* Lists all IAM customer managed policies attached to a specified PermissionSet.
|
200
|
+
*/
|
201
|
+
listCustomerManagedPolicyReferencesInPermissionSet(params: SSOAdmin.Types.ListCustomerManagedPolicyReferencesInPermissionSetRequest, callback?: (err: AWSError, data: SSOAdmin.Types.ListCustomerManagedPolicyReferencesInPermissionSetResponse) => void): Request<SSOAdmin.Types.ListCustomerManagedPolicyReferencesInPermissionSetResponse, AWSError>;
|
202
|
+
/**
|
203
|
+
* Lists all IAM customer managed policies attached to a specified PermissionSet.
|
204
|
+
*/
|
205
|
+
listCustomerManagedPolicyReferencesInPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.ListCustomerManagedPolicyReferencesInPermissionSetResponse) => void): Request<SSOAdmin.Types.ListCustomerManagedPolicyReferencesInPermissionSetResponse, AWSError>;
|
166
206
|
/**
|
167
207
|
* Lists the SSO instances that the caller has access to.
|
168
208
|
*/
|
@@ -172,11 +212,11 @@ declare class SSOAdmin extends Service {
|
|
172
212
|
*/
|
173
213
|
listInstances(callback?: (err: AWSError, data: SSOAdmin.Types.ListInstancesResponse) => void): Request<SSOAdmin.Types.ListInstancesResponse, AWSError>;
|
174
214
|
/**
|
175
|
-
* Lists the
|
215
|
+
* Lists the Amazon Web Services managed IAM policy that is attached to a specified permission set.
|
176
216
|
*/
|
177
217
|
listManagedPoliciesInPermissionSet(params: SSOAdmin.Types.ListManagedPoliciesInPermissionSetRequest, callback?: (err: AWSError, data: SSOAdmin.Types.ListManagedPoliciesInPermissionSetResponse) => void): Request<SSOAdmin.Types.ListManagedPoliciesInPermissionSetResponse, AWSError>;
|
178
218
|
/**
|
179
|
-
* Lists the
|
219
|
+
* Lists the Amazon Web Services managed IAM policy that is attached to a specified permission set.
|
180
220
|
*/
|
181
221
|
listManagedPoliciesInPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.ListManagedPoliciesInPermissionSetResponse) => void): Request<SSOAdmin.Types.ListManagedPoliciesInPermissionSetResponse, AWSError>;
|
182
222
|
/**
|
@@ -227,6 +267,14 @@ declare class SSOAdmin extends Service {
|
|
227
267
|
* Attaches an IAM inline policy to a permission set. If the permission set is already referenced by one or more account assignments, you will need to call ProvisionPermissionSet after this action to apply the corresponding IAM policy updates to all assigned accounts.
|
228
268
|
*/
|
229
269
|
putInlinePolicyToPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.PutInlinePolicyToPermissionSetResponse) => void): Request<SSOAdmin.Types.PutInlinePolicyToPermissionSetResponse, AWSError>;
|
270
|
+
/**
|
271
|
+
* Attaches an Amazon Web Services managed or customer managed IAM policy to the specified PermissionSet as a permissions boundary.
|
272
|
+
*/
|
273
|
+
putPermissionsBoundaryToPermissionSet(params: SSOAdmin.Types.PutPermissionsBoundaryToPermissionSetRequest, callback?: (err: AWSError, data: SSOAdmin.Types.PutPermissionsBoundaryToPermissionSetResponse) => void): Request<SSOAdmin.Types.PutPermissionsBoundaryToPermissionSetResponse, AWSError>;
|
274
|
+
/**
|
275
|
+
* Attaches an Amazon Web Services managed or customer managed IAM policy to the specified PermissionSet as a permissions boundary.
|
276
|
+
*/
|
277
|
+
putPermissionsBoundaryToPermissionSet(callback?: (err: AWSError, data: SSOAdmin.Types.PutPermissionsBoundaryToPermissionSetResponse) => void): Request<SSOAdmin.Types.PutPermissionsBoundaryToPermissionSetResponse, AWSError>;
|
230
278
|
/**
|
231
279
|
* Associates a set of tags with a specified resource.
|
232
280
|
*/
|
@@ -355,6 +403,22 @@ declare namespace SSOAdmin {
|
|
355
403
|
}
|
356
404
|
export type AccountId = string;
|
357
405
|
export type AccountList = AccountId[];
|
406
|
+
export interface AttachCustomerManagedPolicyReferenceToPermissionSetRequest {
|
407
|
+
/**
|
408
|
+
* The ARN of the SSO instance under which the operation will be executed.
|
409
|
+
*/
|
410
|
+
InstanceArn: InstanceArn;
|
411
|
+
/**
|
412
|
+
* The ARN of the PermissionSet.
|
413
|
+
*/
|
414
|
+
PermissionSetArn: PermissionSetArn;
|
415
|
+
/**
|
416
|
+
* Specifies the name and path of the IAM customer managed policy. You must have an IAM policy that matches the name and path in each Amazon Web Services account where you want to deploy your permission set.
|
417
|
+
*/
|
418
|
+
CustomerManagedPolicyReference: CustomerManagedPolicyReference;
|
419
|
+
}
|
420
|
+
export interface AttachCustomerManagedPolicyReferenceToPermissionSetResponse {
|
421
|
+
}
|
358
422
|
export interface AttachManagedPolicyToPermissionSetRequest {
|
359
423
|
/**
|
360
424
|
* The ARN of the SSO instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
|
@@ -365,7 +429,7 @@ declare namespace SSOAdmin {
|
|
365
429
|
*/
|
366
430
|
PermissionSetArn: PermissionSetArn;
|
367
431
|
/**
|
368
|
-
* The
|
432
|
+
* The Amazon Web Services managed policy ARN to be attached to a permission set.
|
369
433
|
*/
|
370
434
|
ManagedPolicyArn: ManagedPolicyArn;
|
371
435
|
}
|
@@ -373,11 +437,11 @@ declare namespace SSOAdmin {
|
|
373
437
|
}
|
374
438
|
export interface AttachedManagedPolicy {
|
375
439
|
/**
|
376
|
-
* The name of the
|
440
|
+
* The name of the Amazon Web Services managed IAM policy.
|
377
441
|
*/
|
378
442
|
Name?: Name;
|
379
443
|
/**
|
380
|
-
* The ARN of the
|
444
|
+
* The ARN of the Amazon Web Services managed IAM policy. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
|
381
445
|
*/
|
382
446
|
Arn?: ManagedPolicyArn;
|
383
447
|
}
|
@@ -458,6 +522,17 @@ declare namespace SSOAdmin {
|
|
458
522
|
*/
|
459
523
|
PermissionSet?: PermissionSet;
|
460
524
|
}
|
525
|
+
export interface CustomerManagedPolicyReference {
|
526
|
+
/**
|
527
|
+
* The name of the policy document.
|
528
|
+
*/
|
529
|
+
Name: ManagedPolicyName;
|
530
|
+
/**
|
531
|
+
* The path for the policy. The default is /. For more information, see Friendly names and paths in the Identity and Access Management user guide.
|
532
|
+
*/
|
533
|
+
Path?: ManagedPolicyPath;
|
534
|
+
}
|
535
|
+
export type CustomerManagedPolicyReferenceList = CustomerManagedPolicyReference[];
|
461
536
|
export type _Date = Date;
|
462
537
|
export interface DeleteAccountAssignmentRequest {
|
463
538
|
/**
|
@@ -523,6 +598,18 @@ declare namespace SSOAdmin {
|
|
523
598
|
}
|
524
599
|
export interface DeletePermissionSetResponse {
|
525
600
|
}
|
601
|
+
export interface DeletePermissionsBoundaryFromPermissionSetRequest {
|
602
|
+
/**
|
603
|
+
* The ARN of the SSO instance under which the operation will be executed.
|
604
|
+
*/
|
605
|
+
InstanceArn: InstanceArn;
|
606
|
+
/**
|
607
|
+
* The ARN of the PermissionSet.
|
608
|
+
*/
|
609
|
+
PermissionSetArn: PermissionSetArn;
|
610
|
+
}
|
611
|
+
export interface DeletePermissionsBoundaryFromPermissionSetResponse {
|
612
|
+
}
|
526
613
|
export interface DescribeAccountAssignmentCreationStatusRequest {
|
527
614
|
/**
|
528
615
|
* The ARN of the SSO instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
|
@@ -607,6 +694,22 @@ declare namespace SSOAdmin {
|
|
607
694
|
*/
|
608
695
|
PermissionSet?: PermissionSet;
|
609
696
|
}
|
697
|
+
export interface DetachCustomerManagedPolicyReferenceFromPermissionSetRequest {
|
698
|
+
/**
|
699
|
+
* The ARN of the SSO instance under which the operation will be executed.
|
700
|
+
*/
|
701
|
+
InstanceArn: InstanceArn;
|
702
|
+
/**
|
703
|
+
* The ARN of the PermissionSet.
|
704
|
+
*/
|
705
|
+
PermissionSetArn: PermissionSetArn;
|
706
|
+
/**
|
707
|
+
* Specifies the name and path of the IAM customer managed policy. You must have an IAM policy that matches the name and path in each Amazon Web Services account where you want to deploy your permission set.
|
708
|
+
*/
|
709
|
+
CustomerManagedPolicyReference: CustomerManagedPolicyReference;
|
710
|
+
}
|
711
|
+
export interface DetachCustomerManagedPolicyReferenceFromPermissionSetResponse {
|
712
|
+
}
|
610
713
|
export interface DetachManagedPolicyFromPermissionSetRequest {
|
611
714
|
/**
|
612
715
|
* The ARN of the SSO instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
|
@@ -617,14 +720,13 @@ declare namespace SSOAdmin {
|
|
617
720
|
*/
|
618
721
|
PermissionSetArn: PermissionSetArn;
|
619
722
|
/**
|
620
|
-
* The
|
723
|
+
* The Amazon Web Services managed policy ARN to be detached from a permission set.
|
621
724
|
*/
|
622
725
|
ManagedPolicyArn: ManagedPolicyArn;
|
623
726
|
}
|
624
727
|
export interface DetachManagedPolicyFromPermissionSetResponse {
|
625
728
|
}
|
626
729
|
export type Duration = string;
|
627
|
-
export type GeneralArn = string;
|
628
730
|
export interface GetInlinePolicyForPermissionSetRequest {
|
629
731
|
/**
|
630
732
|
* The ARN of the SSO instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
|
@@ -641,6 +743,22 @@ declare namespace SSOAdmin {
|
|
641
743
|
*/
|
642
744
|
InlinePolicy?: PermissionSetPolicyDocument;
|
643
745
|
}
|
746
|
+
export interface GetPermissionsBoundaryForPermissionSetRequest {
|
747
|
+
/**
|
748
|
+
* The ARN of the SSO instance under which the operation will be executed.
|
749
|
+
*/
|
750
|
+
InstanceArn: InstanceArn;
|
751
|
+
/**
|
752
|
+
* The ARN of the PermissionSet.
|
753
|
+
*/
|
754
|
+
PermissionSetArn: PermissionSetArn;
|
755
|
+
}
|
756
|
+
export interface GetPermissionsBoundaryForPermissionSetResponse {
|
757
|
+
/**
|
758
|
+
* The permissions boundary attached to the specified permission set.
|
759
|
+
*/
|
760
|
+
PermissionsBoundary?: PermissionsBoundary;
|
761
|
+
}
|
644
762
|
export type Id = string;
|
645
763
|
export interface InstanceAccessControlAttributeConfiguration {
|
646
764
|
/**
|
@@ -782,6 +900,34 @@ declare namespace SSOAdmin {
|
|
782
900
|
*/
|
783
901
|
NextToken?: Token;
|
784
902
|
}
|
903
|
+
export interface ListCustomerManagedPolicyReferencesInPermissionSetRequest {
|
904
|
+
/**
|
905
|
+
* The ARN of the SSO instance under which the operation will be executed.
|
906
|
+
*/
|
907
|
+
InstanceArn: InstanceArn;
|
908
|
+
/**
|
909
|
+
* The ARN of the PermissionSet.
|
910
|
+
*/
|
911
|
+
PermissionSetArn: PermissionSetArn;
|
912
|
+
/**
|
913
|
+
* The maximum number of results to display for the list call.
|
914
|
+
*/
|
915
|
+
MaxResults?: MaxResults;
|
916
|
+
/**
|
917
|
+
* The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.
|
918
|
+
*/
|
919
|
+
NextToken?: Token;
|
920
|
+
}
|
921
|
+
export interface ListCustomerManagedPolicyReferencesInPermissionSetResponse {
|
922
|
+
/**
|
923
|
+
* Specifies the names and paths of the IAM customer managed policies that you have attached to your permission set.
|
924
|
+
*/
|
925
|
+
CustomerManagedPolicyReferences?: CustomerManagedPolicyReferenceList;
|
926
|
+
/**
|
927
|
+
* The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.
|
928
|
+
*/
|
929
|
+
NextToken?: Token;
|
930
|
+
}
|
785
931
|
export interface ListInstancesRequest {
|
786
932
|
/**
|
787
933
|
* The maximum number of results to display for the instance.
|
@@ -922,7 +1068,7 @@ declare namespace SSOAdmin {
|
|
922
1068
|
/**
|
923
1069
|
* The ARN of the resource with the tags to be listed.
|
924
1070
|
*/
|
925
|
-
ResourceArn:
|
1071
|
+
ResourceArn: TaggableResourceArn;
|
926
1072
|
/**
|
927
1073
|
* The pagination token for the list API. Initially the value is null. Use the output of previous API calls to make subsequent calls.
|
928
1074
|
*/
|
@@ -939,6 +1085,8 @@ declare namespace SSOAdmin {
|
|
939
1085
|
NextToken?: Token;
|
940
1086
|
}
|
941
1087
|
export type ManagedPolicyArn = string;
|
1088
|
+
export type ManagedPolicyName = string;
|
1089
|
+
export type ManagedPolicyPath = string;
|
942
1090
|
export type MaxResults = number;
|
943
1091
|
export type Name = string;
|
944
1092
|
export interface OperationStatusFilter {
|
@@ -1019,6 +1167,16 @@ declare namespace SSOAdmin {
|
|
1019
1167
|
*/
|
1020
1168
|
CreatedDate?: _Date;
|
1021
1169
|
}
|
1170
|
+
export interface PermissionsBoundary {
|
1171
|
+
/**
|
1172
|
+
* Specifies the name and path of the IAM customer managed policy. You must have an IAM policy that matches the name and path in each Amazon Web Services account where you want to deploy your permission set.
|
1173
|
+
*/
|
1174
|
+
CustomerManagedPolicyReference?: CustomerManagedPolicyReference;
|
1175
|
+
/**
|
1176
|
+
* The Amazon Web Services managed policy ARN that you want to attach to a permission set as a permissions boundary.
|
1177
|
+
*/
|
1178
|
+
ManagedPolicyArn?: ManagedPolicyArn;
|
1179
|
+
}
|
1022
1180
|
export type PrincipalId = string;
|
1023
1181
|
export type PrincipalType = "USER"|"GROUP"|string;
|
1024
1182
|
export interface ProvisionPermissionSetRequest {
|
@@ -1063,6 +1221,22 @@ declare namespace SSOAdmin {
|
|
1063
1221
|
}
|
1064
1222
|
export interface PutInlinePolicyToPermissionSetResponse {
|
1065
1223
|
}
|
1224
|
+
export interface PutPermissionsBoundaryToPermissionSetRequest {
|
1225
|
+
/**
|
1226
|
+
* The ARN of the SSO instance under which the operation will be executed.
|
1227
|
+
*/
|
1228
|
+
InstanceArn: InstanceArn;
|
1229
|
+
/**
|
1230
|
+
* The ARN of the PermissionSet.
|
1231
|
+
*/
|
1232
|
+
PermissionSetArn: PermissionSetArn;
|
1233
|
+
/**
|
1234
|
+
* The permissions boundary that you want to attach to a PermissionSet.
|
1235
|
+
*/
|
1236
|
+
PermissionsBoundary: PermissionsBoundary;
|
1237
|
+
}
|
1238
|
+
export interface PutPermissionsBoundaryToPermissionSetResponse {
|
1239
|
+
}
|
1066
1240
|
export type Reason = string;
|
1067
1241
|
export type RelayState = string;
|
1068
1242
|
export type StatusValues = "IN_PROGRESS"|"FAILED"|"SUCCEEDED"|string;
|
@@ -1070,11 +1244,11 @@ declare namespace SSOAdmin {
|
|
1070
1244
|
/**
|
1071
1245
|
* The key for the tag.
|
1072
1246
|
*/
|
1073
|
-
Key
|
1247
|
+
Key: TagKey;
|
1074
1248
|
/**
|
1075
1249
|
* The value of the tag.
|
1076
1250
|
*/
|
1077
|
-
Value
|
1251
|
+
Value: TagValue;
|
1078
1252
|
}
|
1079
1253
|
export type TagKey = string;
|
1080
1254
|
export type TagKeyList = TagKey[];
|
@@ -1087,7 +1261,7 @@ declare namespace SSOAdmin {
|
|
1087
1261
|
/**
|
1088
1262
|
* The ARN of the resource with the tags to be listed.
|
1089
1263
|
*/
|
1090
|
-
ResourceArn:
|
1264
|
+
ResourceArn: TaggableResourceArn;
|
1091
1265
|
/**
|
1092
1266
|
* A set of key-value pairs that are used to manage the resource.
|
1093
1267
|
*/
|
@@ -1096,6 +1270,7 @@ declare namespace SSOAdmin {
|
|
1096
1270
|
export interface TagResourceResponse {
|
1097
1271
|
}
|
1098
1272
|
export type TagValue = string;
|
1273
|
+
export type TaggableResourceArn = string;
|
1099
1274
|
export type TargetId = string;
|
1100
1275
|
export type TargetType = "AWS_ACCOUNT"|string;
|
1101
1276
|
export type Token = string;
|
@@ -1108,7 +1283,7 @@ declare namespace SSOAdmin {
|
|
1108
1283
|
/**
|
1109
1284
|
* The ARN of the resource with the tags to be listed.
|
1110
1285
|
*/
|
1111
|
-
ResourceArn:
|
1286
|
+
ResourceArn: TaggableResourceArn;
|
1112
1287
|
/**
|
1113
1288
|
* The keys of tags that are attached to the resource.
|
1114
1289
|
*/
|