@@ -167,6 +167,11 @@ import {
167
167
ListAccountsForParentCommandInput ,
168
168
ListAccountsForParentCommandOutput ,
169
169
} from "./commands/ListAccountsForParentCommand" ;
170
+ import {
171
+ ListAccountsWithInvalidEffectivePolicyCommand ,
172
+ ListAccountsWithInvalidEffectivePolicyCommandInput ,
173
+ ListAccountsWithInvalidEffectivePolicyCommandOutput ,
174
+ } from "./commands/ListAccountsWithInvalidEffectivePolicyCommand" ;
170
175
import {
171
176
ListAWSServiceAccessForOrganizationCommand ,
172
177
ListAWSServiceAccessForOrganizationCommandInput ,
@@ -192,6 +197,11 @@ import {
192
197
ListDelegatedServicesForAccountCommandInput ,
193
198
ListDelegatedServicesForAccountCommandOutput ,
194
199
} from "./commands/ListDelegatedServicesForAccountCommand" ;
200
+ import {
201
+ ListEffectivePolicyValidationErrorsCommand ,
202
+ ListEffectivePolicyValidationErrorsCommandInput ,
203
+ ListEffectivePolicyValidationErrorsCommandOutput ,
204
+ } from "./commands/ListEffectivePolicyValidationErrorsCommand" ;
195
205
import {
196
206
ListHandshakesForAccountCommand ,
197
207
ListHandshakesForAccountCommandInput ,
@@ -297,11 +307,13 @@ const commands = {
297
307
LeaveOrganizationCommand,
298
308
ListAccountsCommand,
299
309
ListAccountsForParentCommand,
310
+ ListAccountsWithInvalidEffectivePolicyCommand,
300
311
ListAWSServiceAccessForOrganizationCommand,
301
312
ListChildrenCommand,
302
313
ListCreateAccountStatusCommand,
303
314
ListDelegatedAdministratorsCommand,
304
315
ListDelegatedServicesForAccountCommand,
316
+ ListEffectivePolicyValidationErrorsCommand,
305
317
ListHandshakesForAccountCommand,
306
318
ListHandshakesForOrganizationCommand,
307
319
ListOrganizationalUnitsForParentCommand,
@@ -837,6 +849,23 @@ export interface Organizations {
837
849
cb : ( err : any , data ?: ListAccountsForParentCommandOutput ) => void
838
850
) : void ;
839
851
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
+
840
869
/**
841
870
* @see {@link ListAWSServiceAccessForOrganizationCommand }
842
871
*/
@@ -919,6 +948,23 @@ export interface Organizations {
919
948
cb : ( err : any , data ?: ListDelegatedServicesForAccountCommandOutput ) => void
920
949
) : void ;
921
950
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
+
922
968
/**
923
969
* @see {@link ListHandshakesForAccountCommand }
924
970
*/
0 commit comments