@@ -38,6 +38,11 @@ import {
3838 CreateConfiguredTableAnalysisRuleCommandInput ,
3939 CreateConfiguredTableAnalysisRuleCommandOutput ,
4040} from "./commands/CreateConfiguredTableAnalysisRuleCommand" ;
41+ import {
42+ CreateConfiguredTableAssociationAnalysisRuleCommand ,
43+ CreateConfiguredTableAssociationAnalysisRuleCommandInput ,
44+ CreateConfiguredTableAssociationAnalysisRuleCommandOutput ,
45+ } from "./commands/CreateConfiguredTableAssociationAnalysisRuleCommand" ;
4146import {
4247 CreateConfiguredTableAssociationCommand ,
4348 CreateConfiguredTableAssociationCommandInput ,
@@ -88,6 +93,11 @@ import {
8893 DeleteConfiguredTableAnalysisRuleCommandInput ,
8994 DeleteConfiguredTableAnalysisRuleCommandOutput ,
9095} from "./commands/DeleteConfiguredTableAnalysisRuleCommand" ;
96+ import {
97+ DeleteConfiguredTableAssociationAnalysisRuleCommand ,
98+ DeleteConfiguredTableAssociationAnalysisRuleCommandInput ,
99+ DeleteConfiguredTableAssociationAnalysisRuleCommandOutput ,
100+ } from "./commands/DeleteConfiguredTableAssociationAnalysisRuleCommand" ;
91101import {
92102 DeleteConfiguredTableAssociationCommand ,
93103 DeleteConfiguredTableAssociationCommandInput ,
@@ -163,6 +173,11 @@ import {
163173 GetConfiguredTableAnalysisRuleCommandInput ,
164174 GetConfiguredTableAnalysisRuleCommandOutput ,
165175} from "./commands/GetConfiguredTableAnalysisRuleCommand" ;
176+ import {
177+ GetConfiguredTableAssociationAnalysisRuleCommand ,
178+ GetConfiguredTableAssociationAnalysisRuleCommandInput ,
179+ GetConfiguredTableAssociationAnalysisRuleCommandOutput ,
180+ } from "./commands/GetConfiguredTableAssociationAnalysisRuleCommand" ;
166181import {
167182 GetConfiguredTableAssociationCommand ,
168183 GetConfiguredTableAssociationCommandInput ,
@@ -332,6 +347,11 @@ import {
332347 UpdateConfiguredTableAnalysisRuleCommandInput ,
333348 UpdateConfiguredTableAnalysisRuleCommandOutput ,
334349} from "./commands/UpdateConfiguredTableAnalysisRuleCommand" ;
350+ import {
351+ UpdateConfiguredTableAssociationAnalysisRuleCommand ,
352+ UpdateConfiguredTableAssociationAnalysisRuleCommandInput ,
353+ UpdateConfiguredTableAssociationAnalysisRuleCommandOutput ,
354+ } from "./commands/UpdateConfiguredTableAssociationAnalysisRuleCommand" ;
335355import {
336356 UpdateConfiguredTableAssociationCommand ,
337357 UpdateConfiguredTableAssociationCommandInput ,
@@ -378,6 +398,7 @@ const commands = {
378398 CreateConfiguredTableCommand,
379399 CreateConfiguredTableAnalysisRuleCommand,
380400 CreateConfiguredTableAssociationCommand,
401+ CreateConfiguredTableAssociationAnalysisRuleCommand,
381402 CreateIdMappingTableCommand,
382403 CreateIdNamespaceAssociationCommand,
383404 CreateMembershipCommand,
@@ -388,6 +409,7 @@ const commands = {
388409 DeleteConfiguredTableCommand,
389410 DeleteConfiguredTableAnalysisRuleCommand,
390411 DeleteConfiguredTableAssociationCommand,
412+ DeleteConfiguredTableAssociationAnalysisRuleCommand,
391413 DeleteIdMappingTableCommand,
392414 DeleteIdNamespaceAssociationCommand,
393415 DeleteMemberCommand,
@@ -403,6 +425,7 @@ const commands = {
403425 GetConfiguredTableCommand,
404426 GetConfiguredTableAnalysisRuleCommand,
405427 GetConfiguredTableAssociationCommand,
428+ GetConfiguredTableAssociationAnalysisRuleCommand,
406429 GetIdMappingTableCommand,
407430 GetIdNamespaceAssociationCommand,
408431 GetMembershipCommand,
@@ -440,6 +463,7 @@ const commands = {
440463 UpdateConfiguredTableCommand,
441464 UpdateConfiguredTableAnalysisRuleCommand,
442465 UpdateConfiguredTableAssociationCommand,
466+ UpdateConfiguredTableAssociationAnalysisRuleCommand,
443467 UpdateIdMappingTableCommand,
444468 UpdateIdNamespaceAssociationCommand,
445469 UpdateMembershipCommand,
@@ -598,6 +622,23 @@ export interface CleanRooms {
598622 cb : ( err : any , data ?: CreateConfiguredTableAssociationCommandOutput ) => void
599623 ) : void ;
600624
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+
601642 /**
602643 * @see {@link CreateIdMappingTableCommand }
603644 */
@@ -768,6 +809,23 @@ export interface CleanRooms {
768809 cb : ( err : any , data ?: DeleteConfiguredTableAssociationCommandOutput ) => void
769810 ) : void ;
770811
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+
771829 /**
772830 * @see {@link DeleteIdMappingTableCommand }
773831 */
@@ -1017,6 +1075,23 @@ export interface CleanRooms {
10171075 cb : ( err : any , data ?: GetConfiguredTableAssociationCommandOutput ) => void
10181076 ) : void ;
10191077
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+
10201095 /**
10211096 * @see {@link GetIdMappingTableCommand }
10221097 */
@@ -1610,6 +1685,23 @@ export interface CleanRooms {
16101685 cb : ( err : any , data ?: UpdateConfiguredTableAssociationCommandOutput ) => void
16111686 ) : void ;
16121687
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+
16131705 /**
16141706 * @see {@link UpdateIdMappingTableCommand }
16151707 */
0 commit comments