cdk-comprehend-s3olap 2.0.39 → 2.0.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +15 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.min.json +174 -35
  8. package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.paginators.json +17 -0
  9. package/node_modules/aws-sdk/apis/discovery-2015-11-01.min.json +38 -3
  10. package/node_modules/aws-sdk/apis/elasticache-2015-02-02.min.json +4 -1
  11. package/node_modules/aws-sdk/apis/kms-2014-11-01.min.json +1 -4
  12. package/node_modules/aws-sdk/apis/kms-2014-11-01.paginators.json +21 -0
  13. package/node_modules/aws-sdk/apis/mediapackage-2017-10-12.min.json +4 -0
  14. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +928 -551
  15. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.paginators.json +12 -0
  16. package/node_modules/aws-sdk/apis/sagemaker-edge-2020-09-23.min.json +84 -4
  17. package/node_modules/aws-sdk/apis/sso-admin-2020-07-20.min.json +181 -36
  18. package/node_modules/aws-sdk/apis/sso-admin-2020-07-20.paginators.json +6 -0
  19. package/node_modules/aws-sdk/clients/devopsguru.d.ts +188 -0
  20. package/node_modules/aws-sdk/clients/discovery.d.ts +10 -0
  21. package/node_modules/aws-sdk/clients/ec2.d.ts +79 -55
  22. package/node_modules/aws-sdk/clients/elasticache.d.ts +12 -8
  23. package/node_modules/aws-sdk/clients/glue.d.ts +3 -3
  24. package/node_modules/aws-sdk/clients/kms.d.ts +46 -46
  25. package/node_modules/aws-sdk/clients/mediapackage.d.ts +6 -2
  26. package/node_modules/aws-sdk/clients/sagemaker.d.ts +476 -1
  27. package/node_modules/aws-sdk/clients/sagemakeredge.d.ts +146 -0
  28. package/node_modules/aws-sdk/clients/ssoadmin.d.ts +191 -16
  29. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  30. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +13 -13
  31. package/node_modules/aws-sdk/dist/aws-sdk.js +29 -8
  32. package/node_modules/aws-sdk/dist/aws-sdk.min.js +56 -56
  33. package/node_modules/aws-sdk/lib/core.js +1 -1
  34. package/node_modules/aws-sdk/package.json +1 -1
  35. package/package.json +6 -6
@@ -11,6 +11,14 @@ declare class SagemakerEdge extends Service {
11
11
  */
12
12
  constructor(options?: SagemakerEdge.Types.ClientConfiguration)
13
13
  config: Config & SagemakerEdge.Types.ClientConfiguration;
14
+ /**
15
+ * Use to get the active deployments from a device.
16
+ */
17
+ getDeployments(params: SagemakerEdge.Types.GetDeploymentsRequest, callback?: (err: AWSError, data: SagemakerEdge.Types.GetDeploymentsResult) => void): Request<SagemakerEdge.Types.GetDeploymentsResult, AWSError>;
18
+ /**
19
+ * Use to get the active deployments from a device.
20
+ */
21
+ getDeployments(callback?: (err: AWSError, data: SagemakerEdge.Types.GetDeploymentsResult) => void): Request<SagemakerEdge.Types.GetDeploymentsResult, AWSError>;
14
22
  /**
15
23
  * Use to check if a device is registered with SageMaker Edge Manager.
16
24
  */
@@ -30,10 +38,123 @@ declare class SagemakerEdge extends Service {
30
38
  }
31
39
  declare namespace SagemakerEdge {
32
40
  export type CacheTTLSeconds = string;
41
+ export interface Checksum {
42
+ /**
43
+ * The type of the checksum.
44
+ */
45
+ Type?: ChecksumType;
46
+ /**
47
+ * The checksum of the model.
48
+ */
49
+ Sum?: ChecksumString;
50
+ }
51
+ export type ChecksumString = string;
52
+ export type ChecksumType = "SHA1"|string;
53
+ export interface Definition {
54
+ /**
55
+ * The unique model handle.
56
+ */
57
+ ModelHandle?: EntityName;
58
+ /**
59
+ * The absolute S3 location of the model.
60
+ */
61
+ S3Url?: S3Uri;
62
+ /**
63
+ * The checksum information of the model.
64
+ */
65
+ Checksum?: Checksum;
66
+ /**
67
+ * The desired state of the model.
68
+ */
69
+ State?: ModelState;
70
+ }
71
+ export type Definitions = Definition[];
72
+ export interface DeploymentModel {
73
+ /**
74
+ * The unique handle of the model.
75
+ */
76
+ ModelHandle?: EntityName;
77
+ /**
78
+ * The name of the model.
79
+ */
80
+ ModelName?: ModelName;
81
+ /**
82
+ * The version of the model.
83
+ */
84
+ ModelVersion?: Version;
85
+ /**
86
+ * The desired state of the model.
87
+ */
88
+ DesiredState?: ModelState;
89
+ /**
90
+ * Returns the current state of the model.
91
+ */
92
+ State?: ModelState;
93
+ /**
94
+ * Returns the deployment status of the model.
95
+ */
96
+ Status?: DeploymentStatus;
97
+ /**
98
+ * Returns the error message for the deployment status result.
99
+ */
100
+ StatusReason?: String;
101
+ /**
102
+ * Returns the error message if there is a rollback.
103
+ */
104
+ RollbackFailureReason?: String;
105
+ }
106
+ export type DeploymentModels = DeploymentModel[];
107
+ export interface DeploymentResult {
108
+ /**
109
+ * The name and unique ID of the deployment.
110
+ */
111
+ DeploymentName?: EntityName;
112
+ /**
113
+ * Returns the bucket error code.
114
+ */
115
+ DeploymentStatus?: EntityName;
116
+ /**
117
+ * Returns the detailed error message.
118
+ */
119
+ DeploymentStatusMessage?: String;
120
+ /**
121
+ * The timestamp of when the deployment was started on the agent.
122
+ */
123
+ DeploymentStartTime?: Timestamp;
124
+ /**
125
+ * The timestamp of when the deployment was ended, and the agent got the deployment results.
126
+ */
127
+ DeploymentEndTime?: Timestamp;
128
+ /**
129
+ * Returns a list of models deployed on the agent.
130
+ */
131
+ DeploymentModels?: DeploymentModels;
132
+ }
133
+ export type DeploymentStatus = "SUCCESS"|"FAIL"|string;
134
+ export type DeploymentType = "Model"|string;
33
135
  export type DeviceFleetName = string;
34
136
  export type DeviceName = string;
35
137
  export type DeviceRegistration = string;
36
138
  export type Dimension = string;
139
+ export interface EdgeDeployment {
140
+ /**
141
+ * The name and unique ID of the deployment.
142
+ */
143
+ DeploymentName?: EntityName;
144
+ /**
145
+ * The type of the deployment.
146
+ */
147
+ Type?: DeploymentType;
148
+ /**
149
+ * Determines whether to rollback to previous configuration if deployment fails.
150
+ */
151
+ FailureHandlingPolicy?: FailureHandlingPolicy;
152
+ /**
153
+ * Returns a list of Definition objects.
154
+ */
155
+ Definitions?: Definitions;
156
+ }
157
+ export type EdgeDeployments = EdgeDeployment[];
37
158
  export interface EdgeMetric {
38
159
  /**
39
160
  * The dimension of metrics published.
@@ -53,6 +174,24 @@ declare namespace SagemakerEdge {
53
174
  Timestamp?: Timestamp;
54
175
  }
55
176
  export type EdgeMetrics = EdgeMetric[];
177
+ export type EntityName = string;
178
+ export type FailureHandlingPolicy = "ROLLBACK_ON_FAILURE"|"DO_NOTHING"|string;
179
+ export interface GetDeploymentsRequest {
180
+ /**
181
+ * The unique name of the device you want to get the configuration of active deployments from.
182
+ */
183
+ DeviceName: DeviceName;
184
+ /**
185
+ * The name of the fleet that the device belongs to.
186
+ */
187
+ DeviceFleetName: DeviceFleetName;
188
+ }
189
+ export interface GetDeploymentsResult {
190
+ /**
191
+ * Returns a list of the configurations of the active deployments on the device.
192
+ */
193
+ Deployments?: EdgeDeployments;
194
+ }
56
195
  export interface GetDeviceRegistrationRequest {
57
196
  /**
58
197
  * The unique name of the device you want to get the registration status from.
@@ -97,7 +236,9 @@ declare namespace SagemakerEdge {
97
236
  ModelMetrics?: EdgeMetrics;
98
237
  }
99
238
  export type ModelName = string;
239
+ export type ModelState = "DEPLOY"|"UNDEPLOY"|string;
100
240
  export type Models = Model[];
241
+ export type S3Uri = string;
101
242
  export interface SendHeartbeatRequest {
102
243
  /**
103
244
  * For internal use. Returns a list of SageMaker Edge Manager agent operating metrics.
@@ -119,7 +260,12 @@ declare namespace SagemakerEdge {
119
260
  * The name of the fleet that the device belongs to.
120
261
  */
121
262
  DeviceFleetName: DeviceFleetName;
263
+ /**
264
+ * Returns the result of a deployment on the device.
265
+ */
266
+ DeploymentResult?: DeploymentResult;
122
267
  }
268
+ export type String = string;
123
269
  export type Timestamp = Date;
124
270
  export type Value = number;
125
271
  export type Version = string;
@@ -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 an IAM managed 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.
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 IAM managed 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.
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 attached IAM managed policy ARN from the specified permission set.
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 IAM managed policy ARN from the specified permission set.
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 IAM managed policy that is attached to a specified permission set.
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 IAM managed policy that is attached to a specified permission set.
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 IAM managed policy ARN to be attached to a permission set.
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 IAM managed policy.
440
+ * The name of the Amazon Web Services managed IAM policy.
377
441
  */
378
442
  Name?: Name;
379
443
  /**
380
- * The ARN of the IAM managed policy. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
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 IAM managed policy ARN to be attached to a permission set.
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: GeneralArn;
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?: TagKey;
1247
+ Key: TagKey;
1074
1248
  /**
1075
1249
  * The value of the tag.
1076
1250
  */
1077
- Value?: TagValue;
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: GeneralArn;
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: GeneralArn;
1286
+ ResourceArn: TaggableResourceArn;
1112
1287
  /**
1113
1288
  * The keys of tags that are attached to the resource.
1114
1289
  */
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1176.0',
86
+ VERSION: '2.1178.0',
87
87
 
88
88
  /**
89
89
  * @api private