@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,2382 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { CleanRoomsServiceException as __BaseException } from "./CleanRoomsServiceException";
3
+ export declare enum AccessDeniedExceptionReason {
4
+ INSUFFICIENT_PERMISSIONS = "INSUFFICIENT_PERMISSIONS"
5
+ }
6
+ /**
7
+ * <p>Caller does not have sufficient access to perform this action.</p>
8
+ */
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
12
+ /**
13
+ * <p>A reason code for the exception.</p>
14
+ */
15
+ reason?: AccessDeniedExceptionReason | string;
16
+ /**
17
+ * @internal
18
+ */
19
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
20
+ }
21
+ export declare enum AggregateFunctionName {
22
+ AVG = "AVG",
23
+ COUNT = "COUNT",
24
+ COUNT_DISTINCT = "COUNT_DISTINCT",
25
+ SUM = "SUM",
26
+ SUM_DISTINCT = "SUM_DISTINCT"
27
+ }
28
+ /**
29
+ * <p>Column in configured table that can be used in aggregate function in query.</p>
30
+ */
31
+ export interface AggregateColumn {
32
+ /**
33
+ * <p>Column names in configured table of aggregate columns.</p>
34
+ */
35
+ columnNames: string[] | undefined;
36
+ /**
37
+ * <p>Aggregation function that can be applied to aggregate column in query.</p>
38
+ */
39
+ function: AggregateFunctionName | string | undefined;
40
+ }
41
+ export declare enum AggregationType {
42
+ COUNT_DISTINCT = "COUNT_DISTINCT"
43
+ }
44
+ /**
45
+ * <p>Constraint on query output removing output rows that do not meet a minimum number of distinct values of a specified column.</p>
46
+ */
47
+ export interface AggregationConstraint {
48
+ /**
49
+ * <p>Column in aggregation constraint for which there must be a minimum number of distinct values in an output row for it to be in the query output.</p>
50
+ */
51
+ columnName: string | undefined;
52
+ /**
53
+ * <p>The minimum number of distinct values that an output row must be an aggregation of.
54
+ * Minimum threshold of distinct values for a specified column that must exist in an output
55
+ * row for it to be in the query output.</p>
56
+ */
57
+ minimum: number | undefined;
58
+ /**
59
+ * <p>The type of aggregation the constraint allows. The only valid value is currently
60
+ * `COUNT_DISTINCT`.</p>
61
+ */
62
+ type: AggregationType | string | undefined;
63
+ }
64
+ export declare enum AnalysisMethod {
65
+ DIRECT_QUERY = "DIRECT_QUERY"
66
+ }
67
+ export declare enum JoinRequiredOption {
68
+ QUERY_RUNNER = "QUERY_RUNNER"
69
+ }
70
+ export declare enum ScalarFunctions {
71
+ ABS = "ABS",
72
+ CAST = "CAST",
73
+ CEILING = "CEILING",
74
+ COALESCE = "COALESCE",
75
+ FLOOR = "FLOOR",
76
+ LN = "LN",
77
+ LOG = "LOG",
78
+ LOWER = "LOWER",
79
+ ROUND = "ROUND",
80
+ RTRIM = "RTRIM",
81
+ SQRT = "SQRT",
82
+ TRUNC = "TRUNC",
83
+ UPPER = "UPPER"
84
+ }
85
+ /**
86
+ * <p>Enables query structure and specified queries that product aggregate statistics.</p>
87
+ */
88
+ export interface AnalysisRuleAggregation {
89
+ /**
90
+ * <p>The columns that query runners are allowed to use in aggregation queries.</p>
91
+ */
92
+ aggregateColumns: AggregateColumn[] | undefined;
93
+ /**
94
+ * <p>Columns in configured table that can be used in join statements and/or as aggregate
95
+ * columns. They can never be outputted directly.</p>
96
+ */
97
+ joinColumns: string[] | undefined;
98
+ /**
99
+ * <p>Control that requires member who runs query to do a join with their configured table
100
+ * and/or other configured table in query</p>
101
+ */
102
+ joinRequired?: JoinRequiredOption | string;
103
+ /**
104
+ * <p>The columns that query runners are allowed to select, group by, or filter by.</p>
105
+ */
106
+ dimensionColumns: string[] | undefined;
107
+ /**
108
+ * <p>Set of scalar functions that are allowed to be used on dimension columns and the output of aggregation of metrics.</p>
109
+ */
110
+ scalarFunctions: (ScalarFunctions | string)[] | undefined;
111
+ /**
112
+ * <p>Columns that must meet a specific threshold value (after an aggregation function is applied to it) for each output row to be returned.</p>
113
+ */
114
+ outputConstraints: AggregationConstraint[] | undefined;
115
+ }
116
+ /**
117
+ * <p>A type of analysis rule that enables row-level analysis.</p>
118
+ */
119
+ export interface AnalysisRuleList {
120
+ /**
121
+ * <p>Columns that can be used to join a configured table with the table of the member who can query and another members' configured tables.</p>
122
+ */
123
+ joinColumns: string[] | undefined;
124
+ /**
125
+ * <p>Columns that can be listed in the output.</p>
126
+ */
127
+ listColumns: string[] | undefined;
128
+ }
129
+ /**
130
+ * <p>Controls on the query specifications that can be run on configured table..</p>
131
+ */
132
+ export declare type AnalysisRulePolicyV1 = AnalysisRulePolicyV1.AggregationMember | AnalysisRulePolicyV1.ListMember | AnalysisRulePolicyV1.$UnknownMember;
133
+ export declare namespace AnalysisRulePolicyV1 {
134
+ /**
135
+ * <p>Analysis rule type that enables only list queries on a configured table.</p>
136
+ */
137
+ interface ListMember {
138
+ list: AnalysisRuleList;
139
+ aggregation?: never;
140
+ $unknown?: never;
141
+ }
142
+ /**
143
+ * <p>Analysis rule type that enables only aggregation queries on a configured table.</p>
144
+ */
145
+ interface AggregationMember {
146
+ list?: never;
147
+ aggregation: AnalysisRuleAggregation;
148
+ $unknown?: never;
149
+ }
150
+ interface $UnknownMember {
151
+ list?: never;
152
+ aggregation?: never;
153
+ $unknown: [string, any];
154
+ }
155
+ interface Visitor<T> {
156
+ list: (value: AnalysisRuleList) => T;
157
+ aggregation: (value: AnalysisRuleAggregation) => T;
158
+ _: (name: string, value: any) => T;
159
+ }
160
+ const visit: <T>(value: AnalysisRulePolicyV1, visitor: Visitor<T>) => T;
161
+ }
162
+ /**
163
+ * <p>Controls on the query specifications that can be run on configured table..</p>
164
+ */
165
+ export declare type AnalysisRulePolicy = AnalysisRulePolicy.V1Member | AnalysisRulePolicy.$UnknownMember;
166
+ export declare namespace AnalysisRulePolicy {
167
+ /**
168
+ * <p>Controls on the query specifications that can be run on configured table..</p>
169
+ */
170
+ interface V1Member {
171
+ v1: AnalysisRulePolicyV1;
172
+ $unknown?: never;
173
+ }
174
+ interface $UnknownMember {
175
+ v1?: never;
176
+ $unknown: [string, any];
177
+ }
178
+ interface Visitor<T> {
179
+ v1: (value: AnalysisRulePolicyV1) => T;
180
+ _: (name: string, value: any) => T;
181
+ }
182
+ const visit: <T>(value: AnalysisRulePolicy, visitor: Visitor<T>) => T;
183
+ }
184
+ export declare enum AnalysisRuleType {
185
+ AGGREGATION = "AGGREGATION",
186
+ LIST = "LIST"
187
+ }
188
+ /**
189
+ * <p>A specification about how data from the configured table can be used in a query.</p>
190
+ */
191
+ export interface AnalysisRule {
192
+ /**
193
+ * <p>The unique ID for the associated collaboration.</p>
194
+ */
195
+ collaborationId: string | undefined;
196
+ /**
197
+ * <p>The type of analysis rule. Valid values are `AGGREGATION` and `LIST`.</p>
198
+ */
199
+ type: AnalysisRuleType | string | undefined;
200
+ /**
201
+ * <p>The name for the analysis rule.</p>
202
+ */
203
+ name: string | undefined;
204
+ /**
205
+ * <p>The time the analysis rule was created.</p>
206
+ */
207
+ createTime: Date | undefined;
208
+ /**
209
+ * <p>The time the analysis rule was last updated.</p>
210
+ */
211
+ updateTime: Date | undefined;
212
+ /**
213
+ * <p>A policy that describes the associated data usage limitations.</p>
214
+ */
215
+ policy: AnalysisRulePolicy | undefined;
216
+ }
217
+ export interface BatchGetSchemaInput {
218
+ /**
219
+ * <p>A unique identifier for the collaboration that the schemas belong to. Currently accepts
220
+ * collaboration ID.</p>
221
+ */
222
+ collaborationIdentifier: string | undefined;
223
+ /**
224
+ * <p>The names for the schema objects to retrieve.&gt;</p>
225
+ */
226
+ names: string[] | undefined;
227
+ }
228
+ /**
229
+ * <p>An error describing why a schema could not be fetched.</p>
230
+ */
231
+ export interface BatchGetSchemaError {
232
+ /**
233
+ * <p>An error name for the error.</p>
234
+ */
235
+ name: string | undefined;
236
+ /**
237
+ * <p>An error code for the error. </p>
238
+ */
239
+ code: string | undefined;
240
+ /**
241
+ * <p>An error message for the error.</p>
242
+ */
243
+ message: string | undefined;
244
+ }
245
+ /**
246
+ * <p>A column within a schema relation, derived from the underlying AWS Glue table.</p>
247
+ */
248
+ export interface Column {
249
+ /**
250
+ * <p>The name of the column.</p>
251
+ */
252
+ name: string | undefined;
253
+ /**
254
+ * <p>The type of the column.</p>
255
+ */
256
+ type: string | undefined;
257
+ }
258
+ export declare enum SchemaType {
259
+ TABLE = "TABLE"
260
+ }
261
+ /**
262
+ * <p>A schema is a relation within a collaboration.</p>
263
+ */
264
+ export interface Schema {
265
+ /**
266
+ * <p>The columns for the relation this schema represents.</p>
267
+ */
268
+ columns: Column[] | undefined;
269
+ /**
270
+ * <p>The partition keys for the data set underlying this schema.</p>
271
+ */
272
+ partitionKeys: Column[] | undefined;
273
+ /**
274
+ * <p>The analysis rule types associated with the schema. Valued values are LIST and
275
+ * AGGREGATION. Currently, only one entry is present.</p>
276
+ */
277
+ analysisRuleTypes: (AnalysisRuleType | string)[] | undefined;
278
+ /**
279
+ * <p>The analysis method for the schema. The only valid value is currently
280
+ * DIRECT_QUERY.</p>
281
+ */
282
+ analysisMethod?: AnalysisMethod | string;
283
+ /**
284
+ * <p>The unique account ID for the AWS account that owns the schema.</p>
285
+ */
286
+ creatorAccountId: string | undefined;
287
+ /**
288
+ * <p>A name for the schema. The schema relation is referred to by this name when queried by a protected query.</p>
289
+ */
290
+ name: string | undefined;
291
+ /**
292
+ * <p>The unique ID for the collaboration that the schema belongs to.</p>
293
+ */
294
+ collaborationId: string | undefined;
295
+ /**
296
+ * <p>The unique ARN for the collaboration that the schema belongs to.</p>
297
+ */
298
+ collaborationArn: string | undefined;
299
+ /**
300
+ * <p>A description for the schema.</p>
301
+ */
302
+ description: string | undefined;
303
+ /**
304
+ * <p>The time the schema was created.</p>
305
+ */
306
+ createTime: Date | undefined;
307
+ /**
308
+ * <p>The time the schema was last updated.</p>
309
+ */
310
+ updateTime: Date | undefined;
311
+ /**
312
+ * <p>The type of schema. The only valid value is currently `TABLE`.</p>
313
+ */
314
+ type: SchemaType | string | undefined;
315
+ }
316
+ export interface BatchGetSchemaOutput {
317
+ /**
318
+ * <p>The retrieved list of schemas.</p>
319
+ */
320
+ schemas: Schema[] | undefined;
321
+ /**
322
+ * <p>Error reasons for schemas that could not be retrieved. One error is returned for every
323
+ * schema that could not be retrieved.</p>
324
+ */
325
+ errors: BatchGetSchemaError[] | undefined;
326
+ }
327
+ /**
328
+ * <p>Unexpected error during processing of request.</p>
329
+ */
330
+ export declare class InternalServerException extends __BaseException {
331
+ readonly name: "InternalServerException";
332
+ readonly $fault: "server";
333
+ /**
334
+ * @internal
335
+ */
336
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
337
+ }
338
+ export declare enum ResourceType {
339
+ COLLABORATION = "COLLABORATION",
340
+ CONFIGURED_TABLE = "CONFIGURED_TABLE",
341
+ CONFIGURED_TABLE_ASSOCIATION = "CONFIGURED_TABLE_ASSOCIATION",
342
+ MEMBERSHIP = "MEMBERSHIP"
343
+ }
344
+ /**
345
+ * <p>Request references a resource which does not exist.</p>
346
+ */
347
+ export declare class ResourceNotFoundException extends __BaseException {
348
+ readonly name: "ResourceNotFoundException";
349
+ readonly $fault: "client";
350
+ /**
351
+ * <p>The Id of the missing resource.</p>
352
+ */
353
+ resourceId: string | undefined;
354
+ /**
355
+ * <p>The type of the missing resource.</p>
356
+ */
357
+ resourceType: ResourceType | string | undefined;
358
+ /**
359
+ * @internal
360
+ */
361
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
362
+ }
363
+ /**
364
+ * <p>Request was denied due to request throttling.</p>
365
+ */
366
+ export declare class ThrottlingException extends __BaseException {
367
+ readonly name: "ThrottlingException";
368
+ readonly $fault: "client";
369
+ /**
370
+ * @internal
371
+ */
372
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
373
+ }
374
+ /**
375
+ * <p>Describes validation errors for specific input parameters.</p>
376
+ */
377
+ export interface ValidationExceptionField {
378
+ /**
379
+ * <p>The name of the input parameter.</p>
380
+ */
381
+ name: string | undefined;
382
+ /**
383
+ * <p>A message for the input validation error.</p>
384
+ */
385
+ message: string | undefined;
386
+ }
387
+ export declare enum ValidationExceptionReason {
388
+ FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
389
+ INVALID_CONFIGURATION = "INVALID_CONFIGURATION"
390
+ }
391
+ /**
392
+ * <p>The input fails to satisfy the specified constraints.</p>
393
+ */
394
+ export declare class ValidationException extends __BaseException {
395
+ readonly name: "ValidationException";
396
+ readonly $fault: "client";
397
+ /**
398
+ * <p>A reason code for the exception.</p>
399
+ */
400
+ reason?: ValidationExceptionReason | string;
401
+ /**
402
+ * <p>Validation errors for specific input parameters.</p>
403
+ */
404
+ fieldList?: ValidationExceptionField[];
405
+ /**
406
+ * @internal
407
+ */
408
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
409
+ }
410
+ export declare enum MemberAbility {
411
+ CAN_QUERY = "CAN_QUERY",
412
+ CAN_RECEIVE_RESULTS = "CAN_RECEIVE_RESULTS"
413
+ }
414
+ /**
415
+ * <p>The settings for client-side encryption for cryptographic computing.</p>
416
+ */
417
+ export interface DataEncryptionMetadata {
418
+ /**
419
+ * <p>Indicates whether encrypted tables can contain cleartext data (true) or are to cryptographically process every column (false).</p>
420
+ */
421
+ allowCleartext: boolean | undefined;
422
+ /**
423
+ * <p>Indicates whether Fingerprint columns can contain duplicate entries (true) or are to contain only non-repeated values (false).</p>
424
+ */
425
+ allowDuplicates: boolean | undefined;
426
+ /**
427
+ * <p>Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name (true) or can only be joined on Fingerprint columns of the same name (false).</p>
428
+ */
429
+ allowJoinsOnColumnsWithDifferentNames: boolean | undefined;
430
+ /**
431
+ * <p>Indicates whether NULL values are to be copied as NULL to encrypted tables (true) or cryptographically processed (false).</p>
432
+ */
433
+ preserveNulls: boolean | undefined;
434
+ }
435
+ /**
436
+ * <p>Basic metadata used to construct a new member.</p>
437
+ */
438
+ export interface MemberSpecification {
439
+ /**
440
+ * <p>The identifier used to reference members of the collaboration. Currently only supports AWS Account ID.</p>
441
+ */
442
+ accountId: string | undefined;
443
+ /**
444
+ * <p>The abilities granted to the collaboration member.</p>
445
+ */
446
+ memberAbilities: (MemberAbility | string)[] | undefined;
447
+ /**
448
+ * <p>The member's display name.</p>
449
+ */
450
+ displayName: string | undefined;
451
+ }
452
+ export declare enum CollaborationQueryLogStatus {
453
+ DISABLED = "DISABLED",
454
+ ENABLED = "ENABLED"
455
+ }
456
+ export interface CreateCollaborationInput {
457
+ /**
458
+ * <p>A list of initial members, not including the creator. This list is immutable.</p>
459
+ */
460
+ members: MemberSpecification[] | undefined;
461
+ /**
462
+ * <p>The display name for a collaboration.</p>
463
+ */
464
+ name: string | undefined;
465
+ /**
466
+ * <p>A description of the collaboration provided by the collaboration owner.</p>
467
+ */
468
+ description: string | undefined;
469
+ /**
470
+ * <p>The abilities granted to the collaboration creator.</p>
471
+ */
472
+ creatorMemberAbilities: (MemberAbility | string)[] | undefined;
473
+ /**
474
+ * <p>The display name of the collaboration creator.</p>
475
+ */
476
+ creatorDisplayName: string | undefined;
477
+ /**
478
+ * <p>The settings for client-side encryption with Cryptographic Computing for Clean Rooms.</p>
479
+ */
480
+ dataEncryptionMetadata?: DataEncryptionMetadata;
481
+ /**
482
+ * <p>An indicator as to whether query logging has been enabled or disabled for the
483
+ * collaboration.</p>
484
+ */
485
+ queryLogStatus: CollaborationQueryLogStatus | string | undefined;
486
+ }
487
+ export declare enum MemberStatus {
488
+ ACTIVE = "ACTIVE",
489
+ INVITED = "INVITED",
490
+ LEFT = "LEFT",
491
+ REMOVED = "REMOVED"
492
+ }
493
+ /**
494
+ * <p>The multi-party data share environment. The collaboration contains metadata about its purpose and participants.</p>
495
+ */
496
+ export interface Collaboration {
497
+ /**
498
+ * <p>The unique ID for the collaboration.</p>
499
+ */
500
+ id: string | undefined;
501
+ /**
502
+ * <p>The unique ARN for the collaboration.</p>
503
+ */
504
+ arn: string | undefined;
505
+ /**
506
+ * <p>A human-readable identifier provided by the collaboration owner. Display names are not unique.</p>
507
+ */
508
+ name: string | undefined;
509
+ /**
510
+ * <p>A description of the collaboration provided by the collaboration owner.</p>
511
+ */
512
+ description?: string;
513
+ /**
514
+ * <p>The identifier used to reference members of the collaboration. Currently only supports AWS account ID.</p>
515
+ */
516
+ creatorAccountId: string | undefined;
517
+ /**
518
+ * <p>A display name of the collaboration creator.</p>
519
+ */
520
+ creatorDisplayName: string | undefined;
521
+ /**
522
+ * <p>The time when the collaboration was created.</p>
523
+ */
524
+ createTime: Date | undefined;
525
+ /**
526
+ * <p>The time the collaboration metadata was last updated.</p>
527
+ */
528
+ updateTime: Date | undefined;
529
+ /**
530
+ * <p>The status of a member in a collaboration.</p>
531
+ */
532
+ memberStatus: MemberStatus | string | undefined;
533
+ /**
534
+ * <p>The unique ID for your membership within the collaboration.</p>
535
+ */
536
+ membershipId?: string;
537
+ /**
538
+ * <p>The unique ARN for your membership within the collaboration.</p>
539
+ */
540
+ membershipArn?: string;
541
+ /**
542
+ * <p>The settings for client-side encryption for cryptographic computing.</p>
543
+ */
544
+ dataEncryptionMetadata?: DataEncryptionMetadata;
545
+ /**
546
+ * <p>An indicator as to whether query logging has been enabled or disabled for the
547
+ * collaboration.</p>
548
+ */
549
+ queryLogStatus: CollaborationQueryLogStatus | string | undefined;
550
+ }
551
+ export interface CreateCollaborationOutput {
552
+ /**
553
+ * <p>The entire created collaboration object.</p>
554
+ */
555
+ collaboration: Collaboration | undefined;
556
+ }
557
+ /**
558
+ * <p>Request denied because service quota has been exceeded.</p>
559
+ */
560
+ export declare class ServiceQuotaExceededException extends __BaseException {
561
+ readonly name: "ServiceQuotaExceededException";
562
+ readonly $fault: "client";
563
+ /**
564
+ * <p>The name of the quota.</p>
565
+ */
566
+ quotaName: string | undefined;
567
+ /**
568
+ * <p>The value of the quota.</p>
569
+ */
570
+ quotaValue: number | undefined;
571
+ /**
572
+ * @internal
573
+ */
574
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
575
+ }
576
+ export interface DeleteCollaborationInput {
577
+ /**
578
+ * <p>The identifier for the collaboration.</p>
579
+ */
580
+ collaborationIdentifier: string | undefined;
581
+ }
582
+ export interface DeleteCollaborationOutput {
583
+ }
584
+ export declare enum ConflictExceptionReason {
585
+ ALREADY_EXISTS = "ALREADY_EXISTS",
586
+ INVALID_STATE = "INVALID_STATE",
587
+ SUBRESOURCES_EXIST = "SUBRESOURCES_EXIST"
588
+ }
589
+ /**
590
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
591
+ */
592
+ export declare class ConflictException extends __BaseException {
593
+ readonly name: "ConflictException";
594
+ readonly $fault: "client";
595
+ /**
596
+ * <p>The ID of the conflicting resource.</p>
597
+ */
598
+ resourceId?: string;
599
+ /**
600
+ * <p>The type of the conflicting resource.</p>
601
+ */
602
+ resourceType?: ResourceType | string;
603
+ /**
604
+ * <p>A reason code for the exception.</p>
605
+ */
606
+ reason?: ConflictExceptionReason | string;
607
+ /**
608
+ * @internal
609
+ */
610
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
611
+ }
612
+ export interface DeleteMemberInput {
613
+ /**
614
+ * <p>The unique identifier for the associated collaboration.</p>
615
+ */
616
+ collaborationIdentifier: string | undefined;
617
+ /**
618
+ * <p>The account ID of the member to remove.</p>
619
+ */
620
+ accountId: string | undefined;
621
+ }
622
+ export interface DeleteMemberOutput {
623
+ }
624
+ export interface GetCollaborationInput {
625
+ /**
626
+ * <p>The identifier for the collaboration.</p>
627
+ */
628
+ collaborationIdentifier: string | undefined;
629
+ }
630
+ export interface GetCollaborationOutput {
631
+ /**
632
+ * <p>The entire collaboration for this identifier.</p>
633
+ */
634
+ collaboration: Collaboration | undefined;
635
+ }
636
+ export interface GetSchemaInput {
637
+ /**
638
+ * <p>A unique identifier for the collaboration that the schema belongs to. Currently accepts
639
+ * a collaboration ID.</p>
640
+ */
641
+ collaborationIdentifier: string | undefined;
642
+ /**
643
+ * <p>The name of the relation to retrieve the schema for.</p>
644
+ */
645
+ name: string | undefined;
646
+ }
647
+ export interface GetSchemaOutput {
648
+ /**
649
+ * <p>The entire schema object.</p>
650
+ */
651
+ schema: Schema | undefined;
652
+ }
653
+ export interface GetSchemaAnalysisRuleInput {
654
+ /**
655
+ * <p>A unique identifier for the collaboration that the schema belongs to. Currently accepts
656
+ * a collaboration ID.</p>
657
+ */
658
+ collaborationIdentifier: string | undefined;
659
+ /**
660
+ * <p>The name of the schema to retrieve the analysis rule for.</p>
661
+ */
662
+ name: string | undefined;
663
+ /**
664
+ * <p>The type of the schema analysis rule to retrieve. Schema analysis rules are uniquely identified by a combination of the collaboration, the schema name, and their type.</p>
665
+ */
666
+ type: AnalysisRuleType | string | undefined;
667
+ }
668
+ export interface GetSchemaAnalysisRuleOutput {
669
+ /**
670
+ * <p>A specification about how data from the configured table can be used.</p>
671
+ */
672
+ analysisRule: AnalysisRule | undefined;
673
+ }
674
+ export declare enum FilterableMemberStatus {
675
+ ACTIVE = "ACTIVE",
676
+ INVITED = "INVITED"
677
+ }
678
+ export interface ListCollaborationsInput {
679
+ /**
680
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
681
+ */
682
+ nextToken?: string;
683
+ /**
684
+ * <p>The maximum size of the results that is returned per call. Service chooses a default if
685
+ * it has not been set. Service may return a nextToken even if the maximum results has not
686
+ * been met.</p>
687
+ */
688
+ maxResults?: number;
689
+ /**
690
+ * <p>The caller's status in a collaboration.</p>
691
+ */
692
+ memberStatus?: FilterableMemberStatus | string;
693
+ }
694
+ /**
695
+ * <p>The metadata of the collaboration.</p>
696
+ */
697
+ export interface CollaborationSummary {
698
+ /**
699
+ * <p>The identifier for the collaboration.</p>
700
+ */
701
+ id: string | undefined;
702
+ /**
703
+ * <p>The ARN of the collaboration.</p>
704
+ */
705
+ arn: string | undefined;
706
+ /**
707
+ * <p>A human-readable identifier provided by the collaboration owner. Display names are not unique.</p>
708
+ */
709
+ name: string | undefined;
710
+ /**
711
+ * <p>The identifier used to reference members of the collaboration. Currently only supports AWS Account ID.</p>
712
+ */
713
+ creatorAccountId: string | undefined;
714
+ /**
715
+ * <p>The display name of the collaboration creator.</p>
716
+ */
717
+ creatorDisplayName: string | undefined;
718
+ /**
719
+ * <p>The time when the collaboration was created.</p>
720
+ */
721
+ createTime: Date | undefined;
722
+ /**
723
+ * <p>The time the collaboration metadata was last updated.</p>
724
+ */
725
+ updateTime: Date | undefined;
726
+ /**
727
+ * <p>The status of a member in a collaboration.</p>
728
+ */
729
+ memberStatus: MemberStatus | string | undefined;
730
+ /**
731
+ * <p>The identifier of a member in a collaboration.</p>
732
+ */
733
+ membershipId?: string;
734
+ /**
735
+ * <p>The ARN of a member in a collaboration.</p>
736
+ */
737
+ membershipArn?: string;
738
+ }
739
+ export interface ListCollaborationsOutput {
740
+ /**
741
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
742
+ */
743
+ nextToken?: string;
744
+ /**
745
+ * <p>The list of collaborations.</p>
746
+ */
747
+ collaborationList: CollaborationSummary[] | undefined;
748
+ }
749
+ export interface ListMembersInput {
750
+ /**
751
+ * <p>The identifier of the collaboration in which the members are listed.</p>
752
+ */
753
+ collaborationIdentifier: string | undefined;
754
+ /**
755
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
756
+ */
757
+ nextToken?: string;
758
+ /**
759
+ * <p>The maximum size of the results that is returned per call.</p>
760
+ */
761
+ maxResults?: number;
762
+ }
763
+ /**
764
+ * <p>The member object listed by the request.</p>
765
+ */
766
+ export interface MemberSummary {
767
+ /**
768
+ * <p>The identifier used to reference members of the collaboration. Currently only supports AWS Account ID.</p>
769
+ */
770
+ accountId: string | undefined;
771
+ /**
772
+ * <p>The status of the member. Valid values are `INVITED`, `ACTIVE`, `LEFT`, and `REMOVED`.</p>
773
+ */
774
+ status: MemberStatus | string | undefined;
775
+ /**
776
+ * <p>The member's display name.</p>
777
+ */
778
+ displayName: string | undefined;
779
+ /**
780
+ * <p>The abilities granted to the collaboration member.</p>
781
+ */
782
+ abilities: (MemberAbility | string)[] | undefined;
783
+ /**
784
+ * <p>The time when the member was created.</p>
785
+ */
786
+ createTime: Date | undefined;
787
+ /**
788
+ * <p>The time the member metadata was last updated.</p>
789
+ */
790
+ updateTime: Date | undefined;
791
+ /**
792
+ * <p>The unique ID for the member's associated membership, if present.</p>
793
+ */
794
+ membershipId?: string;
795
+ /**
796
+ * <p>The unique ARN for the member's associated membership, if present.</p>
797
+ */
798
+ membershipArn?: string;
799
+ }
800
+ export interface ListMembersOutput {
801
+ /**
802
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
803
+ */
804
+ nextToken?: string;
805
+ /**
806
+ * <p>The list of members returned by the ListMembers operation.</p>
807
+ */
808
+ memberSummaries: MemberSummary[] | undefined;
809
+ }
810
+ export interface ListSchemasInput {
811
+ /**
812
+ * <p>A unique identifier for the collaboration that the schema belongs to. Currently accepts
813
+ * a collaboration ID.</p>
814
+ */
815
+ collaborationIdentifier: string | undefined;
816
+ /**
817
+ * <p>If present, filter schemas by schema type. The only valid schema type is currently `TABLE`.</p>
818
+ */
819
+ schemaType?: SchemaType | string;
820
+ /**
821
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
822
+ */
823
+ nextToken?: string;
824
+ /**
825
+ * <p>The maximum size of the results that is returned per call.</p>
826
+ */
827
+ maxResults?: number;
828
+ }
829
+ /**
830
+ * <p>The schema summary for the objects listed by the request.</p>
831
+ */
832
+ export interface SchemaSummary {
833
+ /**
834
+ * <p>The name for the schema object.</p>
835
+ */
836
+ name: string | undefined;
837
+ /**
838
+ * <p>The type of schema object. The only valid schema type is currently `TABLE`.</p>
839
+ */
840
+ type: SchemaType | string | undefined;
841
+ /**
842
+ * <p>The unique account ID for the AWS account that owns the schema.</p>
843
+ */
844
+ creatorAccountId: string | undefined;
845
+ /**
846
+ * <p>The time the schema object was created.</p>
847
+ */
848
+ createTime: Date | undefined;
849
+ /**
850
+ * <p>The time the schema object was last updated.</p>
851
+ */
852
+ updateTime: Date | undefined;
853
+ /**
854
+ * <p>The unique ID for the collaboration that the schema belongs to.</p>
855
+ */
856
+ collaborationId: string | undefined;
857
+ /**
858
+ * <p>The unique ARN for the collaboration that the schema belongs to.</p>
859
+ */
860
+ collaborationArn: string | undefined;
861
+ /**
862
+ * <p>The types of analysis rules that are associated with this schema object.</p>
863
+ */
864
+ analysisRuleTypes: (AnalysisRuleType | string)[] | undefined;
865
+ /**
866
+ * <p>The analysis method for the associated schema. The only valid value is currently `DIRECT_QUERY`.</p>
867
+ */
868
+ analysisMethod?: AnalysisMethod | string;
869
+ }
870
+ export interface ListSchemasOutput {
871
+ /**
872
+ * <p>The retrieved list of schemas.</p>
873
+ */
874
+ schemaSummaries: SchemaSummary[] | undefined;
875
+ /**
876
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
877
+ */
878
+ nextToken?: string;
879
+ }
880
+ export interface UpdateCollaborationInput {
881
+ /**
882
+ * <p>The identifier for the collaboration.</p>
883
+ */
884
+ collaborationIdentifier: string | undefined;
885
+ /**
886
+ * <p>A human-readable identifier provided by the collaboration owner. Display names are not unique.</p>
887
+ */
888
+ name?: string;
889
+ /**
890
+ * <p>A description of the collaboration.</p>
891
+ */
892
+ description?: string;
893
+ }
894
+ export interface UpdateCollaborationOutput {
895
+ /**
896
+ * <p>The entire collaboration that has been updated.</p>
897
+ */
898
+ collaboration: Collaboration | undefined;
899
+ }
900
+ export interface CreateConfiguredTableAssociationInput {
901
+ /**
902
+ * <p>The name of the configured table association. This name is used to query the underlying
903
+ * configured table.</p>
904
+ */
905
+ name: string | undefined;
906
+ /**
907
+ * <p>A description for the configured table association.</p>
908
+ */
909
+ description?: string;
910
+ /**
911
+ * <p>A unique identifier for one of your memberships for a collaboration. The configured
912
+ * table is associated to the collaboration that this membership belongs to. Currently accepts
913
+ * a membership ID.</p>
914
+ */
915
+ membershipIdentifier: string | undefined;
916
+ /**
917
+ * <p>A unique identifier for the configured table to be associated to. Currently accepts a
918
+ * configured table ID.</p>
919
+ */
920
+ configuredTableIdentifier: string | undefined;
921
+ /**
922
+ * <p>The service will assume this role to access catalog metadata and query the table.</p>
923
+ */
924
+ roleArn: string | undefined;
925
+ }
926
+ /**
927
+ * <p>A configured table association links a configured table to a collaboration.</p>
928
+ */
929
+ export interface ConfiguredTableAssociation {
930
+ /**
931
+ * <p>The unique ARN for the configured table association.</p>
932
+ */
933
+ arn: string | undefined;
934
+ /**
935
+ * <p>The unique ID for the configured table association.</p>
936
+ */
937
+ id: string | undefined;
938
+ /**
939
+ * <p>The unique ID for the configured table that the association refers to.</p>
940
+ */
941
+ configuredTableId: string | undefined;
942
+ /**
943
+ * <p>The unique ARN for the configured table that the association refers to.</p>
944
+ */
945
+ configuredTableArn: string | undefined;
946
+ /**
947
+ * <p>The unique ID for the membership this configured table association belongs to.</p>
948
+ */
949
+ membershipId: string | undefined;
950
+ /**
951
+ * <p>The unique ARN for the membership this configured table association belongs to.</p>
952
+ */
953
+ membershipArn: string | undefined;
954
+ /**
955
+ * <p>The service will assume this role to access catalog metadata and query the table.</p>
956
+ */
957
+ roleArn: string | undefined;
958
+ /**
959
+ * <p>The name of the configured table association, in lowercase. The table is identified by this name when running protected queries against the underlying data.</p>
960
+ */
961
+ name: string | undefined;
962
+ /**
963
+ * <p>A description of the configured table association.</p>
964
+ */
965
+ description?: string;
966
+ /**
967
+ * <p>The time the configured table association was created.</p>
968
+ */
969
+ createTime: Date | undefined;
970
+ /**
971
+ * <p>The time the configured table association was last updated.</p>
972
+ */
973
+ updateTime: Date | undefined;
974
+ }
975
+ export interface CreateConfiguredTableAssociationOutput {
976
+ /**
977
+ * <p>The entire configured table association object.</p>
978
+ */
979
+ configuredTableAssociation: ConfiguredTableAssociation | undefined;
980
+ }
981
+ export interface DeleteConfiguredTableAssociationInput {
982
+ /**
983
+ * <p>The unique ID for the configured table association to be deleted. Currently accepts the configured table ID.</p>
984
+ */
985
+ configuredTableAssociationIdentifier: string | undefined;
986
+ /**
987
+ * <p>A unique identifier for the membership that the configured table association belongs to.
988
+ * Currently accepts the membership ID.</p>
989
+ */
990
+ membershipIdentifier: string | undefined;
991
+ }
992
+ export interface DeleteConfiguredTableAssociationOutput {
993
+ }
994
+ export interface GetConfiguredTableAssociationInput {
995
+ /**
996
+ * <p>The unique ID for the configured table association to retrieve. Currently accepts the configured table ID.</p>
997
+ */
998
+ configuredTableAssociationIdentifier: string | undefined;
999
+ /**
1000
+ * <p>A unique identifier for the membership that the configured table association belongs to.
1001
+ * Currently accepts the membership ID.</p>
1002
+ */
1003
+ membershipIdentifier: string | undefined;
1004
+ }
1005
+ export interface GetConfiguredTableAssociationOutput {
1006
+ /**
1007
+ * <p>The entire configured table association object.</p>
1008
+ */
1009
+ configuredTableAssociation: ConfiguredTableAssociation | undefined;
1010
+ }
1011
+ export interface ListConfiguredTableAssociationsInput {
1012
+ /**
1013
+ * <p>A unique identifier for the membership to list configured table associations for. Currently accepts the membership ID.</p>
1014
+ */
1015
+ membershipIdentifier: string | undefined;
1016
+ /**
1017
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
1018
+ */
1019
+ nextToken?: string;
1020
+ /**
1021
+ * <p>The maximum size of the results that is returned per call.</p>
1022
+ */
1023
+ maxResults?: number;
1024
+ }
1025
+ /**
1026
+ * <p>The configured table association summary for the objects listed by the request.</p>
1027
+ */
1028
+ export interface ConfiguredTableAssociationSummary {
1029
+ /**
1030
+ * <p>The unique configured table ID that this configured table association refers to.</p>
1031
+ */
1032
+ configuredTableId: string | undefined;
1033
+ /**
1034
+ * <p>The unique ID for the membership that the configured table association belongs
1035
+ * to.</p>
1036
+ */
1037
+ membershipId: string | undefined;
1038
+ /**
1039
+ * <p>The unique ARN for the membership that the configured table association belongs
1040
+ * to.</p>
1041
+ */
1042
+ membershipArn: string | undefined;
1043
+ /**
1044
+ * <p>The name of the configured table association. The table is identified by this name when running Protected Queries against the underlying data.</p>
1045
+ */
1046
+ name: string | undefined;
1047
+ /**
1048
+ * <p>The time the configured table association was created.</p>
1049
+ */
1050
+ createTime: Date | undefined;
1051
+ /**
1052
+ * <p>The time the configured table association was last updated.</p>
1053
+ */
1054
+ updateTime: Date | undefined;
1055
+ /**
1056
+ * <p>The unique ID for the configured table association.</p>
1057
+ */
1058
+ id: string | undefined;
1059
+ /**
1060
+ * <p>The unique ARN for the configured table association.</p>
1061
+ */
1062
+ arn: string | undefined;
1063
+ }
1064
+ export interface ListConfiguredTableAssociationsOutput {
1065
+ /**
1066
+ * <p>The retrieved list of configured table associations.</p>
1067
+ */
1068
+ configuredTableAssociationSummaries: ConfiguredTableAssociationSummary[] | undefined;
1069
+ /**
1070
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
1071
+ */
1072
+ nextToken?: string;
1073
+ }
1074
+ export interface UpdateConfiguredTableAssociationInput {
1075
+ /**
1076
+ * <p>The unique identifier for the configured table association to update. Currently accepts the configured table association ID.</p>
1077
+ */
1078
+ configuredTableAssociationIdentifier: string | undefined;
1079
+ /**
1080
+ * <p>The unique ID for the membership that the configured table association belongs
1081
+ * to.</p>
1082
+ */
1083
+ membershipIdentifier: string | undefined;
1084
+ /**
1085
+ * <p>A new description for the configured table association.</p>
1086
+ */
1087
+ description?: string;
1088
+ /**
1089
+ * <p>The service will assume this role to access catalog metadata and query the table.</p>
1090
+ */
1091
+ roleArn?: string;
1092
+ }
1093
+ export interface UpdateConfiguredTableAssociationOutput {
1094
+ /**
1095
+ * <p>The entire updated configured table association.</p>
1096
+ */
1097
+ configuredTableAssociation: ConfiguredTableAssociation | undefined;
1098
+ }
1099
+ /**
1100
+ * <p>A reference to a table within an AWS Glue data catalog.</p>
1101
+ */
1102
+ export interface GlueTableReference {
1103
+ /**
1104
+ * <p>The name of the AWS Glue table.</p>
1105
+ */
1106
+ tableName: string | undefined;
1107
+ /**
1108
+ * <p>The name of the database the AWS Glue table belongs to.</p>
1109
+ */
1110
+ databaseName: string | undefined;
1111
+ }
1112
+ /**
1113
+ * <p>A pointer to the data set that underlies this table. Currently, this can only be an AWS
1114
+ * Glue table.</p>
1115
+ */
1116
+ export declare type TableReference = TableReference.GlueMember | TableReference.$UnknownMember;
1117
+ export declare namespace TableReference {
1118
+ /**
1119
+ * <p>If present, a reference to the AWS Glue table referred to by this table
1120
+ * reference.</p>
1121
+ */
1122
+ interface GlueMember {
1123
+ glue: GlueTableReference;
1124
+ $unknown?: never;
1125
+ }
1126
+ interface $UnknownMember {
1127
+ glue?: never;
1128
+ $unknown: [string, any];
1129
+ }
1130
+ interface Visitor<T> {
1131
+ glue: (value: GlueTableReference) => T;
1132
+ _: (name: string, value: any) => T;
1133
+ }
1134
+ const visit: <T>(value: TableReference, visitor: Visitor<T>) => T;
1135
+ }
1136
+ export interface CreateConfiguredTableInput {
1137
+ /**
1138
+ * <p>The name of the configured table.</p>
1139
+ */
1140
+ name: string | undefined;
1141
+ /**
1142
+ * <p>A description for the configured table.</p>
1143
+ */
1144
+ description?: string;
1145
+ /**
1146
+ * <p>A reference to the AWS Glue table being configured.</p>
1147
+ */
1148
+ tableReference: TableReference | undefined;
1149
+ /**
1150
+ * <p>The columns of the underlying table that can be used by collaborations or analysis rules.</p>
1151
+ */
1152
+ allowedColumns: string[] | undefined;
1153
+ /**
1154
+ * <p>The analysis method for the configured tables. The only valid value is currently `DIRECT_QUERY`.</p>
1155
+ */
1156
+ analysisMethod: AnalysisMethod | string | undefined;
1157
+ }
1158
+ export declare enum ConfiguredTableAnalysisRuleType {
1159
+ AGGREGATION = "AGGREGATION",
1160
+ LIST = "LIST"
1161
+ }
1162
+ /**
1163
+ * <p>A table that has been configured for use in a collaboration.</p>
1164
+ */
1165
+ export interface ConfiguredTable {
1166
+ /**
1167
+ * <p>The unique ID for the configured table.</p>
1168
+ */
1169
+ id: string | undefined;
1170
+ /**
1171
+ * <p>The unique ARN for the configured table.</p>
1172
+ */
1173
+ arn: string | undefined;
1174
+ /**
1175
+ * <p>A name for the configured table.</p>
1176
+ */
1177
+ name: string | undefined;
1178
+ /**
1179
+ * <p>A description for the configured table.</p>
1180
+ */
1181
+ description?: string;
1182
+ /**
1183
+ * <p>The AWS Glue table that this configured table represents.</p>
1184
+ */
1185
+ tableReference: TableReference | undefined;
1186
+ /**
1187
+ * <p>The time the configured table was created.</p>
1188
+ */
1189
+ createTime: Date | undefined;
1190
+ /**
1191
+ * <p>The time the configured table was last updated</p>
1192
+ */
1193
+ updateTime: Date | undefined;
1194
+ /**
1195
+ * <p>The types of analysis rules associated with this configured table. Valid values are `AGGREGATION` and `LIST`. Currently, only one analysis rule may be associated with a configured table.</p>
1196
+ */
1197
+ analysisRuleTypes: (ConfiguredTableAnalysisRuleType | string)[] | undefined;
1198
+ /**
1199
+ * <p>The analysis method for the configured table. The only valid value is currently `DIRECT_QUERY`.</p>
1200
+ */
1201
+ analysisMethod: AnalysisMethod | string | undefined;
1202
+ /**
1203
+ * <p>The columns within the underlying AWS Glue table that can be utilized within
1204
+ * collaborations.</p>
1205
+ */
1206
+ allowedColumns: string[] | undefined;
1207
+ }
1208
+ export interface CreateConfiguredTableOutput {
1209
+ /**
1210
+ * <p>The created configured table.</p>
1211
+ */
1212
+ configuredTable: ConfiguredTable | undefined;
1213
+ }
1214
+ /**
1215
+ * <p>Controls on the query specifications that can be run on a configured table.</p>
1216
+ */
1217
+ export declare type ConfiguredTableAnalysisRulePolicyV1 = ConfiguredTableAnalysisRulePolicyV1.AggregationMember | ConfiguredTableAnalysisRulePolicyV1.ListMember | ConfiguredTableAnalysisRulePolicyV1.$UnknownMember;
1218
+ export declare namespace ConfiguredTableAnalysisRulePolicyV1 {
1219
+ /**
1220
+ * <p>Analysis rule type that enables only list queries on a configured table.</p>
1221
+ */
1222
+ interface ListMember {
1223
+ list: AnalysisRuleList;
1224
+ aggregation?: never;
1225
+ $unknown?: never;
1226
+ }
1227
+ /**
1228
+ * <p>Analysis rule type that enables only aggregation queries on a configured table.</p>
1229
+ */
1230
+ interface AggregationMember {
1231
+ list?: never;
1232
+ aggregation: AnalysisRuleAggregation;
1233
+ $unknown?: never;
1234
+ }
1235
+ interface $UnknownMember {
1236
+ list?: never;
1237
+ aggregation?: never;
1238
+ $unknown: [string, any];
1239
+ }
1240
+ interface Visitor<T> {
1241
+ list: (value: AnalysisRuleList) => T;
1242
+ aggregation: (value: AnalysisRuleAggregation) => T;
1243
+ _: (name: string, value: any) => T;
1244
+ }
1245
+ const visit: <T>(value: ConfiguredTableAnalysisRulePolicyV1, visitor: Visitor<T>) => T;
1246
+ }
1247
+ /**
1248
+ * <p>Controls on the query specifications that can be run on a configured table.</p>
1249
+ */
1250
+ export declare type ConfiguredTableAnalysisRulePolicy = ConfiguredTableAnalysisRulePolicy.V1Member | ConfiguredTableAnalysisRulePolicy.$UnknownMember;
1251
+ export declare namespace ConfiguredTableAnalysisRulePolicy {
1252
+ /**
1253
+ * <p>Controls on the query specifications that can be run on a configured table.</p>
1254
+ */
1255
+ interface V1Member {
1256
+ v1: ConfiguredTableAnalysisRulePolicyV1;
1257
+ $unknown?: never;
1258
+ }
1259
+ interface $UnknownMember {
1260
+ v1?: never;
1261
+ $unknown: [string, any];
1262
+ }
1263
+ interface Visitor<T> {
1264
+ v1: (value: ConfiguredTableAnalysisRulePolicyV1) => T;
1265
+ _: (name: string, value: any) => T;
1266
+ }
1267
+ const visit: <T>(value: ConfiguredTableAnalysisRulePolicy, visitor: Visitor<T>) => T;
1268
+ }
1269
+ export interface CreateConfiguredTableAnalysisRuleInput {
1270
+ /**
1271
+ * <p>The identifier for the configured table to create the analysis rule for. Currently accepts the configured table ID. </p>
1272
+ */
1273
+ configuredTableIdentifier: string | undefined;
1274
+ /**
1275
+ * <p>The type of analysis rule. Valid values are AGGREGATION and LIST.</p>
1276
+ */
1277
+ analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
1278
+ /**
1279
+ * <p>The entire created configured table analysis rule object.</p>
1280
+ */
1281
+ analysisRulePolicy: ConfiguredTableAnalysisRulePolicy | undefined;
1282
+ }
1283
+ /**
1284
+ * <p>A configured table analysis rule, which limits how data for this table can be used.</p>
1285
+ */
1286
+ export interface ConfiguredTableAnalysisRule {
1287
+ /**
1288
+ * <p>The unique ID for the configured table.</p>
1289
+ */
1290
+ configuredTableId: string | undefined;
1291
+ /**
1292
+ * <p>The unique ARN for the configured table.</p>
1293
+ */
1294
+ configuredTableArn: string | undefined;
1295
+ /**
1296
+ * <p>The policy that controls SQL query rules.</p>
1297
+ */
1298
+ policy: ConfiguredTableAnalysisRulePolicy | undefined;
1299
+ /**
1300
+ * <p>The type of configured table analysis rule. Valid values are `AGGREGATION` and `LIST`.</p>
1301
+ */
1302
+ type: ConfiguredTableAnalysisRuleType | string | undefined;
1303
+ /**
1304
+ * <p>The time the configured table analysis rule was created.</p>
1305
+ */
1306
+ createTime: Date | undefined;
1307
+ /**
1308
+ * <p>The time the configured table analysis rule was last updated.</p>
1309
+ */
1310
+ updateTime: Date | undefined;
1311
+ }
1312
+ export interface CreateConfiguredTableAnalysisRuleOutput {
1313
+ /**
1314
+ * <p>The entire created analysis rule.</p>
1315
+ */
1316
+ analysisRule: ConfiguredTableAnalysisRule | undefined;
1317
+ }
1318
+ export interface DeleteConfiguredTableInput {
1319
+ /**
1320
+ * <p>The unique ID for the configured table to delete.</p>
1321
+ */
1322
+ configuredTableIdentifier: string | undefined;
1323
+ }
1324
+ /**
1325
+ * <p>The empty output for a successful deletion.</p>
1326
+ */
1327
+ export interface DeleteConfiguredTableOutput {
1328
+ }
1329
+ export interface DeleteConfiguredTableAnalysisRuleInput {
1330
+ /**
1331
+ * <p>The unique identifier for the configured table that the analysis rule applies to.
1332
+ * Currently accepts the configured table ID.</p>
1333
+ */
1334
+ configuredTableIdentifier: string | undefined;
1335
+ /**
1336
+ * <p>The analysis rule type to be deleted. Configured table analysis rules are uniquely identified by their configured table identifier and analysis rule type.</p>
1337
+ */
1338
+ analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
1339
+ }
1340
+ /**
1341
+ * <p>An empty response that indicates a successful delete.</p>
1342
+ */
1343
+ export interface DeleteConfiguredTableAnalysisRuleOutput {
1344
+ }
1345
+ export interface GetConfiguredTableInput {
1346
+ /**
1347
+ * <p>The unique ID for the configured table to retrieve.</p>
1348
+ */
1349
+ configuredTableIdentifier: string | undefined;
1350
+ }
1351
+ export interface GetConfiguredTableOutput {
1352
+ /**
1353
+ * <p>The retrieved configured table.</p>
1354
+ */
1355
+ configuredTable: ConfiguredTable | undefined;
1356
+ }
1357
+ export interface GetConfiguredTableAnalysisRuleInput {
1358
+ /**
1359
+ * <p>The unique identifier for the configured table to retrieve. Currently accepts the configured table ID.</p>
1360
+ */
1361
+ configuredTableIdentifier: string | undefined;
1362
+ /**
1363
+ * <p>The analysis rule to be retrieved. Configured table analysis rules are uniquely identified by their configured table identifier and analysis rule type.</p>
1364
+ */
1365
+ analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
1366
+ }
1367
+ export interface GetConfiguredTableAnalysisRuleOutput {
1368
+ /**
1369
+ * <p>The entire analysis rule output.</p>
1370
+ */
1371
+ analysisRule: ConfiguredTableAnalysisRule | undefined;
1372
+ }
1373
+ export interface ListConfiguredTablesInput {
1374
+ /**
1375
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
1376
+ */
1377
+ nextToken?: string;
1378
+ /**
1379
+ * <p>The maximum size of the results that is returned per call.</p>
1380
+ */
1381
+ maxResults?: number;
1382
+ }
1383
+ /**
1384
+ * <p>The configured table summary for the objects listed by the request.</p>
1385
+ */
1386
+ export interface ConfiguredTableSummary {
1387
+ /**
1388
+ * <p>The unique ID of the configured table.</p>
1389
+ */
1390
+ id: string | undefined;
1391
+ /**
1392
+ * <p>The unique ARN of the configured table.</p>
1393
+ */
1394
+ arn: string | undefined;
1395
+ /**
1396
+ * <p>The name of the configured table.</p>
1397
+ */
1398
+ name: string | undefined;
1399
+ /**
1400
+ * <p>The time the configured table was created.</p>
1401
+ */
1402
+ createTime: Date | undefined;
1403
+ /**
1404
+ * <p>The time the configured table was last updated.</p>
1405
+ */
1406
+ updateTime: Date | undefined;
1407
+ /**
1408
+ * <p>The types of analysis rules associated with this configured table.</p>
1409
+ */
1410
+ analysisRuleTypes: (ConfiguredTableAnalysisRuleType | string)[] | undefined;
1411
+ /**
1412
+ * <p>The analysis method for the configured tables. The only valid value is currently `DIRECT_QUERY`.</p>
1413
+ */
1414
+ analysisMethod: AnalysisMethod | string | undefined;
1415
+ }
1416
+ export interface ListConfiguredTablesOutput {
1417
+ /**
1418
+ * <p>The configured tables listed by the request.</p>
1419
+ */
1420
+ configuredTableSummaries: ConfiguredTableSummary[] | undefined;
1421
+ /**
1422
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
1423
+ */
1424
+ nextToken?: string;
1425
+ }
1426
+ export interface UpdateConfiguredTableInput {
1427
+ /**
1428
+ * <p>The identifier for the configured table to update. Currently accepts the configured table ID.</p>
1429
+ */
1430
+ configuredTableIdentifier: string | undefined;
1431
+ /**
1432
+ * <p>A new name for the configured table.</p>
1433
+ */
1434
+ name?: string;
1435
+ /**
1436
+ * <p>A new description for the configured table.</p>
1437
+ */
1438
+ description?: string;
1439
+ }
1440
+ export interface UpdateConfiguredTableOutput {
1441
+ /**
1442
+ * <p>The updated configured table.</p>
1443
+ */
1444
+ configuredTable: ConfiguredTable | undefined;
1445
+ }
1446
+ export interface UpdateConfiguredTableAnalysisRuleInput {
1447
+ /**
1448
+ * <p>The unique identifier for the configured table that the analysis rule applies to.
1449
+ * Currently accepts the configured table ID.</p>
1450
+ */
1451
+ configuredTableIdentifier: string | undefined;
1452
+ /**
1453
+ * <p>The analysis rule type to be updated. Configured table analysis rules are uniquely identified by their configured table identifier and analysis rule type.</p>
1454
+ */
1455
+ analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
1456
+ /**
1457
+ * <p>The new analysis rule policy for the configured table analysis rule.</p>
1458
+ */
1459
+ analysisRulePolicy: ConfiguredTableAnalysisRulePolicy | undefined;
1460
+ }
1461
+ export interface UpdateConfiguredTableAnalysisRuleOutput {
1462
+ /**
1463
+ * <p>The entire updated analysis rule.</p>
1464
+ */
1465
+ analysisRule: ConfiguredTableAnalysisRule | undefined;
1466
+ }
1467
+ export declare enum MembershipQueryLogStatus {
1468
+ DISABLED = "DISABLED",
1469
+ ENABLED = "ENABLED"
1470
+ }
1471
+ export interface CreateMembershipInput {
1472
+ /**
1473
+ * <p>The unique ID for the associated collaboration.</p>
1474
+ */
1475
+ collaborationIdentifier: string | undefined;
1476
+ /**
1477
+ * <p>An indicator as to whether query logging has been enabled or disabled for the
1478
+ * collaboration.</p>
1479
+ */
1480
+ queryLogStatus: MembershipQueryLogStatus | string | undefined;
1481
+ }
1482
+ export declare enum MembershipStatus {
1483
+ ACTIVE = "ACTIVE",
1484
+ COLLABORATION_DELETED = "COLLABORATION_DELETED",
1485
+ REMOVED = "REMOVED"
1486
+ }
1487
+ /**
1488
+ * <p>The membership object.</p>
1489
+ */
1490
+ export interface Membership {
1491
+ /**
1492
+ * <p>The unique ID of the membership.</p>
1493
+ */
1494
+ id: string | undefined;
1495
+ /**
1496
+ * <p>The unique ARN for the membership.</p>
1497
+ */
1498
+ arn: string | undefined;
1499
+ /**
1500
+ * <p>The unique ARN for the membership's associated collaboration.</p>
1501
+ */
1502
+ collaborationArn: string | undefined;
1503
+ /**
1504
+ * <p>The unique ID for the membership's collaboration.</p>
1505
+ */
1506
+ collaborationId: string | undefined;
1507
+ /**
1508
+ * <p>The identifier used to reference members of the collaboration. Currently only supports AWS account ID.</p>
1509
+ */
1510
+ collaborationCreatorAccountId: string | undefined;
1511
+ /**
1512
+ * <p>The display name of the collaboration creator.</p>
1513
+ */
1514
+ collaborationCreatorDisplayName: string | undefined;
1515
+ /**
1516
+ * <p>The name of the membership's collaboration.</p>
1517
+ */
1518
+ collaborationName: string | undefined;
1519
+ /**
1520
+ * <p>The time when the membership was created.</p>
1521
+ */
1522
+ createTime: Date | undefined;
1523
+ /**
1524
+ * <p>The time the membership metadata was last updated.</p>
1525
+ */
1526
+ updateTime: Date | undefined;
1527
+ /**
1528
+ * <p>The status of the membership. Valid values are `ACTIVE`, `REMOVED`, and `COLLABORATION_DELETED`.</p>
1529
+ */
1530
+ status: MembershipStatus | string | undefined;
1531
+ /**
1532
+ * <p>The abilities granted to the collaboration member.</p>
1533
+ */
1534
+ memberAbilities: (MemberAbility | string)[] | undefined;
1535
+ /**
1536
+ * <p>An indicator as to whether query logging has been enabled or disabled for the
1537
+ * collaboration.</p>
1538
+ */
1539
+ queryLogStatus: MembershipQueryLogStatus | string | undefined;
1540
+ }
1541
+ export interface CreateMembershipOutput {
1542
+ /**
1543
+ * <p>The membership that was created.</p>
1544
+ */
1545
+ membership: Membership | undefined;
1546
+ }
1547
+ export interface DeleteMembershipInput {
1548
+ /**
1549
+ * <p>The identifier for a membership resource.</p>
1550
+ */
1551
+ membershipIdentifier: string | undefined;
1552
+ }
1553
+ export interface DeleteMembershipOutput {
1554
+ }
1555
+ export interface GetMembershipInput {
1556
+ /**
1557
+ * <p>The identifier for a membership resource.</p>
1558
+ */
1559
+ membershipIdentifier: string | undefined;
1560
+ }
1561
+ export interface GetMembershipOutput {
1562
+ /**
1563
+ * <p>The membership retrieved for the provided identifier.</p>
1564
+ */
1565
+ membership: Membership | undefined;
1566
+ }
1567
+ export interface GetProtectedQueryInput {
1568
+ /**
1569
+ * <p>The identifier for a membership in a protected query instance.</p>
1570
+ */
1571
+ membershipIdentifier: string | undefined;
1572
+ /**
1573
+ * <p>The identifier for a protected query instance.</p>
1574
+ */
1575
+ protectedQueryIdentifier: string | undefined;
1576
+ }
1577
+ /**
1578
+ * <p>Details of errors thrown by the protected query.</p>
1579
+ */
1580
+ export interface ProtectedQueryError {
1581
+ /**
1582
+ * <p>A description of why the query failed.</p>
1583
+ */
1584
+ message: string | undefined;
1585
+ /**
1586
+ * <p>An error code for the error.</p>
1587
+ */
1588
+ code: string | undefined;
1589
+ }
1590
+ /**
1591
+ * <p>Contains output information for protected queries with an S3 output type.</p>
1592
+ */
1593
+ export interface ProtectedQueryS3Output {
1594
+ /**
1595
+ * <p>The S3 location of the result.</p>
1596
+ */
1597
+ location: string | undefined;
1598
+ }
1599
+ /**
1600
+ * <p>Contains details about the protected query output.</p>
1601
+ */
1602
+ export declare type ProtectedQueryOutput = ProtectedQueryOutput.S3Member | ProtectedQueryOutput.$UnknownMember;
1603
+ export declare namespace ProtectedQueryOutput {
1604
+ /**
1605
+ * <p>If present, the output for a protected query with an `S3` output type.</p>
1606
+ */
1607
+ interface S3Member {
1608
+ s3: ProtectedQueryS3Output;
1609
+ $unknown?: never;
1610
+ }
1611
+ interface $UnknownMember {
1612
+ s3?: never;
1613
+ $unknown: [string, any];
1614
+ }
1615
+ interface Visitor<T> {
1616
+ s3: (value: ProtectedQueryS3Output) => T;
1617
+ _: (name: string, value: any) => T;
1618
+ }
1619
+ const visit: <T>(value: ProtectedQueryOutput, visitor: Visitor<T>) => T;
1620
+ }
1621
+ /**
1622
+ * <p>Details about the query results.</p>
1623
+ */
1624
+ export interface ProtectedQueryResult {
1625
+ /**
1626
+ * <p>The output of the protected query.</p>
1627
+ */
1628
+ output: ProtectedQueryOutput | undefined;
1629
+ }
1630
+ export declare enum ResultFormat {
1631
+ CSV = "CSV",
1632
+ PARQUET = "PARQUET"
1633
+ }
1634
+ /**
1635
+ * <p>Contains the configuration to write the query results to S3.</p>
1636
+ */
1637
+ export interface ProtectedQueryS3OutputConfiguration {
1638
+ /**
1639
+ * <p>Intended file format of the result.</p>
1640
+ */
1641
+ resultFormat: ResultFormat | string | undefined;
1642
+ /**
1643
+ * <p>The S3 bucket to unload the protected query results.</p>
1644
+ */
1645
+ bucket: string | undefined;
1646
+ /**
1647
+ * <p>The S3 prefix to unload the protected query results.</p>
1648
+ */
1649
+ keyPrefix?: string;
1650
+ }
1651
+ /**
1652
+ * <p>Contains configuration details for protected query output.</p>
1653
+ */
1654
+ export declare type ProtectedQueryOutputConfiguration = ProtectedQueryOutputConfiguration.S3Member | ProtectedQueryOutputConfiguration.$UnknownMember;
1655
+ export declare namespace ProtectedQueryOutputConfiguration {
1656
+ /**
1657
+ * <p>Required configuration for a protected query with an `S3` output type.</p>
1658
+ */
1659
+ interface S3Member {
1660
+ s3: ProtectedQueryS3OutputConfiguration;
1661
+ $unknown?: never;
1662
+ }
1663
+ interface $UnknownMember {
1664
+ s3?: never;
1665
+ $unknown: [string, any];
1666
+ }
1667
+ interface Visitor<T> {
1668
+ s3: (value: ProtectedQueryS3OutputConfiguration) => T;
1669
+ _: (name: string, value: any) => T;
1670
+ }
1671
+ const visit: <T>(value: ProtectedQueryOutputConfiguration, visitor: Visitor<T>) => T;
1672
+ }
1673
+ /**
1674
+ * <p>Contains configurations for protected query results.</p>
1675
+ */
1676
+ export interface ProtectedQueryResultConfiguration {
1677
+ /**
1678
+ * <p>Configuration for protected query results.</p>
1679
+ */
1680
+ outputConfiguration: ProtectedQueryOutputConfiguration | undefined;
1681
+ }
1682
+ /**
1683
+ * <p>The parameters for the SQL type Protected Query.</p>
1684
+ */
1685
+ export interface ProtectedQuerySQLParameters {
1686
+ /**
1687
+ * <p>The query string to be submitted.</p>
1688
+ */
1689
+ queryString: string | undefined;
1690
+ }
1691
+ /**
1692
+ * <p>Contains statistics about the execution of the protected query.</p>
1693
+ */
1694
+ export interface ProtectedQueryStatistics {
1695
+ /**
1696
+ * <p>The duration of the Protected Query, from creation until query completion.</p>
1697
+ */
1698
+ totalDurationInMillis?: number;
1699
+ }
1700
+ export declare enum ProtectedQueryStatus {
1701
+ CANCELLED = "CANCELLED",
1702
+ CANCELLING = "CANCELLING",
1703
+ FAILED = "FAILED",
1704
+ STARTED = "STARTED",
1705
+ SUBMITTED = "SUBMITTED",
1706
+ SUCCESS = "SUCCESS",
1707
+ TIMED_OUT = "TIMED_OUT"
1708
+ }
1709
+ /**
1710
+ * <p>The parameters for an AWS Clean Rooms protected query.</p>
1711
+ */
1712
+ export interface ProtectedQuery {
1713
+ /**
1714
+ * <p>The identifier for a protected query instance.</p>
1715
+ */
1716
+ id: string | undefined;
1717
+ /**
1718
+ * <p>The identifier for the membership.</p>
1719
+ */
1720
+ membershipId: string | undefined;
1721
+ /**
1722
+ * <p>The ARN of the membership.</p>
1723
+ */
1724
+ membershipArn: string | undefined;
1725
+ /**
1726
+ * <p>The time at which the protected query was created.</p>
1727
+ */
1728
+ createTime: Date | undefined;
1729
+ /**
1730
+ * <p>The protected query SQL parameters.</p>
1731
+ */
1732
+ sqlParameters: ProtectedQuerySQLParameters | undefined;
1733
+ /**
1734
+ * <p>The status of the query.</p>
1735
+ */
1736
+ status: ProtectedQueryStatus | string | undefined;
1737
+ /**
1738
+ * <p>Contains any details needed to write the query results.</p>
1739
+ */
1740
+ resultConfiguration: ProtectedQueryResultConfiguration | undefined;
1741
+ /**
1742
+ * <p>Statistics about protected query execution.</p>
1743
+ */
1744
+ statistics?: ProtectedQueryStatistics;
1745
+ /**
1746
+ * <p>The result of the protected query.</p>
1747
+ */
1748
+ result?: ProtectedQueryResult;
1749
+ /**
1750
+ * <p>An error thrown by the protected query.</p>
1751
+ */
1752
+ error?: ProtectedQueryError;
1753
+ }
1754
+ export interface GetProtectedQueryOutput {
1755
+ /**
1756
+ * <p>The query processing metadata.</p>
1757
+ */
1758
+ protectedQuery: ProtectedQuery | undefined;
1759
+ }
1760
+ export interface ListMembershipsInput {
1761
+ /**
1762
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
1763
+ */
1764
+ nextToken?: string;
1765
+ /**
1766
+ * <p>The maximum size of the results that is returned per call.</p>
1767
+ */
1768
+ maxResults?: number;
1769
+ /**
1770
+ * <p>A filter which will return only memberships in the specified status.</p>
1771
+ */
1772
+ status?: MembershipStatus | string;
1773
+ }
1774
+ /**
1775
+ * <p>The membership object listed by the request.</p>
1776
+ */
1777
+ export interface MembershipSummary {
1778
+ /**
1779
+ * <p>The unique ID for the membership's collaboration.</p>
1780
+ */
1781
+ id: string | undefined;
1782
+ /**
1783
+ * <p>The unique ARN for the membership.</p>
1784
+ */
1785
+ arn: string | undefined;
1786
+ /**
1787
+ * <p>The unique ARN for the membership's associated collaboration.</p>
1788
+ */
1789
+ collaborationArn: string | undefined;
1790
+ /**
1791
+ * <p>The unique ID for the membership's collaboration.</p>
1792
+ */
1793
+ collaborationId: string | undefined;
1794
+ /**
1795
+ * <p>The identifier of the AWS principal that created the collaboration. Currently only supports AWS account ID.</p>
1796
+ */
1797
+ collaborationCreatorAccountId: string | undefined;
1798
+ /**
1799
+ * <p>The display name of the collaboration creator.</p>
1800
+ */
1801
+ collaborationCreatorDisplayName: string | undefined;
1802
+ /**
1803
+ * <p>The name for the membership's collaboration.</p>
1804
+ */
1805
+ collaborationName: string | undefined;
1806
+ /**
1807
+ * <p>The time when the membership was created.</p>
1808
+ */
1809
+ createTime: Date | undefined;
1810
+ /**
1811
+ * <p>The time the membership metadata was last updated.</p>
1812
+ */
1813
+ updateTime: Date | undefined;
1814
+ /**
1815
+ * <p>The status of the membership. Valid values are `ACTIVE`, `REMOVED`, and `COLLABORATION_DELETED`.</p>
1816
+ */
1817
+ status: MembershipStatus | string | undefined;
1818
+ /**
1819
+ * <p>The abilities granted to the collaboration member.</p>
1820
+ */
1821
+ memberAbilities: (MemberAbility | string)[] | undefined;
1822
+ }
1823
+ export interface ListMembershipsOutput {
1824
+ /**
1825
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
1826
+ */
1827
+ nextToken?: string;
1828
+ /**
1829
+ * <p>The list of memberships returned from the ListMemberships operation.</p>
1830
+ */
1831
+ membershipSummaries: MembershipSummary[] | undefined;
1832
+ }
1833
+ export interface ListProtectedQueriesInput {
1834
+ /**
1835
+ * <p>The identifier for the membership in the collaboration.</p>
1836
+ */
1837
+ membershipIdentifier: string | undefined;
1838
+ /**
1839
+ * <p>A filter on the status of the protected query.</p>
1840
+ */
1841
+ status?: ProtectedQueryStatus | string;
1842
+ /**
1843
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
1844
+ */
1845
+ nextToken?: string;
1846
+ /**
1847
+ * <p>The maximum size of the results that is returned per call. Service chooses a default if
1848
+ * it has not been set. Service can return a nextToken even if the maximum results has not
1849
+ * been met. </p>
1850
+ */
1851
+ maxResults?: number;
1852
+ }
1853
+ /**
1854
+ * <p>The protected query summary for the objects listed by the request.</p>
1855
+ */
1856
+ export interface ProtectedQuerySummary {
1857
+ /**
1858
+ * <p>The unique ID of the protected query.</p>
1859
+ */
1860
+ id: string | undefined;
1861
+ /**
1862
+ * <p>The unique ID for the membership that initiated the protected query.</p>
1863
+ */
1864
+ membershipId: string | undefined;
1865
+ /**
1866
+ * <p>The unique ARN for the membership that initiated the protected query.</p>
1867
+ */
1868
+ membershipArn: string | undefined;
1869
+ /**
1870
+ * <p>The time the protected query was created.</p>
1871
+ */
1872
+ createTime: Date | undefined;
1873
+ /**
1874
+ * <p>The status of the protected query. Value values are `SUBMITTED`, `STARTED`, `CANCELLED`, `CANCELLING`, `FAILED`, `SUCCESS`, `TIMED_OUT`.</p>
1875
+ */
1876
+ status: ProtectedQueryStatus | string | undefined;
1877
+ }
1878
+ export interface ListProtectedQueriesOutput {
1879
+ /**
1880
+ * <p>The token value retrieved from a previous call to access the next page of results.</p>
1881
+ */
1882
+ nextToken?: string;
1883
+ /**
1884
+ * <p>A list of protected queries.</p>
1885
+ */
1886
+ protectedQueries: ProtectedQuerySummary[] | undefined;
1887
+ }
1888
+ export declare enum ProtectedQueryType {
1889
+ SQL = "SQL"
1890
+ }
1891
+ export interface StartProtectedQueryInput {
1892
+ /**
1893
+ * <p>The type of the protected query to be started.</p>
1894
+ */
1895
+ type: ProtectedQueryType | string | undefined;
1896
+ /**
1897
+ * <p>A unique identifier for the membership to run this query against. Currently accepts a membership ID.</p>
1898
+ */
1899
+ membershipIdentifier: string | undefined;
1900
+ /**
1901
+ * <p>The protected SQL query parameters.</p>
1902
+ */
1903
+ sqlParameters: ProtectedQuerySQLParameters | undefined;
1904
+ /**
1905
+ * <p>The details needed to write the query results.</p>
1906
+ */
1907
+ resultConfiguration: ProtectedQueryResultConfiguration | undefined;
1908
+ }
1909
+ export interface StartProtectedQueryOutput {
1910
+ /**
1911
+ * <p>The protected query.</p>
1912
+ */
1913
+ protectedQuery: ProtectedQuery | undefined;
1914
+ }
1915
+ export interface UpdateMembershipInput {
1916
+ /**
1917
+ * <p>The unique identifier of the membership.</p>
1918
+ */
1919
+ membershipIdentifier: string | undefined;
1920
+ /**
1921
+ * <p>An indicator as to whether query logging has been enabled or disabled for the
1922
+ * collaboration.</p>
1923
+ */
1924
+ queryLogStatus?: MembershipQueryLogStatus | string;
1925
+ }
1926
+ export interface UpdateMembershipOutput {
1927
+ /**
1928
+ * <p>The membership object.</p>
1929
+ */
1930
+ membership: Membership | undefined;
1931
+ }
1932
+ export declare enum TargetProtectedQueryStatus {
1933
+ CANCELLED = "CANCELLED"
1934
+ }
1935
+ export interface UpdateProtectedQueryInput {
1936
+ /**
1937
+ * <p>The identifier for a member of a protected query instance.</p>
1938
+ */
1939
+ membershipIdentifier: string | undefined;
1940
+ /**
1941
+ * <p>The identifier for a protected query instance.</p>
1942
+ */
1943
+ protectedQueryIdentifier: string | undefined;
1944
+ /**
1945
+ * <p>The target status of a query. Used to update the execution status of a currently running query.</p>
1946
+ */
1947
+ targetStatus: TargetProtectedQueryStatus | string | undefined;
1948
+ }
1949
+ export interface UpdateProtectedQueryOutput {
1950
+ /**
1951
+ * <p>The protected query output.</p>
1952
+ */
1953
+ protectedQuery: ProtectedQuery | undefined;
1954
+ }
1955
+ /**
1956
+ * @internal
1957
+ */
1958
+ export declare const AggregateColumnFilterSensitiveLog: (obj: AggregateColumn) => any;
1959
+ /**
1960
+ * @internal
1961
+ */
1962
+ export declare const AggregationConstraintFilterSensitiveLog: (obj: AggregationConstraint) => any;
1963
+ /**
1964
+ * @internal
1965
+ */
1966
+ export declare const AnalysisRuleAggregationFilterSensitiveLog: (obj: AnalysisRuleAggregation) => any;
1967
+ /**
1968
+ * @internal
1969
+ */
1970
+ export declare const AnalysisRuleListFilterSensitiveLog: (obj: AnalysisRuleList) => any;
1971
+ /**
1972
+ * @internal
1973
+ */
1974
+ export declare const AnalysisRulePolicyV1FilterSensitiveLog: (obj: AnalysisRulePolicyV1) => any;
1975
+ /**
1976
+ * @internal
1977
+ */
1978
+ export declare const AnalysisRulePolicyFilterSensitiveLog: (obj: AnalysisRulePolicy) => any;
1979
+ /**
1980
+ * @internal
1981
+ */
1982
+ export declare const AnalysisRuleFilterSensitiveLog: (obj: AnalysisRule) => any;
1983
+ /**
1984
+ * @internal
1985
+ */
1986
+ export declare const BatchGetSchemaInputFilterSensitiveLog: (obj: BatchGetSchemaInput) => any;
1987
+ /**
1988
+ * @internal
1989
+ */
1990
+ export declare const BatchGetSchemaErrorFilterSensitiveLog: (obj: BatchGetSchemaError) => any;
1991
+ /**
1992
+ * @internal
1993
+ */
1994
+ export declare const ColumnFilterSensitiveLog: (obj: Column) => any;
1995
+ /**
1996
+ * @internal
1997
+ */
1998
+ export declare const SchemaFilterSensitiveLog: (obj: Schema) => any;
1999
+ /**
2000
+ * @internal
2001
+ */
2002
+ export declare const BatchGetSchemaOutputFilterSensitiveLog: (obj: BatchGetSchemaOutput) => any;
2003
+ /**
2004
+ * @internal
2005
+ */
2006
+ export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
2007
+ /**
2008
+ * @internal
2009
+ */
2010
+ export declare const DataEncryptionMetadataFilterSensitiveLog: (obj: DataEncryptionMetadata) => any;
2011
+ /**
2012
+ * @internal
2013
+ */
2014
+ export declare const MemberSpecificationFilterSensitiveLog: (obj: MemberSpecification) => any;
2015
+ /**
2016
+ * @internal
2017
+ */
2018
+ export declare const CreateCollaborationInputFilterSensitiveLog: (obj: CreateCollaborationInput) => any;
2019
+ /**
2020
+ * @internal
2021
+ */
2022
+ export declare const CollaborationFilterSensitiveLog: (obj: Collaboration) => any;
2023
+ /**
2024
+ * @internal
2025
+ */
2026
+ export declare const CreateCollaborationOutputFilterSensitiveLog: (obj: CreateCollaborationOutput) => any;
2027
+ /**
2028
+ * @internal
2029
+ */
2030
+ export declare const DeleteCollaborationInputFilterSensitiveLog: (obj: DeleteCollaborationInput) => any;
2031
+ /**
2032
+ * @internal
2033
+ */
2034
+ export declare const DeleteCollaborationOutputFilterSensitiveLog: (obj: DeleteCollaborationOutput) => any;
2035
+ /**
2036
+ * @internal
2037
+ */
2038
+ export declare const DeleteMemberInputFilterSensitiveLog: (obj: DeleteMemberInput) => any;
2039
+ /**
2040
+ * @internal
2041
+ */
2042
+ export declare const DeleteMemberOutputFilterSensitiveLog: (obj: DeleteMemberOutput) => any;
2043
+ /**
2044
+ * @internal
2045
+ */
2046
+ export declare const GetCollaborationInputFilterSensitiveLog: (obj: GetCollaborationInput) => any;
2047
+ /**
2048
+ * @internal
2049
+ */
2050
+ export declare const GetCollaborationOutputFilterSensitiveLog: (obj: GetCollaborationOutput) => any;
2051
+ /**
2052
+ * @internal
2053
+ */
2054
+ export declare const GetSchemaInputFilterSensitiveLog: (obj: GetSchemaInput) => any;
2055
+ /**
2056
+ * @internal
2057
+ */
2058
+ export declare const GetSchemaOutputFilterSensitiveLog: (obj: GetSchemaOutput) => any;
2059
+ /**
2060
+ * @internal
2061
+ */
2062
+ export declare const GetSchemaAnalysisRuleInputFilterSensitiveLog: (obj: GetSchemaAnalysisRuleInput) => any;
2063
+ /**
2064
+ * @internal
2065
+ */
2066
+ export declare const GetSchemaAnalysisRuleOutputFilterSensitiveLog: (obj: GetSchemaAnalysisRuleOutput) => any;
2067
+ /**
2068
+ * @internal
2069
+ */
2070
+ export declare const ListCollaborationsInputFilterSensitiveLog: (obj: ListCollaborationsInput) => any;
2071
+ /**
2072
+ * @internal
2073
+ */
2074
+ export declare const CollaborationSummaryFilterSensitiveLog: (obj: CollaborationSummary) => any;
2075
+ /**
2076
+ * @internal
2077
+ */
2078
+ export declare const ListCollaborationsOutputFilterSensitiveLog: (obj: ListCollaborationsOutput) => any;
2079
+ /**
2080
+ * @internal
2081
+ */
2082
+ export declare const ListMembersInputFilterSensitiveLog: (obj: ListMembersInput) => any;
2083
+ /**
2084
+ * @internal
2085
+ */
2086
+ export declare const MemberSummaryFilterSensitiveLog: (obj: MemberSummary) => any;
2087
+ /**
2088
+ * @internal
2089
+ */
2090
+ export declare const ListMembersOutputFilterSensitiveLog: (obj: ListMembersOutput) => any;
2091
+ /**
2092
+ * @internal
2093
+ */
2094
+ export declare const ListSchemasInputFilterSensitiveLog: (obj: ListSchemasInput) => any;
2095
+ /**
2096
+ * @internal
2097
+ */
2098
+ export declare const SchemaSummaryFilterSensitiveLog: (obj: SchemaSummary) => any;
2099
+ /**
2100
+ * @internal
2101
+ */
2102
+ export declare const ListSchemasOutputFilterSensitiveLog: (obj: ListSchemasOutput) => any;
2103
+ /**
2104
+ * @internal
2105
+ */
2106
+ export declare const UpdateCollaborationInputFilterSensitiveLog: (obj: UpdateCollaborationInput) => any;
2107
+ /**
2108
+ * @internal
2109
+ */
2110
+ export declare const UpdateCollaborationOutputFilterSensitiveLog: (obj: UpdateCollaborationOutput) => any;
2111
+ /**
2112
+ * @internal
2113
+ */
2114
+ export declare const CreateConfiguredTableAssociationInputFilterSensitiveLog: (obj: CreateConfiguredTableAssociationInput) => any;
2115
+ /**
2116
+ * @internal
2117
+ */
2118
+ export declare const ConfiguredTableAssociationFilterSensitiveLog: (obj: ConfiguredTableAssociation) => any;
2119
+ /**
2120
+ * @internal
2121
+ */
2122
+ export declare const CreateConfiguredTableAssociationOutputFilterSensitiveLog: (obj: CreateConfiguredTableAssociationOutput) => any;
2123
+ /**
2124
+ * @internal
2125
+ */
2126
+ export declare const DeleteConfiguredTableAssociationInputFilterSensitiveLog: (obj: DeleteConfiguredTableAssociationInput) => any;
2127
+ /**
2128
+ * @internal
2129
+ */
2130
+ export declare const DeleteConfiguredTableAssociationOutputFilterSensitiveLog: (obj: DeleteConfiguredTableAssociationOutput) => any;
2131
+ /**
2132
+ * @internal
2133
+ */
2134
+ export declare const GetConfiguredTableAssociationInputFilterSensitiveLog: (obj: GetConfiguredTableAssociationInput) => any;
2135
+ /**
2136
+ * @internal
2137
+ */
2138
+ export declare const GetConfiguredTableAssociationOutputFilterSensitiveLog: (obj: GetConfiguredTableAssociationOutput) => any;
2139
+ /**
2140
+ * @internal
2141
+ */
2142
+ export declare const ListConfiguredTableAssociationsInputFilterSensitiveLog: (obj: ListConfiguredTableAssociationsInput) => any;
2143
+ /**
2144
+ * @internal
2145
+ */
2146
+ export declare const ConfiguredTableAssociationSummaryFilterSensitiveLog: (obj: ConfiguredTableAssociationSummary) => any;
2147
+ /**
2148
+ * @internal
2149
+ */
2150
+ export declare const ListConfiguredTableAssociationsOutputFilterSensitiveLog: (obj: ListConfiguredTableAssociationsOutput) => any;
2151
+ /**
2152
+ * @internal
2153
+ */
2154
+ export declare const UpdateConfiguredTableAssociationInputFilterSensitiveLog: (obj: UpdateConfiguredTableAssociationInput) => any;
2155
+ /**
2156
+ * @internal
2157
+ */
2158
+ export declare const UpdateConfiguredTableAssociationOutputFilterSensitiveLog: (obj: UpdateConfiguredTableAssociationOutput) => any;
2159
+ /**
2160
+ * @internal
2161
+ */
2162
+ export declare const GlueTableReferenceFilterSensitiveLog: (obj: GlueTableReference) => any;
2163
+ /**
2164
+ * @internal
2165
+ */
2166
+ export declare const TableReferenceFilterSensitiveLog: (obj: TableReference) => any;
2167
+ /**
2168
+ * @internal
2169
+ */
2170
+ export declare const CreateConfiguredTableInputFilterSensitiveLog: (obj: CreateConfiguredTableInput) => any;
2171
+ /**
2172
+ * @internal
2173
+ */
2174
+ export declare const ConfiguredTableFilterSensitiveLog: (obj: ConfiguredTable) => any;
2175
+ /**
2176
+ * @internal
2177
+ */
2178
+ export declare const CreateConfiguredTableOutputFilterSensitiveLog: (obj: CreateConfiguredTableOutput) => any;
2179
+ /**
2180
+ * @internal
2181
+ */
2182
+ export declare const ConfiguredTableAnalysisRulePolicyV1FilterSensitiveLog: (obj: ConfiguredTableAnalysisRulePolicyV1) => any;
2183
+ /**
2184
+ * @internal
2185
+ */
2186
+ export declare const ConfiguredTableAnalysisRulePolicyFilterSensitiveLog: (obj: ConfiguredTableAnalysisRulePolicy) => any;
2187
+ /**
2188
+ * @internal
2189
+ */
2190
+ export declare const CreateConfiguredTableAnalysisRuleInputFilterSensitiveLog: (obj: CreateConfiguredTableAnalysisRuleInput) => any;
2191
+ /**
2192
+ * @internal
2193
+ */
2194
+ export declare const ConfiguredTableAnalysisRuleFilterSensitiveLog: (obj: ConfiguredTableAnalysisRule) => any;
2195
+ /**
2196
+ * @internal
2197
+ */
2198
+ export declare const CreateConfiguredTableAnalysisRuleOutputFilterSensitiveLog: (obj: CreateConfiguredTableAnalysisRuleOutput) => any;
2199
+ /**
2200
+ * @internal
2201
+ */
2202
+ export declare const DeleteConfiguredTableInputFilterSensitiveLog: (obj: DeleteConfiguredTableInput) => any;
2203
+ /**
2204
+ * @internal
2205
+ */
2206
+ export declare const DeleteConfiguredTableOutputFilterSensitiveLog: (obj: DeleteConfiguredTableOutput) => any;
2207
+ /**
2208
+ * @internal
2209
+ */
2210
+ export declare const DeleteConfiguredTableAnalysisRuleInputFilterSensitiveLog: (obj: DeleteConfiguredTableAnalysisRuleInput) => any;
2211
+ /**
2212
+ * @internal
2213
+ */
2214
+ export declare const DeleteConfiguredTableAnalysisRuleOutputFilterSensitiveLog: (obj: DeleteConfiguredTableAnalysisRuleOutput) => any;
2215
+ /**
2216
+ * @internal
2217
+ */
2218
+ export declare const GetConfiguredTableInputFilterSensitiveLog: (obj: GetConfiguredTableInput) => any;
2219
+ /**
2220
+ * @internal
2221
+ */
2222
+ export declare const GetConfiguredTableOutputFilterSensitiveLog: (obj: GetConfiguredTableOutput) => any;
2223
+ /**
2224
+ * @internal
2225
+ */
2226
+ export declare const GetConfiguredTableAnalysisRuleInputFilterSensitiveLog: (obj: GetConfiguredTableAnalysisRuleInput) => any;
2227
+ /**
2228
+ * @internal
2229
+ */
2230
+ export declare const GetConfiguredTableAnalysisRuleOutputFilterSensitiveLog: (obj: GetConfiguredTableAnalysisRuleOutput) => any;
2231
+ /**
2232
+ * @internal
2233
+ */
2234
+ export declare const ListConfiguredTablesInputFilterSensitiveLog: (obj: ListConfiguredTablesInput) => any;
2235
+ /**
2236
+ * @internal
2237
+ */
2238
+ export declare const ConfiguredTableSummaryFilterSensitiveLog: (obj: ConfiguredTableSummary) => any;
2239
+ /**
2240
+ * @internal
2241
+ */
2242
+ export declare const ListConfiguredTablesOutputFilterSensitiveLog: (obj: ListConfiguredTablesOutput) => any;
2243
+ /**
2244
+ * @internal
2245
+ */
2246
+ export declare const UpdateConfiguredTableInputFilterSensitiveLog: (obj: UpdateConfiguredTableInput) => any;
2247
+ /**
2248
+ * @internal
2249
+ */
2250
+ export declare const UpdateConfiguredTableOutputFilterSensitiveLog: (obj: UpdateConfiguredTableOutput) => any;
2251
+ /**
2252
+ * @internal
2253
+ */
2254
+ export declare const UpdateConfiguredTableAnalysisRuleInputFilterSensitiveLog: (obj: UpdateConfiguredTableAnalysisRuleInput) => any;
2255
+ /**
2256
+ * @internal
2257
+ */
2258
+ export declare const UpdateConfiguredTableAnalysisRuleOutputFilterSensitiveLog: (obj: UpdateConfiguredTableAnalysisRuleOutput) => any;
2259
+ /**
2260
+ * @internal
2261
+ */
2262
+ export declare const CreateMembershipInputFilterSensitiveLog: (obj: CreateMembershipInput) => any;
2263
+ /**
2264
+ * @internal
2265
+ */
2266
+ export declare const MembershipFilterSensitiveLog: (obj: Membership) => any;
2267
+ /**
2268
+ * @internal
2269
+ */
2270
+ export declare const CreateMembershipOutputFilterSensitiveLog: (obj: CreateMembershipOutput) => any;
2271
+ /**
2272
+ * @internal
2273
+ */
2274
+ export declare const DeleteMembershipInputFilterSensitiveLog: (obj: DeleteMembershipInput) => any;
2275
+ /**
2276
+ * @internal
2277
+ */
2278
+ export declare const DeleteMembershipOutputFilterSensitiveLog: (obj: DeleteMembershipOutput) => any;
2279
+ /**
2280
+ * @internal
2281
+ */
2282
+ export declare const GetMembershipInputFilterSensitiveLog: (obj: GetMembershipInput) => any;
2283
+ /**
2284
+ * @internal
2285
+ */
2286
+ export declare const GetMembershipOutputFilterSensitiveLog: (obj: GetMembershipOutput) => any;
2287
+ /**
2288
+ * @internal
2289
+ */
2290
+ export declare const GetProtectedQueryInputFilterSensitiveLog: (obj: GetProtectedQueryInput) => any;
2291
+ /**
2292
+ * @internal
2293
+ */
2294
+ export declare const ProtectedQueryErrorFilterSensitiveLog: (obj: ProtectedQueryError) => any;
2295
+ /**
2296
+ * @internal
2297
+ */
2298
+ export declare const ProtectedQueryS3OutputFilterSensitiveLog: (obj: ProtectedQueryS3Output) => any;
2299
+ /**
2300
+ * @internal
2301
+ */
2302
+ export declare const ProtectedQueryOutputFilterSensitiveLog: (obj: ProtectedQueryOutput) => any;
2303
+ /**
2304
+ * @internal
2305
+ */
2306
+ export declare const ProtectedQueryResultFilterSensitiveLog: (obj: ProtectedQueryResult) => any;
2307
+ /**
2308
+ * @internal
2309
+ */
2310
+ export declare const ProtectedQueryS3OutputConfigurationFilterSensitiveLog: (obj: ProtectedQueryS3OutputConfiguration) => any;
2311
+ /**
2312
+ * @internal
2313
+ */
2314
+ export declare const ProtectedQueryOutputConfigurationFilterSensitiveLog: (obj: ProtectedQueryOutputConfiguration) => any;
2315
+ /**
2316
+ * @internal
2317
+ */
2318
+ export declare const ProtectedQueryResultConfigurationFilterSensitiveLog: (obj: ProtectedQueryResultConfiguration) => any;
2319
+ /**
2320
+ * @internal
2321
+ */
2322
+ export declare const ProtectedQuerySQLParametersFilterSensitiveLog: (obj: ProtectedQuerySQLParameters) => any;
2323
+ /**
2324
+ * @internal
2325
+ */
2326
+ export declare const ProtectedQueryStatisticsFilterSensitiveLog: (obj: ProtectedQueryStatistics) => any;
2327
+ /**
2328
+ * @internal
2329
+ */
2330
+ export declare const ProtectedQueryFilterSensitiveLog: (obj: ProtectedQuery) => any;
2331
+ /**
2332
+ * @internal
2333
+ */
2334
+ export declare const GetProtectedQueryOutputFilterSensitiveLog: (obj: GetProtectedQueryOutput) => any;
2335
+ /**
2336
+ * @internal
2337
+ */
2338
+ export declare const ListMembershipsInputFilterSensitiveLog: (obj: ListMembershipsInput) => any;
2339
+ /**
2340
+ * @internal
2341
+ */
2342
+ export declare const MembershipSummaryFilterSensitiveLog: (obj: MembershipSummary) => any;
2343
+ /**
2344
+ * @internal
2345
+ */
2346
+ export declare const ListMembershipsOutputFilterSensitiveLog: (obj: ListMembershipsOutput) => any;
2347
+ /**
2348
+ * @internal
2349
+ */
2350
+ export declare const ListProtectedQueriesInputFilterSensitiveLog: (obj: ListProtectedQueriesInput) => any;
2351
+ /**
2352
+ * @internal
2353
+ */
2354
+ export declare const ProtectedQuerySummaryFilterSensitiveLog: (obj: ProtectedQuerySummary) => any;
2355
+ /**
2356
+ * @internal
2357
+ */
2358
+ export declare const ListProtectedQueriesOutputFilterSensitiveLog: (obj: ListProtectedQueriesOutput) => any;
2359
+ /**
2360
+ * @internal
2361
+ */
2362
+ export declare const StartProtectedQueryInputFilterSensitiveLog: (obj: StartProtectedQueryInput) => any;
2363
+ /**
2364
+ * @internal
2365
+ */
2366
+ export declare const StartProtectedQueryOutputFilterSensitiveLog: (obj: StartProtectedQueryOutput) => any;
2367
+ /**
2368
+ * @internal
2369
+ */
2370
+ export declare const UpdateMembershipInputFilterSensitiveLog: (obj: UpdateMembershipInput) => any;
2371
+ /**
2372
+ * @internal
2373
+ */
2374
+ export declare const UpdateMembershipOutputFilterSensitiveLog: (obj: UpdateMembershipOutput) => any;
2375
+ /**
2376
+ * @internal
2377
+ */
2378
+ export declare const UpdateProtectedQueryInputFilterSensitiveLog: (obj: UpdateProtectedQueryInput) => any;
2379
+ /**
2380
+ * @internal
2381
+ */
2382
+ export declare const UpdateProtectedQueryOutputFilterSensitiveLog: (obj: UpdateProtectedQueryOutput) => any;