@aws-sdk/client-organizations 3.864.0 → 3.866.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.
Files changed (32) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +109 -0
  3. package/dist-es/Organizations.js +4 -0
  4. package/dist-es/commands/ListAccountsWithInvalidEffectivePolicyCommand.js +23 -0
  5. package/dist-es/commands/ListEffectivePolicyValidationErrorsCommand.js +22 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/models_0.js +4 -0
  8. package/dist-es/pagination/ListAccountsWithInvalidEffectivePolicyPaginator.js +4 -0
  9. package/dist-es/pagination/ListEffectivePolicyValidationErrorsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +2 -0
  11. package/dist-es/protocols/Aws_json1_1.js +55 -0
  12. package/dist-types/Organizations.d.ts +14 -0
  13. package/dist-types/OrganizationsClient.d.ts +4 -2
  14. package/dist-types/commands/ListAccountsWithInvalidEffectivePolicyCommand.d.ts +482 -0
  15. package/dist-types/commands/ListEffectivePolicyValidationErrorsCommand.d.ts +453 -0
  16. package/dist-types/commands/index.d.ts +2 -0
  17. package/dist-types/models/models_0.d.ts +292 -0
  18. package/dist-types/pagination/ListAccountsWithInvalidEffectivePolicyPaginator.d.ts +7 -0
  19. package/dist-types/pagination/ListEffectivePolicyValidationErrorsPaginator.d.ts +7 -0
  20. package/dist-types/pagination/index.d.ts +2 -0
  21. package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
  22. package/dist-types/ts3.4/Organizations.d.ts +46 -0
  23. package/dist-types/ts3.4/OrganizationsClient.d.ts +12 -0
  24. package/dist-types/ts3.4/commands/ListAccountsWithInvalidEffectivePolicyCommand.d.ts +51 -0
  25. package/dist-types/ts3.4/commands/ListEffectivePolicyValidationErrorsCommand.d.ts +51 -0
  26. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  27. package/dist-types/ts3.4/models/models_0.d.ts +35 -0
  28. package/dist-types/ts3.4/pagination/ListAccountsWithInvalidEffectivePolicyPaginator.d.ts +11 -0
  29. package/dist-types/ts3.4/pagination/ListEffectivePolicyValidationErrorsPaginator.d.ts +11 -0
  30. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  31. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
  32. package/package.json +1 -1
@@ -0,0 +1,453 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListEffectivePolicyValidationErrorsRequest, ListEffectivePolicyValidationErrorsResponse } from "../models/models_0";
4
+ import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListEffectivePolicyValidationErrorsCommand}.
14
+ */
15
+ export interface ListEffectivePolicyValidationErrorsCommandInput extends ListEffectivePolicyValidationErrorsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListEffectivePolicyValidationErrorsCommand}.
21
+ */
22
+ export interface ListEffectivePolicyValidationErrorsCommandOutput extends ListEffectivePolicyValidationErrorsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListEffectivePolicyValidationErrorsCommand_base: {
25
+ new (input: ListEffectivePolicyValidationErrorsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEffectivePolicyValidationErrorsCommandInput, ListEffectivePolicyValidationErrorsCommandOutput, OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ListEffectivePolicyValidationErrorsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEffectivePolicyValidationErrorsCommandInput, ListEffectivePolicyValidationErrorsCommandOutput, OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Lists all the validation errors on an <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_effective.html">effective policy</a> for a specified account and policy type.</p>
31
+ * <p>This operation can be called only from the organization's
32
+ * management account or by a member account that is a delegated administrator.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { OrganizationsClient, ListEffectivePolicyValidationErrorsCommand } from "@aws-sdk/client-organizations"; // ES Modules import
37
+ * // const { OrganizationsClient, ListEffectivePolicyValidationErrorsCommand } = require("@aws-sdk/client-organizations"); // CommonJS import
38
+ * const client = new OrganizationsClient(config);
39
+ * const input = { // ListEffectivePolicyValidationErrorsRequest
40
+ * AccountId: "STRING_VALUE", // required
41
+ * PolicyType: "TAG_POLICY" || "BACKUP_POLICY" || "AISERVICES_OPT_OUT_POLICY" || "CHATBOT_POLICY" || "DECLARATIVE_POLICY_EC2" || "SECURITYHUB_POLICY", // required
42
+ * NextToken: "STRING_VALUE",
43
+ * MaxResults: Number("int"),
44
+ * };
45
+ * const command = new ListEffectivePolicyValidationErrorsCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // ListEffectivePolicyValidationErrorsResponse
48
+ * // AccountId: "STRING_VALUE",
49
+ * // PolicyType: "TAG_POLICY" || "BACKUP_POLICY" || "AISERVICES_OPT_OUT_POLICY" || "CHATBOT_POLICY" || "DECLARATIVE_POLICY_EC2" || "SECURITYHUB_POLICY",
50
+ * // Path: "STRING_VALUE",
51
+ * // EvaluationTimestamp: new Date("TIMESTAMP"),
52
+ * // NextToken: "STRING_VALUE",
53
+ * // EffectivePolicyValidationErrors: [ // EffectivePolicyValidationErrors
54
+ * // { // EffectivePolicyValidationError
55
+ * // ErrorCode: "STRING_VALUE",
56
+ * // ErrorMessage: "STRING_VALUE",
57
+ * // PathToError: "STRING_VALUE",
58
+ * // ContributingPolicies: [ // PolicyIds
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // },
62
+ * // ],
63
+ * // };
64
+ *
65
+ * ```
66
+ *
67
+ * @param ListEffectivePolicyValidationErrorsCommandInput - {@link ListEffectivePolicyValidationErrorsCommandInput}
68
+ * @returns {@link ListEffectivePolicyValidationErrorsCommandOutput}
69
+ * @see {@link ListEffectivePolicyValidationErrorsCommandInput} for command's `input` shape.
70
+ * @see {@link ListEffectivePolicyValidationErrorsCommandOutput} for command's `response` shape.
71
+ * @see {@link OrganizationsClientResolvedConfig | config} for OrganizationsClient's `config` shape.
72
+ *
73
+ * @throws {@link AccessDeniedException} (client fault)
74
+ * <p>You don't have permissions to perform the requested operation. The user or role that
75
+ * is making the request must have at least one IAM permissions policy attached that
76
+ * grants the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access Management</a> in the
77
+ * <i>IAM User Guide</i>.</p>
78
+ *
79
+ * @throws {@link AccountNotFoundException} (client fault)
80
+ * <p> We can't find an Amazon Web Services account with the <code>AccountId</code> that you specified, or
81
+ * the account whose credentials you used to make this request isn't a member of an
82
+ * organization.</p>
83
+ *
84
+ * @throws {@link AWSOrganizationsNotInUseException} (client fault)
85
+ * <p>Your account isn't a member of an organization. To make this request, you must use the
86
+ * credentials of an account that belongs to an organization.</p>
87
+ *
88
+ * @throws {@link ConstraintViolationException} (client fault)
89
+ * <p>Performing this operation violates a minimum or maximum value limit. For example,
90
+ * attempting to remove the last service control policy (SCP) from an OU or root, inviting
91
+ * or creating too many accounts to the organization, or attaching too many policies to an
92
+ * account, OU, or root. This exception includes a reason that contains additional
93
+ * information about the violated limit:</p>
94
+ * <note>
95
+ * <p>Some of the reasons in the following list might not be applicable to this specific
96
+ * API or operation.</p>
97
+ * </note>
98
+ * <ul>
99
+ * <li>
100
+ * <p>ACCOUNT_CANNOT_LEAVE_ORGANIZATION: You attempted to remove the management
101
+ * account from the organization. You can't remove the management account. Instead,
102
+ * after you remove all member accounts, delete the organization itself.</p>
103
+ * </li>
104
+ * <li>
105
+ * <p>ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an
106
+ * account from the organization that doesn't yet have enough information to exist
107
+ * as a standalone account. This account requires you to first complete phone
108
+ * verification. Follow the steps at <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_accounts_remove.html#orgs_manage_accounts_remove-from-master">Removing a member account from your organization</a> in the
109
+ * <i>Organizations User Guide</i>.</p>
110
+ * </li>
111
+ * <li>
112
+ * <p>ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of
113
+ * accounts that you can create in one day.</p>
114
+ * </li>
115
+ * <li>
116
+ * <p>ACCOUNT_CREATION_NOT_COMPLETE: Your account setup isn't complete or your
117
+ * account isn't fully active. You must complete the account setup before you
118
+ * create an organization.</p>
119
+ * </li>
120
+ * <li>
121
+ * <p>ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number
122
+ * of accounts in an organization. If you need more accounts, contact <a href="https://console.aws.amazon.com/support/home#/">Amazon Web Services Support</a> to
123
+ * request an increase in your limit. </p>
124
+ * <p>Or the number of invitations that you tried to send would cause you to exceed
125
+ * the limit of accounts in your organization. Send fewer invitations or contact
126
+ * Amazon Web Services Support to request an increase in the number of accounts.</p>
127
+ * <note>
128
+ * <p>Deleted and closed accounts still count toward your limit.</p>
129
+ * </note>
130
+ * <important>
131
+ * <p>If you get this exception when running a command immediately after
132
+ * creating the organization, wait one hour and try again. After an hour, if
133
+ * the command continues to fail with this error, contact <a href="https://console.aws.amazon.com/support/home#/">Amazon Web Services Support</a>.</p>
134
+ * </important>
135
+ * </li>
136
+ * <li>
137
+ * <p>ALL_FEATURES_MIGRATION_ORGANIZATION_SIZE_LIMIT_EXCEEDED: Your organization has
138
+ * more than 5000 accounts, and you can only use the standard migration process for
139
+ * organizations with less than 5000 accounts. Use the assisted migration process
140
+ * to enable all features mode, or create a support case for assistance if you are
141
+ * unable to use assisted migration.</p>
142
+ * </li>
143
+ * <li>
144
+ * <p>CANNOT_REGISTER_SUSPENDED_ACCOUNT_AS_DELEGATED_ADMINISTRATOR: You cannot
145
+ * register a suspended account as a delegated administrator.</p>
146
+ * </li>
147
+ * <li>
148
+ * <p>CANNOT_REGISTER_MASTER_AS_DELEGATED_ADMINISTRATOR: You attempted to register
149
+ * the management account of the organization as a delegated administrator for an
150
+ * Amazon Web Services service integrated with Organizations. You can designate only a member account as a
151
+ * delegated administrator.</p>
152
+ * </li>
153
+ * <li>
154
+ * <p>CANNOT_CLOSE_MANAGEMENT_ACCOUNT: You attempted to close the management
155
+ * account. To close the management account for the organization, you must first
156
+ * either remove or close all member accounts in the organization. Follow standard
157
+ * account closure process using root credentials.​ </p>
158
+ * </li>
159
+ * <li>
160
+ * <p>CANNOT_REMOVE_DELEGATED_ADMINISTRATOR_FROM_ORG: You attempted to remove an
161
+ * account that is registered as a delegated administrator for a service integrated
162
+ * with your organization. To complete this operation, you must first deregister
163
+ * this account as a delegated administrator. </p>
164
+ * </li>
165
+ * <li>
166
+ * <p>CLOSE_ACCOUNT_QUOTA_EXCEEDED: You have exceeded close account quota for the
167
+ * past 30 days. </p>
168
+ * </li>
169
+ * <li>
170
+ * <p>CLOSE_ACCOUNT_REQUESTS_LIMIT_EXCEEDED: You attempted to exceed the number of
171
+ * accounts that you can close at a time. ​ </p>
172
+ * </li>
173
+ * <li>
174
+ * <p>CREATE_ORGANIZATION_IN_BILLING_MODE_UNSUPPORTED_REGION: To create an
175
+ * organization in the specified region, you must enable all features mode.</p>
176
+ * </li>
177
+ * <li>
178
+ * <p>DELEGATED_ADMINISTRATOR_EXISTS_FOR_THIS_SERVICE: You attempted to register an
179
+ * Amazon Web Services account as a delegated administrator for an Amazon Web Services service that already has
180
+ * a delegated administrator. To complete this operation, you must first deregister
181
+ * any existing delegated administrators for this service.</p>
182
+ * </li>
183
+ * <li>
184
+ * <p>EMAIL_VERIFICATION_CODE_EXPIRED: The email verification code is only valid for
185
+ * a limited period of time. You must resubmit the request and generate a new
186
+ * verfication code.</p>
187
+ * </li>
188
+ * <li>
189
+ * <p>HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of
190
+ * handshakes that you can send in one day.</p>
191
+ * </li>
192
+ * <li>
193
+ * <p>INVALID_PAYMENT_INSTRUMENT: You cannot remove an account because no supported
194
+ * payment method is associated with the account. Amazon Web Services does not support cards
195
+ * issued by financial institutions in Russia or Belarus. For more information, see
196
+ * <a href="https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/manage-general.html">Managing your
197
+ * Amazon Web Services payments</a>.</p>
198
+ * </li>
199
+ * <li>
200
+ * <p>MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in
201
+ * this organization, you first must migrate the organization's management account
202
+ * to the marketplace that corresponds to the management account's address. All
203
+ * accounts in an organization must be associated with the same marketplace.</p>
204
+ * </li>
205
+ * <li>
206
+ * <p>MASTER_ACCOUNT_MISSING_BUSINESS_LICENSE: Applies only to the Amazon Web Services Regions in
207
+ * China. To create an organization, the master must have a valid business license.
208
+ * For more information, contact customer support.</p>
209
+ * </li>
210
+ * <li>
211
+ * <p>MASTER_ACCOUNT_MISSING_CONTACT_INFO: To complete this operation, you must
212
+ * first provide a valid contact address and phone number for the management
213
+ * account. Then try the operation again.</p>
214
+ * </li>
215
+ * <li>
216
+ * <p>MASTER_ACCOUNT_NOT_GOVCLOUD_ENABLED: To complete this operation, the
217
+ * management account must have an associated account in the Amazon Web Services GovCloud
218
+ * (US-West) Region. For more information, see <a href="https://docs.aws.amazon.com/govcloud-us/latest/UserGuide/govcloud-organizations.html">Organizations</a>
219
+ * in the
220
+ * <i>Amazon Web Services GovCloud User Guide</i>.</p>
221
+ * </li>
222
+ * <li>
223
+ * <p>MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with
224
+ * this management account, you first must associate a valid payment instrument,
225
+ * such as a credit card, with the account. For more information, see <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_account-before-remove.html">Considerations before removing an account from an organization</a> in
226
+ * the <i>Organizations User Guide</i>.</p>
227
+ * </li>
228
+ * <li>
229
+ * <p>MAX_DELEGATED_ADMINISTRATORS_FOR_SERVICE_LIMIT_EXCEEDED: You attempted to
230
+ * register more delegated administrators than allowed for the service principal.
231
+ * </p>
232
+ * </li>
233
+ * <li>
234
+ * <p>MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number
235
+ * of policies of a certain type that can be attached to an entity at one
236
+ * time.</p>
237
+ * </li>
238
+ * <li>
239
+ * <p>MAX_TAG_LIMIT_EXCEEDED: You have exceeded the number of tags allowed on this
240
+ * resource. </p>
241
+ * </li>
242
+ * <li>
243
+ * <p>MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with
244
+ * this member account, you first must associate a valid payment instrument, such
245
+ * as a credit card, with the account. For more information, see <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_account-before-remove.html">Considerations before removing an account from an organization</a> in
246
+ * the <i>Organizations User Guide</i>.</p>
247
+ * </li>
248
+ * <li>
249
+ * <p>MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy
250
+ * from an entity that would cause the entity to have fewer than the minimum number
251
+ * of policies of a certain type required.</p>
252
+ * </li>
253
+ * <li>
254
+ * <p>ORGANIZATION_NOT_IN_ALL_FEATURES_MODE: You attempted to perform an operation
255
+ * that requires the organization to be configured to support all features. An
256
+ * organization that supports only consolidated billing features can't perform this
257
+ * operation.</p>
258
+ * </li>
259
+ * <li>
260
+ * <p>OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an OU tree that is too many
261
+ * levels deep.</p>
262
+ * </li>
263
+ * <li>
264
+ * <p>OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of OUs that you
265
+ * can have in an organization.</p>
266
+ * </li>
267
+ * <li>
268
+ * <p>POLICY_CONTENT_LIMIT_EXCEEDED: You attempted to create a policy that is larger
269
+ * than the maximum size.</p>
270
+ * </li>
271
+ * <li>
272
+ * <p>POLICY_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of policies
273
+ * that you can have in an organization.</p>
274
+ * </li>
275
+ * <li>
276
+ * <p>POLICY_TYPE_ENABLED_FOR_THIS_SERVICE: You attempted to disable service access
277
+ * before you disabled the policy type (for example, SECURITYHUB_POLICY). To
278
+ * complete this operation, you must first disable the policy type.</p>
279
+ * </li>
280
+ * <li>
281
+ * <p>SERVICE_ACCESS_NOT_ENABLED:</p>
282
+ * <ul>
283
+ * <li>
284
+ * <p>You attempted to register a delegated administrator before you enabled
285
+ * service access. Call the <code>EnableAWSServiceAccess</code> API
286
+ * first.</p>
287
+ * </li>
288
+ * <li>
289
+ * <p>You attempted to enable a policy type before you enabled service
290
+ * access. Call the <code>EnableAWSServiceAccess</code> API first.</p>
291
+ * </li>
292
+ * </ul>
293
+ * </li>
294
+ * <li>
295
+ * <p>TAG_POLICY_VIOLATION: You attempted to create or update a resource with tags
296
+ * that are not compliant with the tag policy requirements for this account.</p>
297
+ * </li>
298
+ * <li>
299
+ * <p>WAIT_PERIOD_ACTIVE: After you create an Amazon Web Services account, you must wait until at
300
+ * least seven days after the account was created. Invited accounts aren't subject
301
+ * to this waiting period.</p>
302
+ * </li>
303
+ * </ul>
304
+ *
305
+ * @throws {@link EffectivePolicyNotFoundException} (client fault)
306
+ * <p>If you ran this action on the management account, this policy type is not enabled. If
307
+ * you ran the action on a member account, the account doesn't have an effective policy of
308
+ * this type. Contact the administrator of your organization about attaching a policy of
309
+ * this type to the account. </p>
310
+ *
311
+ * @throws {@link InvalidInputException} (client fault)
312
+ * <p>The requested operation failed because you provided invalid values for one or more of
313
+ * the request parameters. This exception includes a reason that contains additional
314
+ * information about the violated limit:</p>
315
+ * <note>
316
+ * <p>Some of the reasons in the following list might not be applicable to this specific
317
+ * API or operation.</p>
318
+ * </note>
319
+ * <ul>
320
+ * <li>
321
+ * <p>DUPLICATE_TAG_KEY: Tag keys must be unique among the tags attached to the same
322
+ * entity.</p>
323
+ * </li>
324
+ * <li>
325
+ * <p>IMMUTABLE_POLICY: You specified a policy that is managed by Amazon Web Services and can't be
326
+ * modified.</p>
327
+ * </li>
328
+ * <li>
329
+ * <p>INPUT_REQUIRED: You must include a value for all required parameters.</p>
330
+ * </li>
331
+ * <li>
332
+ * <p>INVALID_EMAIL_ADDRESS_TARGET: You specified an invalid email address for the
333
+ * invited account owner.</p>
334
+ * </li>
335
+ * <li>
336
+ * <p>INVALID_ENUM: You specified an invalid value.</p>
337
+ * </li>
338
+ * <li>
339
+ * <p>INVALID_ENUM_POLICY_TYPE: You specified an invalid policy type string.</p>
340
+ * </li>
341
+ * <li>
342
+ * <p>INVALID_FULL_NAME_TARGET: You specified a full name that contains invalid
343
+ * characters.</p>
344
+ * </li>
345
+ * <li>
346
+ * <p>INVALID_LIST_MEMBER: You provided a list to a parameter that contains at least
347
+ * one invalid value.</p>
348
+ * </li>
349
+ * <li>
350
+ * <p>INVALID_PAGINATION_TOKEN: Get the value for the <code>NextToken</code>
351
+ * parameter from the response to a previous call of the operation.</p>
352
+ * </li>
353
+ * <li>
354
+ * <p>INVALID_PARTY_TYPE_TARGET: You specified the wrong type of entity (account,
355
+ * organization, or email) as a party.</p>
356
+ * </li>
357
+ * <li>
358
+ * <p>INVALID_PATTERN: You provided a value that doesn't match the required
359
+ * pattern.</p>
360
+ * </li>
361
+ * <li>
362
+ * <p>INVALID_PATTERN_TARGET_ID: You specified a policy target ID that doesn't match
363
+ * the required pattern.</p>
364
+ * </li>
365
+ * <li>
366
+ * <p>INVALID_PRINCIPAL: You specified an invalid principal element in the
367
+ * policy.</p>
368
+ * </li>
369
+ * <li>
370
+ * <p>INVALID_ROLE_NAME: You provided a role name that isn't valid. A role name
371
+ * can't begin with the reserved prefix <code>AWSServiceRoleFor</code>.</p>
372
+ * </li>
373
+ * <li>
374
+ * <p>INVALID_SYNTAX_ORGANIZATION_ARN: You specified an invalid Amazon Resource Name
375
+ * (ARN) for the organization.</p>
376
+ * </li>
377
+ * <li>
378
+ * <p>INVALID_SYNTAX_POLICY_ID: You specified an invalid policy ID. </p>
379
+ * </li>
380
+ * <li>
381
+ * <p>INVALID_SYSTEM_TAGS_PARAMETER: You specified a tag key that is a system tag.
382
+ * You can’t add, edit, or delete system tag keys because they're reserved for
383
+ * Amazon Web Services use. System tags don’t count against your tags per resource limit.</p>
384
+ * </li>
385
+ * <li>
386
+ * <p>MAX_FILTER_LIMIT_EXCEEDED: You can specify only one filter parameter for the
387
+ * operation.</p>
388
+ * </li>
389
+ * <li>
390
+ * <p>MAX_LENGTH_EXCEEDED: You provided a string parameter that is longer than
391
+ * allowed.</p>
392
+ * </li>
393
+ * <li>
394
+ * <p>MAX_VALUE_EXCEEDED: You provided a numeric parameter that has a larger value
395
+ * than allowed.</p>
396
+ * </li>
397
+ * <li>
398
+ * <p>MIN_LENGTH_EXCEEDED: You provided a string parameter that is shorter than
399
+ * allowed.</p>
400
+ * </li>
401
+ * <li>
402
+ * <p>MIN_VALUE_EXCEEDED: You provided a numeric parameter that has a smaller value
403
+ * than allowed.</p>
404
+ * </li>
405
+ * <li>
406
+ * <p>MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS: You can move an account only between
407
+ * entities in the same root.</p>
408
+ * </li>
409
+ * <li>
410
+ * <p>NON_DETACHABLE_POLICY: You can't detach this Amazon Web Services Managed Policy.</p>
411
+ * </li>
412
+ * <li>
413
+ * <p>TARGET_NOT_SUPPORTED: You can't perform the specified operation on that target
414
+ * entity.</p>
415
+ * </li>
416
+ * <li>
417
+ * <p>UNRECOGNIZED_SERVICE_PRINCIPAL: You specified a service principal that isn't
418
+ * recognized.</p>
419
+ * </li>
420
+ * </ul>
421
+ *
422
+ * @throws {@link ServiceException} (server fault)
423
+ * <p>Organizations can't complete your request because of an internal service error. Try again
424
+ * later.</p>
425
+ *
426
+ * @throws {@link TooManyRequestsException} (client fault)
427
+ * <p>You have sent too many requests in too short a period of time. The quota helps protect
428
+ * against denial-of-service attacks. Try again later.</p>
429
+ * <p>For information about quotas that affect Organizations, see <a href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_reference_limits.html">Quotas for Organizations</a> in the
430
+ * <i>Organizations User Guide</i>.</p>
431
+ *
432
+ * @throws {@link UnsupportedAPIEndpointException} (client fault)
433
+ * <p>This action isn't available in the current Amazon Web Services Region.</p>
434
+ *
435
+ * @throws {@link OrganizationsServiceException}
436
+ * <p>Base exception class for all service exceptions from Organizations service.</p>
437
+ *
438
+ *
439
+ * @public
440
+ */
441
+ export declare class ListEffectivePolicyValidationErrorsCommand extends ListEffectivePolicyValidationErrorsCommand_base {
442
+ /** @internal type navigation helper, not in runtime. */
443
+ protected static __types: {
444
+ api: {
445
+ input: ListEffectivePolicyValidationErrorsRequest;
446
+ output: ListEffectivePolicyValidationErrorsResponse;
447
+ };
448
+ sdk: {
449
+ input: ListEffectivePolicyValidationErrorsCommandInput;
450
+ output: ListEffectivePolicyValidationErrorsCommandOutput;
451
+ };
452
+ };
453
+ }
@@ -32,10 +32,12 @@ export * from "./LeaveOrganizationCommand";
32
32
  export * from "./ListAWSServiceAccessForOrganizationCommand";
33
33
  export * from "./ListAccountsCommand";
34
34
  export * from "./ListAccountsForParentCommand";
35
+ export * from "./ListAccountsWithInvalidEffectivePolicyCommand";
35
36
  export * from "./ListChildrenCommand";
36
37
  export * from "./ListCreateAccountStatusCommand";
37
38
  export * from "./ListDelegatedAdministratorsCommand";
38
39
  export * from "./ListDelegatedServicesForAccountCommand";
40
+ export * from "./ListEffectivePolicyValidationErrorsCommand";
39
41
  export * from "./ListHandshakesForAccountCommand";
40
42
  export * from "./ListHandshakesForOrganizationCommand";
41
43
  export * from "./ListOrganizationalUnitsForParentCommand";