@@ -167,6 +167,11 @@ import {
167167 ListAccountsForParentCommandInput ,
168168 ListAccountsForParentCommandOutput ,
169169} from "./commands/ListAccountsForParentCommand" ;
170+ import {
171+ ListAccountsWithInvalidEffectivePolicyCommand ,
172+ ListAccountsWithInvalidEffectivePolicyCommandInput ,
173+ ListAccountsWithInvalidEffectivePolicyCommandOutput ,
174+ } from "./commands/ListAccountsWithInvalidEffectivePolicyCommand" ;
170175import {
171176 ListAWSServiceAccessForOrganizationCommand ,
172177 ListAWSServiceAccessForOrganizationCommandInput ,
@@ -192,6 +197,11 @@ import {
192197 ListDelegatedServicesForAccountCommandInput ,
193198 ListDelegatedServicesForAccountCommandOutput ,
194199} from "./commands/ListDelegatedServicesForAccountCommand" ;
200+ import {
201+ ListEffectivePolicyValidationErrorsCommand ,
202+ ListEffectivePolicyValidationErrorsCommandInput ,
203+ ListEffectivePolicyValidationErrorsCommandOutput ,
204+ } from "./commands/ListEffectivePolicyValidationErrorsCommand" ;
195205import {
196206 ListHandshakesForAccountCommand ,
197207 ListHandshakesForAccountCommandInput ,
@@ -297,11 +307,13 @@ const commands = {
297307 LeaveOrganizationCommand,
298308 ListAccountsCommand,
299309 ListAccountsForParentCommand,
310+ ListAccountsWithInvalidEffectivePolicyCommand,
300311 ListAWSServiceAccessForOrganizationCommand,
301312 ListChildrenCommand,
302313 ListCreateAccountStatusCommand,
303314 ListDelegatedAdministratorsCommand,
304315 ListDelegatedServicesForAccountCommand,
316+ ListEffectivePolicyValidationErrorsCommand,
305317 ListHandshakesForAccountCommand,
306318 ListHandshakesForOrganizationCommand,
307319 ListOrganizationalUnitsForParentCommand,
@@ -837,6 +849,23 @@ export interface Organizations {
837849 cb : ( err : any , data ?: ListAccountsForParentCommandOutput ) => void
838850 ) : void ;
839851
852+ /**
853+ * @see {@link ListAccountsWithInvalidEffectivePolicyCommand }
854+ */
855+ listAccountsWithInvalidEffectivePolicy (
856+ args : ListAccountsWithInvalidEffectivePolicyCommandInput ,
857+ options ?: __HttpHandlerOptions
858+ ) : Promise < ListAccountsWithInvalidEffectivePolicyCommandOutput > ;
859+ listAccountsWithInvalidEffectivePolicy (
860+ args : ListAccountsWithInvalidEffectivePolicyCommandInput ,
861+ cb : ( err : any , data ?: ListAccountsWithInvalidEffectivePolicyCommandOutput ) => void
862+ ) : void ;
863+ listAccountsWithInvalidEffectivePolicy (
864+ args : ListAccountsWithInvalidEffectivePolicyCommandInput ,
865+ options : __HttpHandlerOptions ,
866+ cb : ( err : any , data ?: ListAccountsWithInvalidEffectivePolicyCommandOutput ) => void
867+ ) : void ;
868+
840869 /**
841870 * @see {@link ListAWSServiceAccessForOrganizationCommand }
842871 */
@@ -919,6 +948,23 @@ export interface Organizations {
919948 cb : ( err : any , data ?: ListDelegatedServicesForAccountCommandOutput ) => void
920949 ) : void ;
921950
951+ /**
952+ * @see {@link ListEffectivePolicyValidationErrorsCommand }
953+ */
954+ listEffectivePolicyValidationErrors (
955+ args : ListEffectivePolicyValidationErrorsCommandInput ,
956+ options ?: __HttpHandlerOptions
957+ ) : Promise < ListEffectivePolicyValidationErrorsCommandOutput > ;
958+ listEffectivePolicyValidationErrors (
959+ args : ListEffectivePolicyValidationErrorsCommandInput ,
960+ cb : ( err : any , data ?: ListEffectivePolicyValidationErrorsCommandOutput ) => void
961+ ) : void ;
962+ listEffectivePolicyValidationErrors (
963+ args : ListEffectivePolicyValidationErrorsCommandInput ,
964+ options : __HttpHandlerOptions ,
965+ cb : ( err : any , data ?: ListEffectivePolicyValidationErrorsCommandOutput ) => void
966+ ) : void ;
967+
922968 /**
923969 * @see {@link ListHandshakesForAccountCommand }
924970 */
0 commit comments