@aws-sdk/client-cleanrooms 3.250.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 (235) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +215 -0
  3. package/dist-cjs/CleanRooms.js +517 -0
  4. package/dist-cjs/CleanRoomsClient.js +40 -0
  5. package/dist-cjs/commands/BatchGetSchemaCommand.js +46 -0
  6. package/dist-cjs/commands/CreateCollaborationCommand.js +46 -0
  7. package/dist-cjs/commands/CreateConfiguredTableAnalysisRuleCommand.js +46 -0
  8. package/dist-cjs/commands/CreateConfiguredTableAssociationCommand.js +46 -0
  9. package/dist-cjs/commands/CreateConfiguredTableCommand.js +46 -0
  10. package/dist-cjs/commands/CreateMembershipCommand.js +46 -0
  11. package/dist-cjs/commands/DeleteCollaborationCommand.js +46 -0
  12. package/dist-cjs/commands/DeleteConfiguredTableAnalysisRuleCommand.js +46 -0
  13. package/dist-cjs/commands/DeleteConfiguredTableAssociationCommand.js +46 -0
  14. package/dist-cjs/commands/DeleteConfiguredTableCommand.js +46 -0
  15. package/dist-cjs/commands/DeleteMemberCommand.js +46 -0
  16. package/dist-cjs/commands/DeleteMembershipCommand.js +46 -0
  17. package/dist-cjs/commands/GetCollaborationCommand.js +46 -0
  18. package/dist-cjs/commands/GetConfiguredTableAnalysisRuleCommand.js +46 -0
  19. package/dist-cjs/commands/GetConfiguredTableAssociationCommand.js +46 -0
  20. package/dist-cjs/commands/GetConfiguredTableCommand.js +46 -0
  21. package/dist-cjs/commands/GetMembershipCommand.js +46 -0
  22. package/dist-cjs/commands/GetProtectedQueryCommand.js +46 -0
  23. package/dist-cjs/commands/GetSchemaAnalysisRuleCommand.js +46 -0
  24. package/dist-cjs/commands/GetSchemaCommand.js +46 -0
  25. package/dist-cjs/commands/ListCollaborationsCommand.js +46 -0
  26. package/dist-cjs/commands/ListConfiguredTableAssociationsCommand.js +46 -0
  27. package/dist-cjs/commands/ListConfiguredTablesCommand.js +46 -0
  28. package/dist-cjs/commands/ListMembersCommand.js +46 -0
  29. package/dist-cjs/commands/ListMembershipsCommand.js +46 -0
  30. package/dist-cjs/commands/ListProtectedQueriesCommand.js +46 -0
  31. package/dist-cjs/commands/ListSchemasCommand.js +46 -0
  32. package/dist-cjs/commands/StartProtectedQueryCommand.js +46 -0
  33. package/dist-cjs/commands/UpdateCollaborationCommand.js +46 -0
  34. package/dist-cjs/commands/UpdateConfiguredTableAnalysisRuleCommand.js +46 -0
  35. package/dist-cjs/commands/UpdateConfiguredTableAssociationCommand.js +46 -0
  36. package/dist-cjs/commands/UpdateConfiguredTableCommand.js +46 -0
  37. package/dist-cjs/commands/UpdateMembershipCommand.js +46 -0
  38. package/dist-cjs/commands/UpdateProtectedQueryCommand.js +46 -0
  39. package/dist-cjs/commands/index.js +37 -0
  40. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  41. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  42. package/dist-cjs/endpoint/ruleset.js +7 -0
  43. package/dist-cjs/index.js +11 -0
  44. package/dist-cjs/models/CleanRoomsServiceException.js +11 -0
  45. package/dist-cjs/models/index.js +4 -0
  46. package/dist-cjs/models/models_0.js +782 -0
  47. package/dist-cjs/pagination/Interfaces.js +2 -0
  48. package/dist-cjs/pagination/ListCollaborationsPaginator.js +36 -0
  49. package/dist-cjs/pagination/ListConfiguredTableAssociationsPaginator.js +36 -0
  50. package/dist-cjs/pagination/ListConfiguredTablesPaginator.js +36 -0
  51. package/dist-cjs/pagination/ListMembersPaginator.js +36 -0
  52. package/dist-cjs/pagination/ListMembershipsPaginator.js +36 -0
  53. package/dist-cjs/pagination/ListProtectedQueriesPaginator.js +36 -0
  54. package/dist-cjs/pagination/ListSchemasPaginator.js +36 -0
  55. package/dist-cjs/pagination/index.js +11 -0
  56. package/dist-cjs/protocols/Aws_restJson1.js +3336 -0
  57. package/dist-cjs/runtimeConfig.browser.js +42 -0
  58. package/dist-cjs/runtimeConfig.js +51 -0
  59. package/dist-cjs/runtimeConfig.native.js +15 -0
  60. package/dist-cjs/runtimeConfig.shared.js +18 -0
  61. package/dist-es/CleanRooms.js +513 -0
  62. package/dist-es/CleanRoomsClient.js +36 -0
  63. package/dist-es/commands/BatchGetSchemaCommand.js +42 -0
  64. package/dist-es/commands/CreateCollaborationCommand.js +42 -0
  65. package/dist-es/commands/CreateConfiguredTableAnalysisRuleCommand.js +42 -0
  66. package/dist-es/commands/CreateConfiguredTableAssociationCommand.js +42 -0
  67. package/dist-es/commands/CreateConfiguredTableCommand.js +42 -0
  68. package/dist-es/commands/CreateMembershipCommand.js +42 -0
  69. package/dist-es/commands/DeleteCollaborationCommand.js +42 -0
  70. package/dist-es/commands/DeleteConfiguredTableAnalysisRuleCommand.js +42 -0
  71. package/dist-es/commands/DeleteConfiguredTableAssociationCommand.js +42 -0
  72. package/dist-es/commands/DeleteConfiguredTableCommand.js +42 -0
  73. package/dist-es/commands/DeleteMemberCommand.js +42 -0
  74. package/dist-es/commands/DeleteMembershipCommand.js +42 -0
  75. package/dist-es/commands/GetCollaborationCommand.js +42 -0
  76. package/dist-es/commands/GetConfiguredTableAnalysisRuleCommand.js +42 -0
  77. package/dist-es/commands/GetConfiguredTableAssociationCommand.js +42 -0
  78. package/dist-es/commands/GetConfiguredTableCommand.js +42 -0
  79. package/dist-es/commands/GetMembershipCommand.js +42 -0
  80. package/dist-es/commands/GetProtectedQueryCommand.js +42 -0
  81. package/dist-es/commands/GetSchemaAnalysisRuleCommand.js +42 -0
  82. package/dist-es/commands/GetSchemaCommand.js +42 -0
  83. package/dist-es/commands/ListCollaborationsCommand.js +42 -0
  84. package/dist-es/commands/ListConfiguredTableAssociationsCommand.js +42 -0
  85. package/dist-es/commands/ListConfiguredTablesCommand.js +42 -0
  86. package/dist-es/commands/ListMembersCommand.js +42 -0
  87. package/dist-es/commands/ListMembershipsCommand.js +42 -0
  88. package/dist-es/commands/ListProtectedQueriesCommand.js +42 -0
  89. package/dist-es/commands/ListSchemasCommand.js +42 -0
  90. package/dist-es/commands/StartProtectedQueryCommand.js +42 -0
  91. package/dist-es/commands/UpdateCollaborationCommand.js +42 -0
  92. package/dist-es/commands/UpdateConfiguredTableAnalysisRuleCommand.js +42 -0
  93. package/dist-es/commands/UpdateConfiguredTableAssociationCommand.js +42 -0
  94. package/dist-es/commands/UpdateConfiguredTableCommand.js +42 -0
  95. package/dist-es/commands/UpdateMembershipCommand.js +42 -0
  96. package/dist-es/commands/UpdateProtectedQueryCommand.js +42 -0
  97. package/dist-es/commands/index.js +34 -0
  98. package/dist-es/endpoint/EndpointParameters.js +8 -0
  99. package/dist-es/endpoint/endpointResolver.js +8 -0
  100. package/dist-es/endpoint/ruleset.js +4 -0
  101. package/dist-es/index.js +6 -0
  102. package/dist-es/models/CleanRoomsServiceException.js +7 -0
  103. package/dist-es/models/index.js +1 -0
  104. package/dist-es/models/models_0.js +663 -0
  105. package/dist-es/pagination/Interfaces.js +1 -0
  106. package/dist-es/pagination/ListCollaborationsPaginator.js +32 -0
  107. package/dist-es/pagination/ListConfiguredTableAssociationsPaginator.js +32 -0
  108. package/dist-es/pagination/ListConfiguredTablesPaginator.js +32 -0
  109. package/dist-es/pagination/ListMembersPaginator.js +32 -0
  110. package/dist-es/pagination/ListMembershipsPaginator.js +32 -0
  111. package/dist-es/pagination/ListProtectedQueriesPaginator.js +32 -0
  112. package/dist-es/pagination/ListSchemasPaginator.js +32 -0
  113. package/dist-es/pagination/index.js +8 -0
  114. package/dist-es/protocols/Aws_restJson1.js +3264 -0
  115. package/dist-es/runtimeConfig.browser.js +37 -0
  116. package/dist-es/runtimeConfig.js +46 -0
  117. package/dist-es/runtimeConfig.native.js +11 -0
  118. package/dist-es/runtimeConfig.shared.js +14 -0
  119. package/dist-types/CleanRooms.d.ts +260 -0
  120. package/dist-types/CleanRoomsClient.d.ts +185 -0
  121. package/dist-types/commands/BatchGetSchemaCommand.d.ts +37 -0
  122. package/dist-types/commands/CreateCollaborationCommand.d.ts +37 -0
  123. package/dist-types/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +38 -0
  124. package/dist-types/commands/CreateConfiguredTableAssociationCommand.d.ts +38 -0
  125. package/dist-types/commands/CreateConfiguredTableCommand.d.ts +37 -0
  126. package/dist-types/commands/CreateMembershipCommand.d.ts +38 -0
  127. package/dist-types/commands/DeleteCollaborationCommand.d.ts +37 -0
  128. package/dist-types/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +37 -0
  129. package/dist-types/commands/DeleteConfiguredTableAssociationCommand.d.ts +37 -0
  130. package/dist-types/commands/DeleteConfiguredTableCommand.d.ts +37 -0
  131. package/dist-types/commands/DeleteMemberCommand.d.ts +39 -0
  132. package/dist-types/commands/DeleteMembershipCommand.d.ts +37 -0
  133. package/dist-types/commands/GetCollaborationCommand.d.ts +37 -0
  134. package/dist-types/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +37 -0
  135. package/dist-types/commands/GetConfiguredTableAssociationCommand.d.ts +37 -0
  136. package/dist-types/commands/GetConfiguredTableCommand.d.ts +37 -0
  137. package/dist-types/commands/GetMembershipCommand.d.ts +37 -0
  138. package/dist-types/commands/GetProtectedQueryCommand.d.ts +37 -0
  139. package/dist-types/commands/GetSchemaAnalysisRuleCommand.d.ts +37 -0
  140. package/dist-types/commands/GetSchemaCommand.d.ts +37 -0
  141. package/dist-types/commands/ListCollaborationsCommand.d.ts +37 -0
  142. package/dist-types/commands/ListConfiguredTableAssociationsCommand.d.ts +37 -0
  143. package/dist-types/commands/ListConfiguredTablesCommand.d.ts +37 -0
  144. package/dist-types/commands/ListMembersCommand.d.ts +37 -0
  145. package/dist-types/commands/ListMembershipsCommand.d.ts +37 -0
  146. package/dist-types/commands/ListProtectedQueriesCommand.d.ts +37 -0
  147. package/dist-types/commands/ListSchemasCommand.d.ts +37 -0
  148. package/dist-types/commands/StartProtectedQueryCommand.d.ts +37 -0
  149. package/dist-types/commands/UpdateCollaborationCommand.d.ts +37 -0
  150. package/dist-types/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +37 -0
  151. package/dist-types/commands/UpdateConfiguredTableAssociationCommand.d.ts +37 -0
  152. package/dist-types/commands/UpdateConfiguredTableCommand.d.ts +37 -0
  153. package/dist-types/commands/UpdateMembershipCommand.d.ts +37 -0
  154. package/dist-types/commands/UpdateProtectedQueryCommand.d.ts +37 -0
  155. package/dist-types/commands/index.d.ts +34 -0
  156. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  157. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  158. package/dist-types/endpoint/ruleset.d.ts +2 -0
  159. package/dist-types/index.d.ts +6 -0
  160. package/dist-types/models/CleanRoomsServiceException.d.ts +10 -0
  161. package/dist-types/models/index.d.ts +1 -0
  162. package/dist-types/models/models_0.d.ts +2382 -0
  163. package/dist-types/pagination/Interfaces.d.ts +6 -0
  164. package/dist-types/pagination/ListCollaborationsPaginator.d.ts +4 -0
  165. package/dist-types/pagination/ListConfiguredTableAssociationsPaginator.d.ts +4 -0
  166. package/dist-types/pagination/ListConfiguredTablesPaginator.d.ts +4 -0
  167. package/dist-types/pagination/ListMembersPaginator.d.ts +4 -0
  168. package/dist-types/pagination/ListMembershipsPaginator.d.ts +4 -0
  169. package/dist-types/pagination/ListProtectedQueriesPaginator.d.ts +4 -0
  170. package/dist-types/pagination/ListSchemasPaginator.d.ts +4 -0
  171. package/dist-types/pagination/index.d.ts +8 -0
  172. package/dist-types/protocols/Aws_restJson1.d.ts +104 -0
  173. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  174. package/dist-types/runtimeConfig.d.ts +42 -0
  175. package/dist-types/runtimeConfig.native.d.ts +41 -0
  176. package/dist-types/runtimeConfig.shared.d.ts +16 -0
  177. package/dist-types/ts3.4/CleanRooms.d.ts +600 -0
  178. package/dist-types/ts3.4/CleanRoomsClient.d.ts +315 -0
  179. package/dist-types/ts3.4/commands/BatchGetSchemaCommand.d.ts +34 -0
  180. package/dist-types/ts3.4/commands/CreateCollaborationCommand.d.ts +38 -0
  181. package/dist-types/ts3.4/commands/CreateConfiguredTableAnalysisRuleCommand.d.ts +41 -0
  182. package/dist-types/ts3.4/commands/CreateConfiguredTableAssociationCommand.d.ts +41 -0
  183. package/dist-types/ts3.4/commands/CreateConfiguredTableCommand.d.ts +41 -0
  184. package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +37 -0
  185. package/dist-types/ts3.4/commands/DeleteCollaborationCommand.d.ts +38 -0
  186. package/dist-types/ts3.4/commands/DeleteConfiguredTableAnalysisRuleCommand.d.ts +41 -0
  187. package/dist-types/ts3.4/commands/DeleteConfiguredTableAssociationCommand.d.ts +41 -0
  188. package/dist-types/ts3.4/commands/DeleteConfiguredTableCommand.d.ts +41 -0
  189. package/dist-types/ts3.4/commands/DeleteMemberCommand.d.ts +34 -0
  190. package/dist-types/ts3.4/commands/DeleteMembershipCommand.d.ts +37 -0
  191. package/dist-types/ts3.4/commands/GetCollaborationCommand.d.ts +37 -0
  192. package/dist-types/ts3.4/commands/GetConfiguredTableAnalysisRuleCommand.d.ts +41 -0
  193. package/dist-types/ts3.4/commands/GetConfiguredTableAssociationCommand.d.ts +41 -0
  194. package/dist-types/ts3.4/commands/GetConfiguredTableCommand.d.ts +38 -0
  195. package/dist-types/ts3.4/commands/GetMembershipCommand.d.ts +34 -0
  196. package/dist-types/ts3.4/commands/GetProtectedQueryCommand.d.ts +37 -0
  197. package/dist-types/ts3.4/commands/GetSchemaAnalysisRuleCommand.d.ts +41 -0
  198. package/dist-types/ts3.4/commands/GetSchemaCommand.d.ts +34 -0
  199. package/dist-types/ts3.4/commands/ListCollaborationsCommand.d.ts +38 -0
  200. package/dist-types/ts3.4/commands/ListConfiguredTableAssociationsCommand.d.ts +41 -0
  201. package/dist-types/ts3.4/commands/ListConfiguredTablesCommand.d.ts +41 -0
  202. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +34 -0
  203. package/dist-types/ts3.4/commands/ListMembershipsCommand.d.ts +37 -0
  204. package/dist-types/ts3.4/commands/ListProtectedQueriesCommand.d.ts +41 -0
  205. package/dist-types/ts3.4/commands/ListSchemasCommand.d.ts +34 -0
  206. package/dist-types/ts3.4/commands/StartProtectedQueryCommand.d.ts +38 -0
  207. package/dist-types/ts3.4/commands/UpdateCollaborationCommand.d.ts +38 -0
  208. package/dist-types/ts3.4/commands/UpdateConfiguredTableAnalysisRuleCommand.d.ts +41 -0
  209. package/dist-types/ts3.4/commands/UpdateConfiguredTableAssociationCommand.d.ts +41 -0
  210. package/dist-types/ts3.4/commands/UpdateConfiguredTableCommand.d.ts +41 -0
  211. package/dist-types/ts3.4/commands/UpdateMembershipCommand.d.ts +37 -0
  212. package/dist-types/ts3.4/commands/UpdateProtectedQueryCommand.d.ts +41 -0
  213. package/dist-types/ts3.4/commands/index.d.ts +34 -0
  214. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  215. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  216. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  217. package/dist-types/ts3.4/index.d.ts +6 -0
  218. package/dist-types/ts3.4/models/CleanRoomsServiceException.d.ts +7 -0
  219. package/dist-types/ts3.4/models/index.d.ts +1 -0
  220. package/dist-types/ts3.4/models/models_0.d.ts +1131 -0
  221. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
  222. package/dist-types/ts3.4/pagination/ListCollaborationsPaginator.d.ts +11 -0
  223. package/dist-types/ts3.4/pagination/ListConfiguredTableAssociationsPaginator.d.ts +11 -0
  224. package/dist-types/ts3.4/pagination/ListConfiguredTablesPaginator.d.ts +11 -0
  225. package/dist-types/ts3.4/pagination/ListMembersPaginator.d.ts +11 -0
  226. package/dist-types/ts3.4/pagination/ListMembershipsPaginator.d.ts +11 -0
  227. package/dist-types/ts3.4/pagination/ListProtectedQueriesPaginator.d.ts +11 -0
  228. package/dist-types/ts3.4/pagination/ListSchemasPaginator.d.ts +11 -0
  229. package/dist-types/ts3.4/pagination/index.d.ts +8 -0
  230. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +413 -0
  231. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
  232. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  233. package/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
  234. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
  235. package/package.json +103 -0
@@ -0,0 +1,315 @@
1
+ import {
2
+ RegionInputConfig,
3
+ RegionResolvedConfig,
4
+ } from "@aws-sdk/config-resolver";
5
+ import {
6
+ EndpointInputConfig,
7
+ EndpointResolvedConfig,
8
+ } from "@aws-sdk/middleware-endpoint";
9
+ import {
10
+ HostHeaderInputConfig,
11
+ HostHeaderResolvedConfig,
12
+ } from "@aws-sdk/middleware-host-header";
13
+ import {
14
+ RetryInputConfig,
15
+ RetryResolvedConfig,
16
+ } from "@aws-sdk/middleware-retry";
17
+ import {
18
+ AwsAuthInputConfig,
19
+ AwsAuthResolvedConfig,
20
+ } from "@aws-sdk/middleware-signing";
21
+ import {
22
+ UserAgentInputConfig,
23
+ UserAgentResolvedConfig,
24
+ } from "@aws-sdk/middleware-user-agent";
25
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
26
+ import {
27
+ Client as __Client,
28
+ DefaultsMode,
29
+ SmithyConfiguration as __SmithyConfiguration,
30
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
31
+ } from "@aws-sdk/smithy-client";
32
+ import {
33
+ BodyLengthCalculator as __BodyLengthCalculator,
34
+ Credentials as __Credentials,
35
+ Decoder as __Decoder,
36
+ Encoder as __Encoder,
37
+ HashConstructor as __HashConstructor,
38
+ HttpHandlerOptions as __HttpHandlerOptions,
39
+ Logger as __Logger,
40
+ Provider as __Provider,
41
+ Provider,
42
+ StreamCollector as __StreamCollector,
43
+ UrlParser as __UrlParser,
44
+ UserAgent as __UserAgent,
45
+ } from "@aws-sdk/types";
46
+ import {
47
+ BatchGetSchemaCommandInput,
48
+ BatchGetSchemaCommandOutput,
49
+ } from "./commands/BatchGetSchemaCommand";
50
+ import {
51
+ CreateCollaborationCommandInput,
52
+ CreateCollaborationCommandOutput,
53
+ } from "./commands/CreateCollaborationCommand";
54
+ import {
55
+ CreateConfiguredTableAnalysisRuleCommandInput,
56
+ CreateConfiguredTableAnalysisRuleCommandOutput,
57
+ } from "./commands/CreateConfiguredTableAnalysisRuleCommand";
58
+ import {
59
+ CreateConfiguredTableAssociationCommandInput,
60
+ CreateConfiguredTableAssociationCommandOutput,
61
+ } from "./commands/CreateConfiguredTableAssociationCommand";
62
+ import {
63
+ CreateConfiguredTableCommandInput,
64
+ CreateConfiguredTableCommandOutput,
65
+ } from "./commands/CreateConfiguredTableCommand";
66
+ import {
67
+ CreateMembershipCommandInput,
68
+ CreateMembershipCommandOutput,
69
+ } from "./commands/CreateMembershipCommand";
70
+ import {
71
+ DeleteCollaborationCommandInput,
72
+ DeleteCollaborationCommandOutput,
73
+ } from "./commands/DeleteCollaborationCommand";
74
+ import {
75
+ DeleteConfiguredTableAnalysisRuleCommandInput,
76
+ DeleteConfiguredTableAnalysisRuleCommandOutput,
77
+ } from "./commands/DeleteConfiguredTableAnalysisRuleCommand";
78
+ import {
79
+ DeleteConfiguredTableAssociationCommandInput,
80
+ DeleteConfiguredTableAssociationCommandOutput,
81
+ } from "./commands/DeleteConfiguredTableAssociationCommand";
82
+ import {
83
+ DeleteConfiguredTableCommandInput,
84
+ DeleteConfiguredTableCommandOutput,
85
+ } from "./commands/DeleteConfiguredTableCommand";
86
+ import {
87
+ DeleteMemberCommandInput,
88
+ DeleteMemberCommandOutput,
89
+ } from "./commands/DeleteMemberCommand";
90
+ import {
91
+ DeleteMembershipCommandInput,
92
+ DeleteMembershipCommandOutput,
93
+ } from "./commands/DeleteMembershipCommand";
94
+ import {
95
+ GetCollaborationCommandInput,
96
+ GetCollaborationCommandOutput,
97
+ } from "./commands/GetCollaborationCommand";
98
+ import {
99
+ GetConfiguredTableAnalysisRuleCommandInput,
100
+ GetConfiguredTableAnalysisRuleCommandOutput,
101
+ } from "./commands/GetConfiguredTableAnalysisRuleCommand";
102
+ import {
103
+ GetConfiguredTableAssociationCommandInput,
104
+ GetConfiguredTableAssociationCommandOutput,
105
+ } from "./commands/GetConfiguredTableAssociationCommand";
106
+ import {
107
+ GetConfiguredTableCommandInput,
108
+ GetConfiguredTableCommandOutput,
109
+ } from "./commands/GetConfiguredTableCommand";
110
+ import {
111
+ GetMembershipCommandInput,
112
+ GetMembershipCommandOutput,
113
+ } from "./commands/GetMembershipCommand";
114
+ import {
115
+ GetProtectedQueryCommandInput,
116
+ GetProtectedQueryCommandOutput,
117
+ } from "./commands/GetProtectedQueryCommand";
118
+ import {
119
+ GetSchemaAnalysisRuleCommandInput,
120
+ GetSchemaAnalysisRuleCommandOutput,
121
+ } from "./commands/GetSchemaAnalysisRuleCommand";
122
+ import {
123
+ GetSchemaCommandInput,
124
+ GetSchemaCommandOutput,
125
+ } from "./commands/GetSchemaCommand";
126
+ import {
127
+ ListCollaborationsCommandInput,
128
+ ListCollaborationsCommandOutput,
129
+ } from "./commands/ListCollaborationsCommand";
130
+ import {
131
+ ListConfiguredTableAssociationsCommandInput,
132
+ ListConfiguredTableAssociationsCommandOutput,
133
+ } from "./commands/ListConfiguredTableAssociationsCommand";
134
+ import {
135
+ ListConfiguredTablesCommandInput,
136
+ ListConfiguredTablesCommandOutput,
137
+ } from "./commands/ListConfiguredTablesCommand";
138
+ import {
139
+ ListMembersCommandInput,
140
+ ListMembersCommandOutput,
141
+ } from "./commands/ListMembersCommand";
142
+ import {
143
+ ListMembershipsCommandInput,
144
+ ListMembershipsCommandOutput,
145
+ } from "./commands/ListMembershipsCommand";
146
+ import {
147
+ ListProtectedQueriesCommandInput,
148
+ ListProtectedQueriesCommandOutput,
149
+ } from "./commands/ListProtectedQueriesCommand";
150
+ import {
151
+ ListSchemasCommandInput,
152
+ ListSchemasCommandOutput,
153
+ } from "./commands/ListSchemasCommand";
154
+ import {
155
+ StartProtectedQueryCommandInput,
156
+ StartProtectedQueryCommandOutput,
157
+ } from "./commands/StartProtectedQueryCommand";
158
+ import {
159
+ UpdateCollaborationCommandInput,
160
+ UpdateCollaborationCommandOutput,
161
+ } from "./commands/UpdateCollaborationCommand";
162
+ import {
163
+ UpdateConfiguredTableAnalysisRuleCommandInput,
164
+ UpdateConfiguredTableAnalysisRuleCommandOutput,
165
+ } from "./commands/UpdateConfiguredTableAnalysisRuleCommand";
166
+ import {
167
+ UpdateConfiguredTableAssociationCommandInput,
168
+ UpdateConfiguredTableAssociationCommandOutput,
169
+ } from "./commands/UpdateConfiguredTableAssociationCommand";
170
+ import {
171
+ UpdateConfiguredTableCommandInput,
172
+ UpdateConfiguredTableCommandOutput,
173
+ } from "./commands/UpdateConfiguredTableCommand";
174
+ import {
175
+ UpdateMembershipCommandInput,
176
+ UpdateMembershipCommandOutput,
177
+ } from "./commands/UpdateMembershipCommand";
178
+ import {
179
+ UpdateProtectedQueryCommandInput,
180
+ UpdateProtectedQueryCommandOutput,
181
+ } from "./commands/UpdateProtectedQueryCommand";
182
+ import {
183
+ ClientInputEndpointParameters,
184
+ ClientResolvedEndpointParameters,
185
+ EndpointParameters,
186
+ } from "./endpoint/EndpointParameters";
187
+ export declare type ServiceInputTypes =
188
+ | BatchGetSchemaCommandInput
189
+ | CreateCollaborationCommandInput
190
+ | CreateConfiguredTableAnalysisRuleCommandInput
191
+ | CreateConfiguredTableAssociationCommandInput
192
+ | CreateConfiguredTableCommandInput
193
+ | CreateMembershipCommandInput
194
+ | DeleteCollaborationCommandInput
195
+ | DeleteConfiguredTableAnalysisRuleCommandInput
196
+ | DeleteConfiguredTableAssociationCommandInput
197
+ | DeleteConfiguredTableCommandInput
198
+ | DeleteMemberCommandInput
199
+ | DeleteMembershipCommandInput
200
+ | GetCollaborationCommandInput
201
+ | GetConfiguredTableAnalysisRuleCommandInput
202
+ | GetConfiguredTableAssociationCommandInput
203
+ | GetConfiguredTableCommandInput
204
+ | GetMembershipCommandInput
205
+ | GetProtectedQueryCommandInput
206
+ | GetSchemaAnalysisRuleCommandInput
207
+ | GetSchemaCommandInput
208
+ | ListCollaborationsCommandInput
209
+ | ListConfiguredTableAssociationsCommandInput
210
+ | ListConfiguredTablesCommandInput
211
+ | ListMembersCommandInput
212
+ | ListMembershipsCommandInput
213
+ | ListProtectedQueriesCommandInput
214
+ | ListSchemasCommandInput
215
+ | StartProtectedQueryCommandInput
216
+ | UpdateCollaborationCommandInput
217
+ | UpdateConfiguredTableAnalysisRuleCommandInput
218
+ | UpdateConfiguredTableAssociationCommandInput
219
+ | UpdateConfiguredTableCommandInput
220
+ | UpdateMembershipCommandInput
221
+ | UpdateProtectedQueryCommandInput;
222
+ export declare type ServiceOutputTypes =
223
+ | BatchGetSchemaCommandOutput
224
+ | CreateCollaborationCommandOutput
225
+ | CreateConfiguredTableAnalysisRuleCommandOutput
226
+ | CreateConfiguredTableAssociationCommandOutput
227
+ | CreateConfiguredTableCommandOutput
228
+ | CreateMembershipCommandOutput
229
+ | DeleteCollaborationCommandOutput
230
+ | DeleteConfiguredTableAnalysisRuleCommandOutput
231
+ | DeleteConfiguredTableAssociationCommandOutput
232
+ | DeleteConfiguredTableCommandOutput
233
+ | DeleteMemberCommandOutput
234
+ | DeleteMembershipCommandOutput
235
+ | GetCollaborationCommandOutput
236
+ | GetConfiguredTableAnalysisRuleCommandOutput
237
+ | GetConfiguredTableAssociationCommandOutput
238
+ | GetConfiguredTableCommandOutput
239
+ | GetMembershipCommandOutput
240
+ | GetProtectedQueryCommandOutput
241
+ | GetSchemaAnalysisRuleCommandOutput
242
+ | GetSchemaCommandOutput
243
+ | ListCollaborationsCommandOutput
244
+ | ListConfiguredTableAssociationsCommandOutput
245
+ | ListConfiguredTablesCommandOutput
246
+ | ListMembersCommandOutput
247
+ | ListMembershipsCommandOutput
248
+ | ListProtectedQueriesCommandOutput
249
+ | ListSchemasCommandOutput
250
+ | StartProtectedQueryCommandOutput
251
+ | UpdateCollaborationCommandOutput
252
+ | UpdateConfiguredTableAnalysisRuleCommandOutput
253
+ | UpdateConfiguredTableAssociationCommandOutput
254
+ | UpdateConfiguredTableCommandOutput
255
+ | UpdateMembershipCommandOutput
256
+ | UpdateProtectedQueryCommandOutput;
257
+ export interface ClientDefaults
258
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
259
+ requestHandler?: __HttpHandler;
260
+ sha256?: __HashConstructor;
261
+ urlParser?: __UrlParser;
262
+ bodyLengthChecker?: __BodyLengthCalculator;
263
+ streamCollector?: __StreamCollector;
264
+ base64Decoder?: __Decoder;
265
+ base64Encoder?: __Encoder;
266
+ utf8Decoder?: __Decoder;
267
+ utf8Encoder?: __Encoder;
268
+ runtime?: string;
269
+ disableHostPrefix?: boolean;
270
+ maxAttempts?: number | __Provider<number>;
271
+ retryMode?: string | __Provider<string>;
272
+ logger?: __Logger;
273
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
274
+ useFipsEndpoint?: boolean | __Provider<boolean>;
275
+ serviceId?: string;
276
+ region?: string | __Provider<string>;
277
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
278
+ defaultUserAgentProvider?: Provider<__UserAgent>;
279
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
280
+ }
281
+ declare type CleanRoomsClientConfigType = Partial<
282
+ __SmithyConfiguration<__HttpHandlerOptions>
283
+ > &
284
+ ClientDefaults &
285
+ RegionInputConfig &
286
+ EndpointInputConfig<EndpointParameters> &
287
+ RetryInputConfig &
288
+ HostHeaderInputConfig &
289
+ AwsAuthInputConfig &
290
+ UserAgentInputConfig &
291
+ ClientInputEndpointParameters;
292
+ export interface CleanRoomsClientConfig extends CleanRoomsClientConfigType {}
293
+ declare type CleanRoomsClientResolvedConfigType =
294
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
295
+ Required<ClientDefaults> &
296
+ RegionResolvedConfig &
297
+ EndpointResolvedConfig<EndpointParameters> &
298
+ RetryResolvedConfig &
299
+ HostHeaderResolvedConfig &
300
+ AwsAuthResolvedConfig &
301
+ UserAgentResolvedConfig &
302
+ ClientResolvedEndpointParameters;
303
+ export interface CleanRoomsClientResolvedConfig
304
+ extends CleanRoomsClientResolvedConfigType {}
305
+ export declare class CleanRoomsClient extends __Client<
306
+ __HttpHandlerOptions,
307
+ ServiceInputTypes,
308
+ ServiceOutputTypes,
309
+ CleanRoomsClientResolvedConfig
310
+ > {
311
+ readonly config: CleanRoomsClientResolvedConfig;
312
+ constructor(configuration: CleanRoomsClientConfig);
313
+ destroy(): void;
314
+ }
315
+ export {};
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CleanRoomsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CleanRoomsClient";
14
+ import { BatchGetSchemaInput, BatchGetSchemaOutput } from "../models/models_0";
15
+ export interface BatchGetSchemaCommandInput extends BatchGetSchemaInput {}
16
+ export interface BatchGetSchemaCommandOutput
17
+ extends BatchGetSchemaOutput,
18
+ __MetadataBearer {}
19
+ export declare class BatchGetSchemaCommand extends $Command<
20
+ BatchGetSchemaCommandInput,
21
+ BatchGetSchemaCommandOutput,
22
+ CleanRoomsClientResolvedConfig
23
+ > {
24
+ readonly input: BatchGetSchemaCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: BatchGetSchemaCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: CleanRoomsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<BatchGetSchemaCommandInput, BatchGetSchemaCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CleanRoomsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CleanRoomsClient";
14
+ import {
15
+ CreateCollaborationInput,
16
+ CreateCollaborationOutput,
17
+ } from "../models/models_0";
18
+ export interface CreateCollaborationCommandInput
19
+ extends CreateCollaborationInput {}
20
+ export interface CreateCollaborationCommandOutput
21
+ extends CreateCollaborationOutput,
22
+ __MetadataBearer {}
23
+ export declare class CreateCollaborationCommand extends $Command<
24
+ CreateCollaborationCommandInput,
25
+ CreateCollaborationCommandOutput,
26
+ CleanRoomsClientResolvedConfig
27
+ > {
28
+ readonly input: CreateCollaborationCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateCollaborationCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CleanRoomsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateCollaborationCommandInput, CreateCollaborationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CleanRoomsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CleanRoomsClient";
14
+ import {
15
+ CreateConfiguredTableAnalysisRuleInput,
16
+ CreateConfiguredTableAnalysisRuleOutput,
17
+ } from "../models/models_0";
18
+ export interface CreateConfiguredTableAnalysisRuleCommandInput
19
+ extends CreateConfiguredTableAnalysisRuleInput {}
20
+ export interface CreateConfiguredTableAnalysisRuleCommandOutput
21
+ extends CreateConfiguredTableAnalysisRuleOutput,
22
+ __MetadataBearer {}
23
+ export declare class CreateConfiguredTableAnalysisRuleCommand extends $Command<
24
+ CreateConfiguredTableAnalysisRuleCommandInput,
25
+ CreateConfiguredTableAnalysisRuleCommandOutput,
26
+ CleanRoomsClientResolvedConfig
27
+ > {
28
+ readonly input: CreateConfiguredTableAnalysisRuleCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateConfiguredTableAnalysisRuleCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CleanRoomsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateConfiguredTableAnalysisRuleCommandInput,
37
+ CreateConfiguredTableAnalysisRuleCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CleanRoomsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CleanRoomsClient";
14
+ import {
15
+ CreateConfiguredTableAssociationInput,
16
+ CreateConfiguredTableAssociationOutput,
17
+ } from "../models/models_0";
18
+ export interface CreateConfiguredTableAssociationCommandInput
19
+ extends CreateConfiguredTableAssociationInput {}
20
+ export interface CreateConfiguredTableAssociationCommandOutput
21
+ extends CreateConfiguredTableAssociationOutput,
22
+ __MetadataBearer {}
23
+ export declare class CreateConfiguredTableAssociationCommand extends $Command<
24
+ CreateConfiguredTableAssociationCommandInput,
25
+ CreateConfiguredTableAssociationCommandOutput,
26
+ CleanRoomsClientResolvedConfig
27
+ > {
28
+ readonly input: CreateConfiguredTableAssociationCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateConfiguredTableAssociationCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CleanRoomsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateConfiguredTableAssociationCommandInput,
37
+ CreateConfiguredTableAssociationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CleanRoomsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CleanRoomsClient";
14
+ import {
15
+ CreateConfiguredTableInput,
16
+ CreateConfiguredTableOutput,
17
+ } from "../models/models_0";
18
+ export interface CreateConfiguredTableCommandInput
19
+ extends CreateConfiguredTableInput {}
20
+ export interface CreateConfiguredTableCommandOutput
21
+ extends CreateConfiguredTableOutput,
22
+ __MetadataBearer {}
23
+ export declare class CreateConfiguredTableCommand extends $Command<
24
+ CreateConfiguredTableCommandInput,
25
+ CreateConfiguredTableCommandOutput,
26
+ CleanRoomsClientResolvedConfig
27
+ > {
28
+ readonly input: CreateConfiguredTableCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: CreateConfiguredTableCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CleanRoomsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateConfiguredTableCommandInput,
37
+ CreateConfiguredTableCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CleanRoomsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CleanRoomsClient";
14
+ import {
15
+ CreateMembershipInput,
16
+ CreateMembershipOutput,
17
+ } from "../models/models_0";
18
+ export interface CreateMembershipCommandInput extends CreateMembershipInput {}
19
+ export interface CreateMembershipCommandOutput
20
+ extends CreateMembershipOutput,
21
+ __MetadataBearer {}
22
+ export declare class CreateMembershipCommand extends $Command<
23
+ CreateMembershipCommandInput,
24
+ CreateMembershipCommandOutput,
25
+ CleanRoomsClientResolvedConfig
26
+ > {
27
+ readonly input: CreateMembershipCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: CreateMembershipCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: CleanRoomsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateMembershipCommandInput, CreateMembershipCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CleanRoomsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CleanRoomsClient";
14
+ import {
15
+ DeleteCollaborationInput,
16
+ DeleteCollaborationOutput,
17
+ } from "../models/models_0";
18
+ export interface DeleteCollaborationCommandInput
19
+ extends DeleteCollaborationInput {}
20
+ export interface DeleteCollaborationCommandOutput
21
+ extends DeleteCollaborationOutput,
22
+ __MetadataBearer {}
23
+ export declare class DeleteCollaborationCommand extends $Command<
24
+ DeleteCollaborationCommandInput,
25
+ DeleteCollaborationCommandOutput,
26
+ CleanRoomsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteCollaborationCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeleteCollaborationCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CleanRoomsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteCollaborationCommandInput, DeleteCollaborationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CleanRoomsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CleanRoomsClient";
14
+ import {
15
+ DeleteConfiguredTableAnalysisRuleInput,
16
+ DeleteConfiguredTableAnalysisRuleOutput,
17
+ } from "../models/models_0";
18
+ export interface DeleteConfiguredTableAnalysisRuleCommandInput
19
+ extends DeleteConfiguredTableAnalysisRuleInput {}
20
+ export interface DeleteConfiguredTableAnalysisRuleCommandOutput
21
+ extends DeleteConfiguredTableAnalysisRuleOutput,
22
+ __MetadataBearer {}
23
+ export declare class DeleteConfiguredTableAnalysisRuleCommand extends $Command<
24
+ DeleteConfiguredTableAnalysisRuleCommandInput,
25
+ DeleteConfiguredTableAnalysisRuleCommandOutput,
26
+ CleanRoomsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteConfiguredTableAnalysisRuleCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeleteConfiguredTableAnalysisRuleCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CleanRoomsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteConfiguredTableAnalysisRuleCommandInput,
37
+ DeleteConfiguredTableAnalysisRuleCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CleanRoomsClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CleanRoomsClient";
14
+ import {
15
+ DeleteConfiguredTableAssociationInput,
16
+ DeleteConfiguredTableAssociationOutput,
17
+ } from "../models/models_0";
18
+ export interface DeleteConfiguredTableAssociationCommandInput
19
+ extends DeleteConfiguredTableAssociationInput {}
20
+ export interface DeleteConfiguredTableAssociationCommandOutput
21
+ extends DeleteConfiguredTableAssociationOutput,
22
+ __MetadataBearer {}
23
+ export declare class DeleteConfiguredTableAssociationCommand extends $Command<
24
+ DeleteConfiguredTableAssociationCommandInput,
25
+ DeleteConfiguredTableAssociationCommandOutput,
26
+ CleanRoomsClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteConfiguredTableAssociationCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeleteConfiguredTableAssociationCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: CleanRoomsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeleteConfiguredTableAssociationCommandInput,
37
+ DeleteConfiguredTableAssociationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }