@@ -38,6 +38,11 @@ import {
38
38
CreateConfiguredTableAnalysisRuleCommandInput ,
39
39
CreateConfiguredTableAnalysisRuleCommandOutput ,
40
40
} from "./commands/CreateConfiguredTableAnalysisRuleCommand" ;
41
+ import {
42
+ CreateConfiguredTableAssociationAnalysisRuleCommand ,
43
+ CreateConfiguredTableAssociationAnalysisRuleCommandInput ,
44
+ CreateConfiguredTableAssociationAnalysisRuleCommandOutput ,
45
+ } from "./commands/CreateConfiguredTableAssociationAnalysisRuleCommand" ;
41
46
import {
42
47
CreateConfiguredTableAssociationCommand ,
43
48
CreateConfiguredTableAssociationCommandInput ,
@@ -88,6 +93,11 @@ import {
88
93
DeleteConfiguredTableAnalysisRuleCommandInput ,
89
94
DeleteConfiguredTableAnalysisRuleCommandOutput ,
90
95
} from "./commands/DeleteConfiguredTableAnalysisRuleCommand" ;
96
+ import {
97
+ DeleteConfiguredTableAssociationAnalysisRuleCommand ,
98
+ DeleteConfiguredTableAssociationAnalysisRuleCommandInput ,
99
+ DeleteConfiguredTableAssociationAnalysisRuleCommandOutput ,
100
+ } from "./commands/DeleteConfiguredTableAssociationAnalysisRuleCommand" ;
91
101
import {
92
102
DeleteConfiguredTableAssociationCommand ,
93
103
DeleteConfiguredTableAssociationCommandInput ,
@@ -163,6 +173,11 @@ import {
163
173
GetConfiguredTableAnalysisRuleCommandInput ,
164
174
GetConfiguredTableAnalysisRuleCommandOutput ,
165
175
} from "./commands/GetConfiguredTableAnalysisRuleCommand" ;
176
+ import {
177
+ GetConfiguredTableAssociationAnalysisRuleCommand ,
178
+ GetConfiguredTableAssociationAnalysisRuleCommandInput ,
179
+ GetConfiguredTableAssociationAnalysisRuleCommandOutput ,
180
+ } from "./commands/GetConfiguredTableAssociationAnalysisRuleCommand" ;
166
181
import {
167
182
GetConfiguredTableAssociationCommand ,
168
183
GetConfiguredTableAssociationCommandInput ,
@@ -332,6 +347,11 @@ import {
332
347
UpdateConfiguredTableAnalysisRuleCommandInput ,
333
348
UpdateConfiguredTableAnalysisRuleCommandOutput ,
334
349
} from "./commands/UpdateConfiguredTableAnalysisRuleCommand" ;
350
+ import {
351
+ UpdateConfiguredTableAssociationAnalysisRuleCommand ,
352
+ UpdateConfiguredTableAssociationAnalysisRuleCommandInput ,
353
+ UpdateConfiguredTableAssociationAnalysisRuleCommandOutput ,
354
+ } from "./commands/UpdateConfiguredTableAssociationAnalysisRuleCommand" ;
335
355
import {
336
356
UpdateConfiguredTableAssociationCommand ,
337
357
UpdateConfiguredTableAssociationCommandInput ,
@@ -378,6 +398,7 @@ const commands = {
378
398
CreateConfiguredTableCommand,
379
399
CreateConfiguredTableAnalysisRuleCommand,
380
400
CreateConfiguredTableAssociationCommand,
401
+ CreateConfiguredTableAssociationAnalysisRuleCommand,
381
402
CreateIdMappingTableCommand,
382
403
CreateIdNamespaceAssociationCommand,
383
404
CreateMembershipCommand,
@@ -388,6 +409,7 @@ const commands = {
388
409
DeleteConfiguredTableCommand,
389
410
DeleteConfiguredTableAnalysisRuleCommand,
390
411
DeleteConfiguredTableAssociationCommand,
412
+ DeleteConfiguredTableAssociationAnalysisRuleCommand,
391
413
DeleteIdMappingTableCommand,
392
414
DeleteIdNamespaceAssociationCommand,
393
415
DeleteMemberCommand,
@@ -403,6 +425,7 @@ const commands = {
403
425
GetConfiguredTableCommand,
404
426
GetConfiguredTableAnalysisRuleCommand,
405
427
GetConfiguredTableAssociationCommand,
428
+ GetConfiguredTableAssociationAnalysisRuleCommand,
406
429
GetIdMappingTableCommand,
407
430
GetIdNamespaceAssociationCommand,
408
431
GetMembershipCommand,
@@ -440,6 +463,7 @@ const commands = {
440
463
UpdateConfiguredTableCommand,
441
464
UpdateConfiguredTableAnalysisRuleCommand,
442
465
UpdateConfiguredTableAssociationCommand,
466
+ UpdateConfiguredTableAssociationAnalysisRuleCommand,
443
467
UpdateIdMappingTableCommand,
444
468
UpdateIdNamespaceAssociationCommand,
445
469
UpdateMembershipCommand,
@@ -598,6 +622,23 @@ export interface CleanRooms {
598
622
cb : ( err : any , data ?: CreateConfiguredTableAssociationCommandOutput ) => void
599
623
) : void ;
600
624
625
+ /**
626
+ * @see {@link CreateConfiguredTableAssociationAnalysisRuleCommand }
627
+ */
628
+ createConfiguredTableAssociationAnalysisRule (
629
+ args : CreateConfiguredTableAssociationAnalysisRuleCommandInput ,
630
+ options ?: __HttpHandlerOptions
631
+ ) : Promise < CreateConfiguredTableAssociationAnalysisRuleCommandOutput > ;
632
+ createConfiguredTableAssociationAnalysisRule (
633
+ args : CreateConfiguredTableAssociationAnalysisRuleCommandInput ,
634
+ cb : ( err : any , data ?: CreateConfiguredTableAssociationAnalysisRuleCommandOutput ) => void
635
+ ) : void ;
636
+ createConfiguredTableAssociationAnalysisRule (
637
+ args : CreateConfiguredTableAssociationAnalysisRuleCommandInput ,
638
+ options : __HttpHandlerOptions ,
639
+ cb : ( err : any , data ?: CreateConfiguredTableAssociationAnalysisRuleCommandOutput ) => void
640
+ ) : void ;
641
+
601
642
/**
602
643
* @see {@link CreateIdMappingTableCommand }
603
644
*/
@@ -768,6 +809,23 @@ export interface CleanRooms {
768
809
cb : ( err : any , data ?: DeleteConfiguredTableAssociationCommandOutput ) => void
769
810
) : void ;
770
811
812
+ /**
813
+ * @see {@link DeleteConfiguredTableAssociationAnalysisRuleCommand }
814
+ */
815
+ deleteConfiguredTableAssociationAnalysisRule (
816
+ args : DeleteConfiguredTableAssociationAnalysisRuleCommandInput ,
817
+ options ?: __HttpHandlerOptions
818
+ ) : Promise < DeleteConfiguredTableAssociationAnalysisRuleCommandOutput > ;
819
+ deleteConfiguredTableAssociationAnalysisRule (
820
+ args : DeleteConfiguredTableAssociationAnalysisRuleCommandInput ,
821
+ cb : ( err : any , data ?: DeleteConfiguredTableAssociationAnalysisRuleCommandOutput ) => void
822
+ ) : void ;
823
+ deleteConfiguredTableAssociationAnalysisRule (
824
+ args : DeleteConfiguredTableAssociationAnalysisRuleCommandInput ,
825
+ options : __HttpHandlerOptions ,
826
+ cb : ( err : any , data ?: DeleteConfiguredTableAssociationAnalysisRuleCommandOutput ) => void
827
+ ) : void ;
828
+
771
829
/**
772
830
* @see {@link DeleteIdMappingTableCommand }
773
831
*/
@@ -1017,6 +1075,23 @@ export interface CleanRooms {
1017
1075
cb : ( err : any , data ?: GetConfiguredTableAssociationCommandOutput ) => void
1018
1076
) : void ;
1019
1077
1078
+ /**
1079
+ * @see {@link GetConfiguredTableAssociationAnalysisRuleCommand }
1080
+ */
1081
+ getConfiguredTableAssociationAnalysisRule (
1082
+ args : GetConfiguredTableAssociationAnalysisRuleCommandInput ,
1083
+ options ?: __HttpHandlerOptions
1084
+ ) : Promise < GetConfiguredTableAssociationAnalysisRuleCommandOutput > ;
1085
+ getConfiguredTableAssociationAnalysisRule (
1086
+ args : GetConfiguredTableAssociationAnalysisRuleCommandInput ,
1087
+ cb : ( err : any , data ?: GetConfiguredTableAssociationAnalysisRuleCommandOutput ) => void
1088
+ ) : void ;
1089
+ getConfiguredTableAssociationAnalysisRule (
1090
+ args : GetConfiguredTableAssociationAnalysisRuleCommandInput ,
1091
+ options : __HttpHandlerOptions ,
1092
+ cb : ( err : any , data ?: GetConfiguredTableAssociationAnalysisRuleCommandOutput ) => void
1093
+ ) : void ;
1094
+
1020
1095
/**
1021
1096
* @see {@link GetIdMappingTableCommand }
1022
1097
*/
@@ -1610,6 +1685,23 @@ export interface CleanRooms {
1610
1685
cb : ( err : any , data ?: UpdateConfiguredTableAssociationCommandOutput ) => void
1611
1686
) : void ;
1612
1687
1688
+ /**
1689
+ * @see {@link UpdateConfiguredTableAssociationAnalysisRuleCommand }
1690
+ */
1691
+ updateConfiguredTableAssociationAnalysisRule (
1692
+ args : UpdateConfiguredTableAssociationAnalysisRuleCommandInput ,
1693
+ options ?: __HttpHandlerOptions
1694
+ ) : Promise < UpdateConfiguredTableAssociationAnalysisRuleCommandOutput > ;
1695
+ updateConfiguredTableAssociationAnalysisRule (
1696
+ args : UpdateConfiguredTableAssociationAnalysisRuleCommandInput ,
1697
+ cb : ( err : any , data ?: UpdateConfiguredTableAssociationAnalysisRuleCommandOutput ) => void
1698
+ ) : void ;
1699
+ updateConfiguredTableAssociationAnalysisRule (
1700
+ args : UpdateConfiguredTableAssociationAnalysisRuleCommandInput ,
1701
+ options : __HttpHandlerOptions ,
1702
+ cb : ( err : any , data ?: UpdateConfiguredTableAssociationAnalysisRuleCommandOutput ) => void
1703
+ ) : void ;
1704
+
1613
1705
/**
1614
1706
* @see {@link UpdateIdMappingTableCommand }
1615
1707
*/
0 commit comments