@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,1131 @@
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
+ export declare class AccessDeniedException extends __BaseException {
7
+ readonly name: "AccessDeniedException";
8
+ readonly $fault: "client";
9
+ reason?: AccessDeniedExceptionReason | string;
10
+ constructor(
11
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
12
+ );
13
+ }
14
+ export declare enum AggregateFunctionName {
15
+ AVG = "AVG",
16
+ COUNT = "COUNT",
17
+ COUNT_DISTINCT = "COUNT_DISTINCT",
18
+ SUM = "SUM",
19
+ SUM_DISTINCT = "SUM_DISTINCT",
20
+ }
21
+ export interface AggregateColumn {
22
+ columnNames: string[] | undefined;
23
+ function: AggregateFunctionName | string | undefined;
24
+ }
25
+ export declare enum AggregationType {
26
+ COUNT_DISTINCT = "COUNT_DISTINCT",
27
+ }
28
+ export interface AggregationConstraint {
29
+ columnName: string | undefined;
30
+ minimum: number | undefined;
31
+ type: AggregationType | string | undefined;
32
+ }
33
+ export declare enum AnalysisMethod {
34
+ DIRECT_QUERY = "DIRECT_QUERY",
35
+ }
36
+ export declare enum JoinRequiredOption {
37
+ QUERY_RUNNER = "QUERY_RUNNER",
38
+ }
39
+ export declare enum ScalarFunctions {
40
+ ABS = "ABS",
41
+ CAST = "CAST",
42
+ CEILING = "CEILING",
43
+ COALESCE = "COALESCE",
44
+ FLOOR = "FLOOR",
45
+ LN = "LN",
46
+ LOG = "LOG",
47
+ LOWER = "LOWER",
48
+ ROUND = "ROUND",
49
+ RTRIM = "RTRIM",
50
+ SQRT = "SQRT",
51
+ TRUNC = "TRUNC",
52
+ UPPER = "UPPER",
53
+ }
54
+ export interface AnalysisRuleAggregation {
55
+ aggregateColumns: AggregateColumn[] | undefined;
56
+ joinColumns: string[] | undefined;
57
+ joinRequired?: JoinRequiredOption | string;
58
+ dimensionColumns: string[] | undefined;
59
+ scalarFunctions: (ScalarFunctions | string)[] | undefined;
60
+ outputConstraints: AggregationConstraint[] | undefined;
61
+ }
62
+ export interface AnalysisRuleList {
63
+ joinColumns: string[] | undefined;
64
+ listColumns: string[] | undefined;
65
+ }
66
+ export declare type AnalysisRulePolicyV1 =
67
+ | AnalysisRulePolicyV1.AggregationMember
68
+ | AnalysisRulePolicyV1.ListMember
69
+ | AnalysisRulePolicyV1.$UnknownMember;
70
+ export declare namespace AnalysisRulePolicyV1 {
71
+ interface ListMember {
72
+ list: AnalysisRuleList;
73
+ aggregation?: never;
74
+ $unknown?: never;
75
+ }
76
+ interface AggregationMember {
77
+ list?: never;
78
+ aggregation: AnalysisRuleAggregation;
79
+ $unknown?: never;
80
+ }
81
+ interface $UnknownMember {
82
+ list?: never;
83
+ aggregation?: never;
84
+ $unknown: [string, any];
85
+ }
86
+ interface Visitor<T> {
87
+ list: (value: AnalysisRuleList) => T;
88
+ aggregation: (value: AnalysisRuleAggregation) => T;
89
+ _: (name: string, value: any) => T;
90
+ }
91
+ const visit: <T>(value: AnalysisRulePolicyV1, visitor: Visitor<T>) => T;
92
+ }
93
+ export declare type AnalysisRulePolicy =
94
+ | AnalysisRulePolicy.V1Member
95
+ | AnalysisRulePolicy.$UnknownMember;
96
+ export declare namespace AnalysisRulePolicy {
97
+ interface V1Member {
98
+ v1: AnalysisRulePolicyV1;
99
+ $unknown?: never;
100
+ }
101
+ interface $UnknownMember {
102
+ v1?: never;
103
+ $unknown: [string, any];
104
+ }
105
+ interface Visitor<T> {
106
+ v1: (value: AnalysisRulePolicyV1) => T;
107
+ _: (name: string, value: any) => T;
108
+ }
109
+ const visit: <T>(value: AnalysisRulePolicy, visitor: Visitor<T>) => T;
110
+ }
111
+ export declare enum AnalysisRuleType {
112
+ AGGREGATION = "AGGREGATION",
113
+ LIST = "LIST",
114
+ }
115
+ export interface AnalysisRule {
116
+ collaborationId: string | undefined;
117
+ type: AnalysisRuleType | string | undefined;
118
+ name: string | undefined;
119
+ createTime: Date | undefined;
120
+ updateTime: Date | undefined;
121
+ policy: AnalysisRulePolicy | undefined;
122
+ }
123
+ export interface BatchGetSchemaInput {
124
+ collaborationIdentifier: string | undefined;
125
+ names: string[] | undefined;
126
+ }
127
+ export interface BatchGetSchemaError {
128
+ name: string | undefined;
129
+ code: string | undefined;
130
+ message: string | undefined;
131
+ }
132
+ export interface Column {
133
+ name: string | undefined;
134
+ type: string | undefined;
135
+ }
136
+ export declare enum SchemaType {
137
+ TABLE = "TABLE",
138
+ }
139
+ export interface Schema {
140
+ columns: Column[] | undefined;
141
+ partitionKeys: Column[] | undefined;
142
+ analysisRuleTypes: (AnalysisRuleType | string)[] | undefined;
143
+ analysisMethod?: AnalysisMethod | string;
144
+ creatorAccountId: string | undefined;
145
+ name: string | undefined;
146
+ collaborationId: string | undefined;
147
+ collaborationArn: string | undefined;
148
+ description: string | undefined;
149
+ createTime: Date | undefined;
150
+ updateTime: Date | undefined;
151
+ type: SchemaType | string | undefined;
152
+ }
153
+ export interface BatchGetSchemaOutput {
154
+ schemas: Schema[] | undefined;
155
+ errors: BatchGetSchemaError[] | undefined;
156
+ }
157
+ export declare class InternalServerException extends __BaseException {
158
+ readonly name: "InternalServerException";
159
+ readonly $fault: "server";
160
+ constructor(
161
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
162
+ );
163
+ }
164
+ export declare enum ResourceType {
165
+ COLLABORATION = "COLLABORATION",
166
+ CONFIGURED_TABLE = "CONFIGURED_TABLE",
167
+ CONFIGURED_TABLE_ASSOCIATION = "CONFIGURED_TABLE_ASSOCIATION",
168
+ MEMBERSHIP = "MEMBERSHIP",
169
+ }
170
+ export declare class ResourceNotFoundException extends __BaseException {
171
+ readonly name: "ResourceNotFoundException";
172
+ readonly $fault: "client";
173
+ resourceId: string | undefined;
174
+ resourceType: ResourceType | string | undefined;
175
+ constructor(
176
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
177
+ );
178
+ }
179
+ export declare class ThrottlingException extends __BaseException {
180
+ readonly name: "ThrottlingException";
181
+ readonly $fault: "client";
182
+ constructor(
183
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
184
+ );
185
+ }
186
+ export interface ValidationExceptionField {
187
+ name: string | undefined;
188
+ message: string | undefined;
189
+ }
190
+ export declare enum ValidationExceptionReason {
191
+ FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
192
+ INVALID_CONFIGURATION = "INVALID_CONFIGURATION",
193
+ }
194
+ export declare class ValidationException extends __BaseException {
195
+ readonly name: "ValidationException";
196
+ readonly $fault: "client";
197
+ reason?: ValidationExceptionReason | string;
198
+ fieldList?: ValidationExceptionField[];
199
+ constructor(
200
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
201
+ );
202
+ }
203
+ export declare enum MemberAbility {
204
+ CAN_QUERY = "CAN_QUERY",
205
+ CAN_RECEIVE_RESULTS = "CAN_RECEIVE_RESULTS",
206
+ }
207
+ export interface DataEncryptionMetadata {
208
+ allowCleartext: boolean | undefined;
209
+ allowDuplicates: boolean | undefined;
210
+ allowJoinsOnColumnsWithDifferentNames: boolean | undefined;
211
+ preserveNulls: boolean | undefined;
212
+ }
213
+ export interface MemberSpecification {
214
+ accountId: string | undefined;
215
+ memberAbilities: (MemberAbility | string)[] | undefined;
216
+ displayName: string | undefined;
217
+ }
218
+ export declare enum CollaborationQueryLogStatus {
219
+ DISABLED = "DISABLED",
220
+ ENABLED = "ENABLED",
221
+ }
222
+ export interface CreateCollaborationInput {
223
+ members: MemberSpecification[] | undefined;
224
+ name: string | undefined;
225
+ description: string | undefined;
226
+ creatorMemberAbilities: (MemberAbility | string)[] | undefined;
227
+ creatorDisplayName: string | undefined;
228
+ dataEncryptionMetadata?: DataEncryptionMetadata;
229
+ queryLogStatus: CollaborationQueryLogStatus | string | undefined;
230
+ }
231
+ export declare enum MemberStatus {
232
+ ACTIVE = "ACTIVE",
233
+ INVITED = "INVITED",
234
+ LEFT = "LEFT",
235
+ REMOVED = "REMOVED",
236
+ }
237
+ export interface Collaboration {
238
+ id: string | undefined;
239
+ arn: string | undefined;
240
+ name: string | undefined;
241
+ description?: string;
242
+ creatorAccountId: string | undefined;
243
+ creatorDisplayName: string | undefined;
244
+ createTime: Date | undefined;
245
+ updateTime: Date | undefined;
246
+ memberStatus: MemberStatus | string | undefined;
247
+ membershipId?: string;
248
+ membershipArn?: string;
249
+ dataEncryptionMetadata?: DataEncryptionMetadata;
250
+ queryLogStatus: CollaborationQueryLogStatus | string | undefined;
251
+ }
252
+ export interface CreateCollaborationOutput {
253
+ collaboration: Collaboration | undefined;
254
+ }
255
+ export declare class ServiceQuotaExceededException extends __BaseException {
256
+ readonly name: "ServiceQuotaExceededException";
257
+ readonly $fault: "client";
258
+ quotaName: string | undefined;
259
+ quotaValue: number | undefined;
260
+ constructor(
261
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
262
+ );
263
+ }
264
+ export interface DeleteCollaborationInput {
265
+ collaborationIdentifier: string | undefined;
266
+ }
267
+ export interface DeleteCollaborationOutput {}
268
+ export declare enum ConflictExceptionReason {
269
+ ALREADY_EXISTS = "ALREADY_EXISTS",
270
+ INVALID_STATE = "INVALID_STATE",
271
+ SUBRESOURCES_EXIST = "SUBRESOURCES_EXIST",
272
+ }
273
+ export declare class ConflictException extends __BaseException {
274
+ readonly name: "ConflictException";
275
+ readonly $fault: "client";
276
+ resourceId?: string;
277
+ resourceType?: ResourceType | string;
278
+ reason?: ConflictExceptionReason | string;
279
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
280
+ }
281
+ export interface DeleteMemberInput {
282
+ collaborationIdentifier: string | undefined;
283
+ accountId: string | undefined;
284
+ }
285
+ export interface DeleteMemberOutput {}
286
+ export interface GetCollaborationInput {
287
+ collaborationIdentifier: string | undefined;
288
+ }
289
+ export interface GetCollaborationOutput {
290
+ collaboration: Collaboration | undefined;
291
+ }
292
+ export interface GetSchemaInput {
293
+ collaborationIdentifier: string | undefined;
294
+ name: string | undefined;
295
+ }
296
+ export interface GetSchemaOutput {
297
+ schema: Schema | undefined;
298
+ }
299
+ export interface GetSchemaAnalysisRuleInput {
300
+ collaborationIdentifier: string | undefined;
301
+ name: string | undefined;
302
+ type: AnalysisRuleType | string | undefined;
303
+ }
304
+ export interface GetSchemaAnalysisRuleOutput {
305
+ analysisRule: AnalysisRule | undefined;
306
+ }
307
+ export declare enum FilterableMemberStatus {
308
+ ACTIVE = "ACTIVE",
309
+ INVITED = "INVITED",
310
+ }
311
+ export interface ListCollaborationsInput {
312
+ nextToken?: string;
313
+ maxResults?: number;
314
+ memberStatus?: FilterableMemberStatus | string;
315
+ }
316
+ export interface CollaborationSummary {
317
+ id: string | undefined;
318
+ arn: string | undefined;
319
+ name: string | undefined;
320
+ creatorAccountId: string | undefined;
321
+ creatorDisplayName: string | undefined;
322
+ createTime: Date | undefined;
323
+ updateTime: Date | undefined;
324
+ memberStatus: MemberStatus | string | undefined;
325
+ membershipId?: string;
326
+ membershipArn?: string;
327
+ }
328
+ export interface ListCollaborationsOutput {
329
+ nextToken?: string;
330
+ collaborationList: CollaborationSummary[] | undefined;
331
+ }
332
+ export interface ListMembersInput {
333
+ collaborationIdentifier: string | undefined;
334
+ nextToken?: string;
335
+ maxResults?: number;
336
+ }
337
+ export interface MemberSummary {
338
+ accountId: string | undefined;
339
+ status: MemberStatus | string | undefined;
340
+ displayName: string | undefined;
341
+ abilities: (MemberAbility | string)[] | undefined;
342
+ createTime: Date | undefined;
343
+ updateTime: Date | undefined;
344
+ membershipId?: string;
345
+ membershipArn?: string;
346
+ }
347
+ export interface ListMembersOutput {
348
+ nextToken?: string;
349
+ memberSummaries: MemberSummary[] | undefined;
350
+ }
351
+ export interface ListSchemasInput {
352
+ collaborationIdentifier: string | undefined;
353
+ schemaType?: SchemaType | string;
354
+ nextToken?: string;
355
+ maxResults?: number;
356
+ }
357
+ export interface SchemaSummary {
358
+ name: string | undefined;
359
+ type: SchemaType | string | undefined;
360
+ creatorAccountId: string | undefined;
361
+ createTime: Date | undefined;
362
+ updateTime: Date | undefined;
363
+ collaborationId: string | undefined;
364
+ collaborationArn: string | undefined;
365
+ analysisRuleTypes: (AnalysisRuleType | string)[] | undefined;
366
+ analysisMethod?: AnalysisMethod | string;
367
+ }
368
+ export interface ListSchemasOutput {
369
+ schemaSummaries: SchemaSummary[] | undefined;
370
+ nextToken?: string;
371
+ }
372
+ export interface UpdateCollaborationInput {
373
+ collaborationIdentifier: string | undefined;
374
+ name?: string;
375
+ description?: string;
376
+ }
377
+ export interface UpdateCollaborationOutput {
378
+ collaboration: Collaboration | undefined;
379
+ }
380
+ export interface CreateConfiguredTableAssociationInput {
381
+ name: string | undefined;
382
+ description?: string;
383
+ membershipIdentifier: string | undefined;
384
+ configuredTableIdentifier: string | undefined;
385
+ roleArn: string | undefined;
386
+ }
387
+ export interface ConfiguredTableAssociation {
388
+ arn: string | undefined;
389
+ id: string | undefined;
390
+ configuredTableId: string | undefined;
391
+ configuredTableArn: string | undefined;
392
+ membershipId: string | undefined;
393
+ membershipArn: string | undefined;
394
+ roleArn: string | undefined;
395
+ name: string | undefined;
396
+ description?: string;
397
+ createTime: Date | undefined;
398
+ updateTime: Date | undefined;
399
+ }
400
+ export interface CreateConfiguredTableAssociationOutput {
401
+ configuredTableAssociation: ConfiguredTableAssociation | undefined;
402
+ }
403
+ export interface DeleteConfiguredTableAssociationInput {
404
+ configuredTableAssociationIdentifier: string | undefined;
405
+ membershipIdentifier: string | undefined;
406
+ }
407
+ export interface DeleteConfiguredTableAssociationOutput {}
408
+ export interface GetConfiguredTableAssociationInput {
409
+ configuredTableAssociationIdentifier: string | undefined;
410
+ membershipIdentifier: string | undefined;
411
+ }
412
+ export interface GetConfiguredTableAssociationOutput {
413
+ configuredTableAssociation: ConfiguredTableAssociation | undefined;
414
+ }
415
+ export interface ListConfiguredTableAssociationsInput {
416
+ membershipIdentifier: string | undefined;
417
+ nextToken?: string;
418
+ maxResults?: number;
419
+ }
420
+ export interface ConfiguredTableAssociationSummary {
421
+ configuredTableId: string | undefined;
422
+ membershipId: string | undefined;
423
+ membershipArn: string | undefined;
424
+ name: string | undefined;
425
+ createTime: Date | undefined;
426
+ updateTime: Date | undefined;
427
+ id: string | undefined;
428
+ arn: string | undefined;
429
+ }
430
+ export interface ListConfiguredTableAssociationsOutput {
431
+ configuredTableAssociationSummaries:
432
+ | ConfiguredTableAssociationSummary[]
433
+ | undefined;
434
+ nextToken?: string;
435
+ }
436
+ export interface UpdateConfiguredTableAssociationInput {
437
+ configuredTableAssociationIdentifier: string | undefined;
438
+ membershipIdentifier: string | undefined;
439
+ description?: string;
440
+ roleArn?: string;
441
+ }
442
+ export interface UpdateConfiguredTableAssociationOutput {
443
+ configuredTableAssociation: ConfiguredTableAssociation | undefined;
444
+ }
445
+ export interface GlueTableReference {
446
+ tableName: string | undefined;
447
+ databaseName: string | undefined;
448
+ }
449
+ export declare type TableReference =
450
+ | TableReference.GlueMember
451
+ | TableReference.$UnknownMember;
452
+ export declare namespace TableReference {
453
+ interface GlueMember {
454
+ glue: GlueTableReference;
455
+ $unknown?: never;
456
+ }
457
+ interface $UnknownMember {
458
+ glue?: never;
459
+ $unknown: [string, any];
460
+ }
461
+ interface Visitor<T> {
462
+ glue: (value: GlueTableReference) => T;
463
+ _: (name: string, value: any) => T;
464
+ }
465
+ const visit: <T>(value: TableReference, visitor: Visitor<T>) => T;
466
+ }
467
+ export interface CreateConfiguredTableInput {
468
+ name: string | undefined;
469
+ description?: string;
470
+ tableReference: TableReference | undefined;
471
+ allowedColumns: string[] | undefined;
472
+ analysisMethod: AnalysisMethod | string | undefined;
473
+ }
474
+ export declare enum ConfiguredTableAnalysisRuleType {
475
+ AGGREGATION = "AGGREGATION",
476
+ LIST = "LIST",
477
+ }
478
+ export interface ConfiguredTable {
479
+ id: string | undefined;
480
+ arn: string | undefined;
481
+ name: string | undefined;
482
+ description?: string;
483
+ tableReference: TableReference | undefined;
484
+ createTime: Date | undefined;
485
+ updateTime: Date | undefined;
486
+ analysisRuleTypes: (ConfiguredTableAnalysisRuleType | string)[] | undefined;
487
+ analysisMethod: AnalysisMethod | string | undefined;
488
+ allowedColumns: string[] | undefined;
489
+ }
490
+ export interface CreateConfiguredTableOutput {
491
+ configuredTable: ConfiguredTable | undefined;
492
+ }
493
+ export declare type ConfiguredTableAnalysisRulePolicyV1 =
494
+ | ConfiguredTableAnalysisRulePolicyV1.AggregationMember
495
+ | ConfiguredTableAnalysisRulePolicyV1.ListMember
496
+ | ConfiguredTableAnalysisRulePolicyV1.$UnknownMember;
497
+ export declare namespace ConfiguredTableAnalysisRulePolicyV1 {
498
+ interface ListMember {
499
+ list: AnalysisRuleList;
500
+ aggregation?: never;
501
+ $unknown?: never;
502
+ }
503
+ interface AggregationMember {
504
+ list?: never;
505
+ aggregation: AnalysisRuleAggregation;
506
+ $unknown?: never;
507
+ }
508
+ interface $UnknownMember {
509
+ list?: never;
510
+ aggregation?: never;
511
+ $unknown: [string, any];
512
+ }
513
+ interface Visitor<T> {
514
+ list: (value: AnalysisRuleList) => T;
515
+ aggregation: (value: AnalysisRuleAggregation) => T;
516
+ _: (name: string, value: any) => T;
517
+ }
518
+ const visit: <T>(
519
+ value: ConfiguredTableAnalysisRulePolicyV1,
520
+ visitor: Visitor<T>
521
+ ) => T;
522
+ }
523
+ export declare type ConfiguredTableAnalysisRulePolicy =
524
+ | ConfiguredTableAnalysisRulePolicy.V1Member
525
+ | ConfiguredTableAnalysisRulePolicy.$UnknownMember;
526
+ export declare namespace ConfiguredTableAnalysisRulePolicy {
527
+ interface V1Member {
528
+ v1: ConfiguredTableAnalysisRulePolicyV1;
529
+ $unknown?: never;
530
+ }
531
+ interface $UnknownMember {
532
+ v1?: never;
533
+ $unknown: [string, any];
534
+ }
535
+ interface Visitor<T> {
536
+ v1: (value: ConfiguredTableAnalysisRulePolicyV1) => T;
537
+ _: (name: string, value: any) => T;
538
+ }
539
+ const visit: <T>(
540
+ value: ConfiguredTableAnalysisRulePolicy,
541
+ visitor: Visitor<T>
542
+ ) => T;
543
+ }
544
+ export interface CreateConfiguredTableAnalysisRuleInput {
545
+ configuredTableIdentifier: string | undefined;
546
+ analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
547
+ analysisRulePolicy: ConfiguredTableAnalysisRulePolicy | undefined;
548
+ }
549
+ export interface ConfiguredTableAnalysisRule {
550
+ configuredTableId: string | undefined;
551
+ configuredTableArn: string | undefined;
552
+ policy: ConfiguredTableAnalysisRulePolicy | undefined;
553
+ type: ConfiguredTableAnalysisRuleType | string | undefined;
554
+ createTime: Date | undefined;
555
+ updateTime: Date | undefined;
556
+ }
557
+ export interface CreateConfiguredTableAnalysisRuleOutput {
558
+ analysisRule: ConfiguredTableAnalysisRule | undefined;
559
+ }
560
+ export interface DeleteConfiguredTableInput {
561
+ configuredTableIdentifier: string | undefined;
562
+ }
563
+ export interface DeleteConfiguredTableOutput {}
564
+ export interface DeleteConfiguredTableAnalysisRuleInput {
565
+ configuredTableIdentifier: string | undefined;
566
+ analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
567
+ }
568
+ export interface DeleteConfiguredTableAnalysisRuleOutput {}
569
+ export interface GetConfiguredTableInput {
570
+ configuredTableIdentifier: string | undefined;
571
+ }
572
+ export interface GetConfiguredTableOutput {
573
+ configuredTable: ConfiguredTable | undefined;
574
+ }
575
+ export interface GetConfiguredTableAnalysisRuleInput {
576
+ configuredTableIdentifier: string | undefined;
577
+ analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
578
+ }
579
+ export interface GetConfiguredTableAnalysisRuleOutput {
580
+ analysisRule: ConfiguredTableAnalysisRule | undefined;
581
+ }
582
+ export interface ListConfiguredTablesInput {
583
+ nextToken?: string;
584
+ maxResults?: number;
585
+ }
586
+ export interface ConfiguredTableSummary {
587
+ id: string | undefined;
588
+ arn: string | undefined;
589
+ name: string | undefined;
590
+ createTime: Date | undefined;
591
+ updateTime: Date | undefined;
592
+ analysisRuleTypes: (ConfiguredTableAnalysisRuleType | string)[] | undefined;
593
+ analysisMethod: AnalysisMethod | string | undefined;
594
+ }
595
+ export interface ListConfiguredTablesOutput {
596
+ configuredTableSummaries: ConfiguredTableSummary[] | undefined;
597
+ nextToken?: string;
598
+ }
599
+ export interface UpdateConfiguredTableInput {
600
+ configuredTableIdentifier: string | undefined;
601
+ name?: string;
602
+ description?: string;
603
+ }
604
+ export interface UpdateConfiguredTableOutput {
605
+ configuredTable: ConfiguredTable | undefined;
606
+ }
607
+ export interface UpdateConfiguredTableAnalysisRuleInput {
608
+ configuredTableIdentifier: string | undefined;
609
+ analysisRuleType: ConfiguredTableAnalysisRuleType | string | undefined;
610
+ analysisRulePolicy: ConfiguredTableAnalysisRulePolicy | undefined;
611
+ }
612
+ export interface UpdateConfiguredTableAnalysisRuleOutput {
613
+ analysisRule: ConfiguredTableAnalysisRule | undefined;
614
+ }
615
+ export declare enum MembershipQueryLogStatus {
616
+ DISABLED = "DISABLED",
617
+ ENABLED = "ENABLED",
618
+ }
619
+ export interface CreateMembershipInput {
620
+ collaborationIdentifier: string | undefined;
621
+ queryLogStatus: MembershipQueryLogStatus | string | undefined;
622
+ }
623
+ export declare enum MembershipStatus {
624
+ ACTIVE = "ACTIVE",
625
+ COLLABORATION_DELETED = "COLLABORATION_DELETED",
626
+ REMOVED = "REMOVED",
627
+ }
628
+ export interface Membership {
629
+ id: string | undefined;
630
+ arn: string | undefined;
631
+ collaborationArn: string | undefined;
632
+ collaborationId: string | undefined;
633
+ collaborationCreatorAccountId: string | undefined;
634
+ collaborationCreatorDisplayName: string | undefined;
635
+ collaborationName: string | undefined;
636
+ createTime: Date | undefined;
637
+ updateTime: Date | undefined;
638
+ status: MembershipStatus | string | undefined;
639
+ memberAbilities: (MemberAbility | string)[] | undefined;
640
+ queryLogStatus: MembershipQueryLogStatus | string | undefined;
641
+ }
642
+ export interface CreateMembershipOutput {
643
+ membership: Membership | undefined;
644
+ }
645
+ export interface DeleteMembershipInput {
646
+ membershipIdentifier: string | undefined;
647
+ }
648
+ export interface DeleteMembershipOutput {}
649
+ export interface GetMembershipInput {
650
+ membershipIdentifier: string | undefined;
651
+ }
652
+ export interface GetMembershipOutput {
653
+ membership: Membership | undefined;
654
+ }
655
+ export interface GetProtectedQueryInput {
656
+ membershipIdentifier: string | undefined;
657
+ protectedQueryIdentifier: string | undefined;
658
+ }
659
+ export interface ProtectedQueryError {
660
+ message: string | undefined;
661
+ code: string | undefined;
662
+ }
663
+ export interface ProtectedQueryS3Output {
664
+ location: string | undefined;
665
+ }
666
+ export declare type ProtectedQueryOutput =
667
+ | ProtectedQueryOutput.S3Member
668
+ | ProtectedQueryOutput.$UnknownMember;
669
+ export declare namespace ProtectedQueryOutput {
670
+ interface S3Member {
671
+ s3: ProtectedQueryS3Output;
672
+ $unknown?: never;
673
+ }
674
+ interface $UnknownMember {
675
+ s3?: never;
676
+ $unknown: [string, any];
677
+ }
678
+ interface Visitor<T> {
679
+ s3: (value: ProtectedQueryS3Output) => T;
680
+ _: (name: string, value: any) => T;
681
+ }
682
+ const visit: <T>(value: ProtectedQueryOutput, visitor: Visitor<T>) => T;
683
+ }
684
+ export interface ProtectedQueryResult {
685
+ output: ProtectedQueryOutput | undefined;
686
+ }
687
+ export declare enum ResultFormat {
688
+ CSV = "CSV",
689
+ PARQUET = "PARQUET",
690
+ }
691
+ export interface ProtectedQueryS3OutputConfiguration {
692
+ resultFormat: ResultFormat | string | undefined;
693
+ bucket: string | undefined;
694
+ keyPrefix?: string;
695
+ }
696
+ export declare type ProtectedQueryOutputConfiguration =
697
+ | ProtectedQueryOutputConfiguration.S3Member
698
+ | ProtectedQueryOutputConfiguration.$UnknownMember;
699
+ export declare namespace ProtectedQueryOutputConfiguration {
700
+ interface S3Member {
701
+ s3: ProtectedQueryS3OutputConfiguration;
702
+ $unknown?: never;
703
+ }
704
+ interface $UnknownMember {
705
+ s3?: never;
706
+ $unknown: [string, any];
707
+ }
708
+ interface Visitor<T> {
709
+ s3: (value: ProtectedQueryS3OutputConfiguration) => T;
710
+ _: (name: string, value: any) => T;
711
+ }
712
+ const visit: <T>(
713
+ value: ProtectedQueryOutputConfiguration,
714
+ visitor: Visitor<T>
715
+ ) => T;
716
+ }
717
+ export interface ProtectedQueryResultConfiguration {
718
+ outputConfiguration: ProtectedQueryOutputConfiguration | undefined;
719
+ }
720
+ export interface ProtectedQuerySQLParameters {
721
+ queryString: string | undefined;
722
+ }
723
+ export interface ProtectedQueryStatistics {
724
+ totalDurationInMillis?: number;
725
+ }
726
+ export declare enum ProtectedQueryStatus {
727
+ CANCELLED = "CANCELLED",
728
+ CANCELLING = "CANCELLING",
729
+ FAILED = "FAILED",
730
+ STARTED = "STARTED",
731
+ SUBMITTED = "SUBMITTED",
732
+ SUCCESS = "SUCCESS",
733
+ TIMED_OUT = "TIMED_OUT",
734
+ }
735
+ export interface ProtectedQuery {
736
+ id: string | undefined;
737
+ membershipId: string | undefined;
738
+ membershipArn: string | undefined;
739
+ createTime: Date | undefined;
740
+ sqlParameters: ProtectedQuerySQLParameters | undefined;
741
+ status: ProtectedQueryStatus | string | undefined;
742
+ resultConfiguration: ProtectedQueryResultConfiguration | undefined;
743
+ statistics?: ProtectedQueryStatistics;
744
+ result?: ProtectedQueryResult;
745
+ error?: ProtectedQueryError;
746
+ }
747
+ export interface GetProtectedQueryOutput {
748
+ protectedQuery: ProtectedQuery | undefined;
749
+ }
750
+ export interface ListMembershipsInput {
751
+ nextToken?: string;
752
+ maxResults?: number;
753
+ status?: MembershipStatus | string;
754
+ }
755
+ export interface MembershipSummary {
756
+ id: string | undefined;
757
+ arn: string | undefined;
758
+ collaborationArn: string | undefined;
759
+ collaborationId: string | undefined;
760
+ collaborationCreatorAccountId: string | undefined;
761
+ collaborationCreatorDisplayName: string | undefined;
762
+ collaborationName: string | undefined;
763
+ createTime: Date | undefined;
764
+ updateTime: Date | undefined;
765
+ status: MembershipStatus | string | undefined;
766
+ memberAbilities: (MemberAbility | string)[] | undefined;
767
+ }
768
+ export interface ListMembershipsOutput {
769
+ nextToken?: string;
770
+ membershipSummaries: MembershipSummary[] | undefined;
771
+ }
772
+ export interface ListProtectedQueriesInput {
773
+ membershipIdentifier: string | undefined;
774
+ status?: ProtectedQueryStatus | string;
775
+ nextToken?: string;
776
+ maxResults?: number;
777
+ }
778
+ export interface ProtectedQuerySummary {
779
+ id: string | undefined;
780
+ membershipId: string | undefined;
781
+ membershipArn: string | undefined;
782
+ createTime: Date | undefined;
783
+ status: ProtectedQueryStatus | string | undefined;
784
+ }
785
+ export interface ListProtectedQueriesOutput {
786
+ nextToken?: string;
787
+ protectedQueries: ProtectedQuerySummary[] | undefined;
788
+ }
789
+ export declare enum ProtectedQueryType {
790
+ SQL = "SQL",
791
+ }
792
+ export interface StartProtectedQueryInput {
793
+ type: ProtectedQueryType | string | undefined;
794
+ membershipIdentifier: string | undefined;
795
+ sqlParameters: ProtectedQuerySQLParameters | undefined;
796
+ resultConfiguration: ProtectedQueryResultConfiguration | undefined;
797
+ }
798
+ export interface StartProtectedQueryOutput {
799
+ protectedQuery: ProtectedQuery | undefined;
800
+ }
801
+ export interface UpdateMembershipInput {
802
+ membershipIdentifier: string | undefined;
803
+ queryLogStatus?: MembershipQueryLogStatus | string;
804
+ }
805
+ export interface UpdateMembershipOutput {
806
+ membership: Membership | undefined;
807
+ }
808
+ export declare enum TargetProtectedQueryStatus {
809
+ CANCELLED = "CANCELLED",
810
+ }
811
+ export interface UpdateProtectedQueryInput {
812
+ membershipIdentifier: string | undefined;
813
+ protectedQueryIdentifier: string | undefined;
814
+ targetStatus: TargetProtectedQueryStatus | string | undefined;
815
+ }
816
+ export interface UpdateProtectedQueryOutput {
817
+ protectedQuery: ProtectedQuery | undefined;
818
+ }
819
+ export declare const AggregateColumnFilterSensitiveLog: (
820
+ obj: AggregateColumn
821
+ ) => any;
822
+ export declare const AggregationConstraintFilterSensitiveLog: (
823
+ obj: AggregationConstraint
824
+ ) => any;
825
+ export declare const AnalysisRuleAggregationFilterSensitiveLog: (
826
+ obj: AnalysisRuleAggregation
827
+ ) => any;
828
+ export declare const AnalysisRuleListFilterSensitiveLog: (
829
+ obj: AnalysisRuleList
830
+ ) => any;
831
+ export declare const AnalysisRulePolicyV1FilterSensitiveLog: (
832
+ obj: AnalysisRulePolicyV1
833
+ ) => any;
834
+ export declare const AnalysisRulePolicyFilterSensitiveLog: (
835
+ obj: AnalysisRulePolicy
836
+ ) => any;
837
+ export declare const AnalysisRuleFilterSensitiveLog: (obj: AnalysisRule) => any;
838
+ export declare const BatchGetSchemaInputFilterSensitiveLog: (
839
+ obj: BatchGetSchemaInput
840
+ ) => any;
841
+ export declare const BatchGetSchemaErrorFilterSensitiveLog: (
842
+ obj: BatchGetSchemaError
843
+ ) => any;
844
+ export declare const ColumnFilterSensitiveLog: (obj: Column) => any;
845
+ export declare const SchemaFilterSensitiveLog: (obj: Schema) => any;
846
+ export declare const BatchGetSchemaOutputFilterSensitiveLog: (
847
+ obj: BatchGetSchemaOutput
848
+ ) => any;
849
+ export declare const ValidationExceptionFieldFilterSensitiveLog: (
850
+ obj: ValidationExceptionField
851
+ ) => any;
852
+ export declare const DataEncryptionMetadataFilterSensitiveLog: (
853
+ obj: DataEncryptionMetadata
854
+ ) => any;
855
+ export declare const MemberSpecificationFilterSensitiveLog: (
856
+ obj: MemberSpecification
857
+ ) => any;
858
+ export declare const CreateCollaborationInputFilterSensitiveLog: (
859
+ obj: CreateCollaborationInput
860
+ ) => any;
861
+ export declare const CollaborationFilterSensitiveLog: (
862
+ obj: Collaboration
863
+ ) => any;
864
+ export declare const CreateCollaborationOutputFilterSensitiveLog: (
865
+ obj: CreateCollaborationOutput
866
+ ) => any;
867
+ export declare const DeleteCollaborationInputFilterSensitiveLog: (
868
+ obj: DeleteCollaborationInput
869
+ ) => any;
870
+ export declare const DeleteCollaborationOutputFilterSensitiveLog: (
871
+ obj: DeleteCollaborationOutput
872
+ ) => any;
873
+ export declare const DeleteMemberInputFilterSensitiveLog: (
874
+ obj: DeleteMemberInput
875
+ ) => any;
876
+ export declare const DeleteMemberOutputFilterSensitiveLog: (
877
+ obj: DeleteMemberOutput
878
+ ) => any;
879
+ export declare const GetCollaborationInputFilterSensitiveLog: (
880
+ obj: GetCollaborationInput
881
+ ) => any;
882
+ export declare const GetCollaborationOutputFilterSensitiveLog: (
883
+ obj: GetCollaborationOutput
884
+ ) => any;
885
+ export declare const GetSchemaInputFilterSensitiveLog: (
886
+ obj: GetSchemaInput
887
+ ) => any;
888
+ export declare const GetSchemaOutputFilterSensitiveLog: (
889
+ obj: GetSchemaOutput
890
+ ) => any;
891
+ export declare const GetSchemaAnalysisRuleInputFilterSensitiveLog: (
892
+ obj: GetSchemaAnalysisRuleInput
893
+ ) => any;
894
+ export declare const GetSchemaAnalysisRuleOutputFilterSensitiveLog: (
895
+ obj: GetSchemaAnalysisRuleOutput
896
+ ) => any;
897
+ export declare const ListCollaborationsInputFilterSensitiveLog: (
898
+ obj: ListCollaborationsInput
899
+ ) => any;
900
+ export declare const CollaborationSummaryFilterSensitiveLog: (
901
+ obj: CollaborationSummary
902
+ ) => any;
903
+ export declare const ListCollaborationsOutputFilterSensitiveLog: (
904
+ obj: ListCollaborationsOutput
905
+ ) => any;
906
+ export declare const ListMembersInputFilterSensitiveLog: (
907
+ obj: ListMembersInput
908
+ ) => any;
909
+ export declare const MemberSummaryFilterSensitiveLog: (
910
+ obj: MemberSummary
911
+ ) => any;
912
+ export declare const ListMembersOutputFilterSensitiveLog: (
913
+ obj: ListMembersOutput
914
+ ) => any;
915
+ export declare const ListSchemasInputFilterSensitiveLog: (
916
+ obj: ListSchemasInput
917
+ ) => any;
918
+ export declare const SchemaSummaryFilterSensitiveLog: (
919
+ obj: SchemaSummary
920
+ ) => any;
921
+ export declare const ListSchemasOutputFilterSensitiveLog: (
922
+ obj: ListSchemasOutput
923
+ ) => any;
924
+ export declare const UpdateCollaborationInputFilterSensitiveLog: (
925
+ obj: UpdateCollaborationInput
926
+ ) => any;
927
+ export declare const UpdateCollaborationOutputFilterSensitiveLog: (
928
+ obj: UpdateCollaborationOutput
929
+ ) => any;
930
+ export declare const CreateConfiguredTableAssociationInputFilterSensitiveLog: (
931
+ obj: CreateConfiguredTableAssociationInput
932
+ ) => any;
933
+ export declare const ConfiguredTableAssociationFilterSensitiveLog: (
934
+ obj: ConfiguredTableAssociation
935
+ ) => any;
936
+ export declare const CreateConfiguredTableAssociationOutputFilterSensitiveLog: (
937
+ obj: CreateConfiguredTableAssociationOutput
938
+ ) => any;
939
+ export declare const DeleteConfiguredTableAssociationInputFilterSensitiveLog: (
940
+ obj: DeleteConfiguredTableAssociationInput
941
+ ) => any;
942
+ export declare const DeleteConfiguredTableAssociationOutputFilterSensitiveLog: (
943
+ obj: DeleteConfiguredTableAssociationOutput
944
+ ) => any;
945
+ export declare const GetConfiguredTableAssociationInputFilterSensitiveLog: (
946
+ obj: GetConfiguredTableAssociationInput
947
+ ) => any;
948
+ export declare const GetConfiguredTableAssociationOutputFilterSensitiveLog: (
949
+ obj: GetConfiguredTableAssociationOutput
950
+ ) => any;
951
+ export declare const ListConfiguredTableAssociationsInputFilterSensitiveLog: (
952
+ obj: ListConfiguredTableAssociationsInput
953
+ ) => any;
954
+ export declare const ConfiguredTableAssociationSummaryFilterSensitiveLog: (
955
+ obj: ConfiguredTableAssociationSummary
956
+ ) => any;
957
+ export declare const ListConfiguredTableAssociationsOutputFilterSensitiveLog: (
958
+ obj: ListConfiguredTableAssociationsOutput
959
+ ) => any;
960
+ export declare const UpdateConfiguredTableAssociationInputFilterSensitiveLog: (
961
+ obj: UpdateConfiguredTableAssociationInput
962
+ ) => any;
963
+ export declare const UpdateConfiguredTableAssociationOutputFilterSensitiveLog: (
964
+ obj: UpdateConfiguredTableAssociationOutput
965
+ ) => any;
966
+ export declare const GlueTableReferenceFilterSensitiveLog: (
967
+ obj: GlueTableReference
968
+ ) => any;
969
+ export declare const TableReferenceFilterSensitiveLog: (
970
+ obj: TableReference
971
+ ) => any;
972
+ export declare const CreateConfiguredTableInputFilterSensitiveLog: (
973
+ obj: CreateConfiguredTableInput
974
+ ) => any;
975
+ export declare const ConfiguredTableFilterSensitiveLog: (
976
+ obj: ConfiguredTable
977
+ ) => any;
978
+ export declare const CreateConfiguredTableOutputFilterSensitiveLog: (
979
+ obj: CreateConfiguredTableOutput
980
+ ) => any;
981
+ export declare const ConfiguredTableAnalysisRulePolicyV1FilterSensitiveLog: (
982
+ obj: ConfiguredTableAnalysisRulePolicyV1
983
+ ) => any;
984
+ export declare const ConfiguredTableAnalysisRulePolicyFilterSensitiveLog: (
985
+ obj: ConfiguredTableAnalysisRulePolicy
986
+ ) => any;
987
+ export declare const CreateConfiguredTableAnalysisRuleInputFilterSensitiveLog: (
988
+ obj: CreateConfiguredTableAnalysisRuleInput
989
+ ) => any;
990
+ export declare const ConfiguredTableAnalysisRuleFilterSensitiveLog: (
991
+ obj: ConfiguredTableAnalysisRule
992
+ ) => any;
993
+ export declare const CreateConfiguredTableAnalysisRuleOutputFilterSensitiveLog: (
994
+ obj: CreateConfiguredTableAnalysisRuleOutput
995
+ ) => any;
996
+ export declare const DeleteConfiguredTableInputFilterSensitiveLog: (
997
+ obj: DeleteConfiguredTableInput
998
+ ) => any;
999
+ export declare const DeleteConfiguredTableOutputFilterSensitiveLog: (
1000
+ obj: DeleteConfiguredTableOutput
1001
+ ) => any;
1002
+ export declare const DeleteConfiguredTableAnalysisRuleInputFilterSensitiveLog: (
1003
+ obj: DeleteConfiguredTableAnalysisRuleInput
1004
+ ) => any;
1005
+ export declare const DeleteConfiguredTableAnalysisRuleOutputFilterSensitiveLog: (
1006
+ obj: DeleteConfiguredTableAnalysisRuleOutput
1007
+ ) => any;
1008
+ export declare const GetConfiguredTableInputFilterSensitiveLog: (
1009
+ obj: GetConfiguredTableInput
1010
+ ) => any;
1011
+ export declare const GetConfiguredTableOutputFilterSensitiveLog: (
1012
+ obj: GetConfiguredTableOutput
1013
+ ) => any;
1014
+ export declare const GetConfiguredTableAnalysisRuleInputFilterSensitiveLog: (
1015
+ obj: GetConfiguredTableAnalysisRuleInput
1016
+ ) => any;
1017
+ export declare const GetConfiguredTableAnalysisRuleOutputFilterSensitiveLog: (
1018
+ obj: GetConfiguredTableAnalysisRuleOutput
1019
+ ) => any;
1020
+ export declare const ListConfiguredTablesInputFilterSensitiveLog: (
1021
+ obj: ListConfiguredTablesInput
1022
+ ) => any;
1023
+ export declare const ConfiguredTableSummaryFilterSensitiveLog: (
1024
+ obj: ConfiguredTableSummary
1025
+ ) => any;
1026
+ export declare const ListConfiguredTablesOutputFilterSensitiveLog: (
1027
+ obj: ListConfiguredTablesOutput
1028
+ ) => any;
1029
+ export declare const UpdateConfiguredTableInputFilterSensitiveLog: (
1030
+ obj: UpdateConfiguredTableInput
1031
+ ) => any;
1032
+ export declare const UpdateConfiguredTableOutputFilterSensitiveLog: (
1033
+ obj: UpdateConfiguredTableOutput
1034
+ ) => any;
1035
+ export declare const UpdateConfiguredTableAnalysisRuleInputFilterSensitiveLog: (
1036
+ obj: UpdateConfiguredTableAnalysisRuleInput
1037
+ ) => any;
1038
+ export declare const UpdateConfiguredTableAnalysisRuleOutputFilterSensitiveLog: (
1039
+ obj: UpdateConfiguredTableAnalysisRuleOutput
1040
+ ) => any;
1041
+ export declare const CreateMembershipInputFilterSensitiveLog: (
1042
+ obj: CreateMembershipInput
1043
+ ) => any;
1044
+ export declare const MembershipFilterSensitiveLog: (obj: Membership) => any;
1045
+ export declare const CreateMembershipOutputFilterSensitiveLog: (
1046
+ obj: CreateMembershipOutput
1047
+ ) => any;
1048
+ export declare const DeleteMembershipInputFilterSensitiveLog: (
1049
+ obj: DeleteMembershipInput
1050
+ ) => any;
1051
+ export declare const DeleteMembershipOutputFilterSensitiveLog: (
1052
+ obj: DeleteMembershipOutput
1053
+ ) => any;
1054
+ export declare const GetMembershipInputFilterSensitiveLog: (
1055
+ obj: GetMembershipInput
1056
+ ) => any;
1057
+ export declare const GetMembershipOutputFilterSensitiveLog: (
1058
+ obj: GetMembershipOutput
1059
+ ) => any;
1060
+ export declare const GetProtectedQueryInputFilterSensitiveLog: (
1061
+ obj: GetProtectedQueryInput
1062
+ ) => any;
1063
+ export declare const ProtectedQueryErrorFilterSensitiveLog: (
1064
+ obj: ProtectedQueryError
1065
+ ) => any;
1066
+ export declare const ProtectedQueryS3OutputFilterSensitiveLog: (
1067
+ obj: ProtectedQueryS3Output
1068
+ ) => any;
1069
+ export declare const ProtectedQueryOutputFilterSensitiveLog: (
1070
+ obj: ProtectedQueryOutput
1071
+ ) => any;
1072
+ export declare const ProtectedQueryResultFilterSensitiveLog: (
1073
+ obj: ProtectedQueryResult
1074
+ ) => any;
1075
+ export declare const ProtectedQueryS3OutputConfigurationFilterSensitiveLog: (
1076
+ obj: ProtectedQueryS3OutputConfiguration
1077
+ ) => any;
1078
+ export declare const ProtectedQueryOutputConfigurationFilterSensitiveLog: (
1079
+ obj: ProtectedQueryOutputConfiguration
1080
+ ) => any;
1081
+ export declare const ProtectedQueryResultConfigurationFilterSensitiveLog: (
1082
+ obj: ProtectedQueryResultConfiguration
1083
+ ) => any;
1084
+ export declare const ProtectedQuerySQLParametersFilterSensitiveLog: (
1085
+ obj: ProtectedQuerySQLParameters
1086
+ ) => any;
1087
+ export declare const ProtectedQueryStatisticsFilterSensitiveLog: (
1088
+ obj: ProtectedQueryStatistics
1089
+ ) => any;
1090
+ export declare const ProtectedQueryFilterSensitiveLog: (
1091
+ obj: ProtectedQuery
1092
+ ) => any;
1093
+ export declare const GetProtectedQueryOutputFilterSensitiveLog: (
1094
+ obj: GetProtectedQueryOutput
1095
+ ) => any;
1096
+ export declare const ListMembershipsInputFilterSensitiveLog: (
1097
+ obj: ListMembershipsInput
1098
+ ) => any;
1099
+ export declare const MembershipSummaryFilterSensitiveLog: (
1100
+ obj: MembershipSummary
1101
+ ) => any;
1102
+ export declare const ListMembershipsOutputFilterSensitiveLog: (
1103
+ obj: ListMembershipsOutput
1104
+ ) => any;
1105
+ export declare const ListProtectedQueriesInputFilterSensitiveLog: (
1106
+ obj: ListProtectedQueriesInput
1107
+ ) => any;
1108
+ export declare const ProtectedQuerySummaryFilterSensitiveLog: (
1109
+ obj: ProtectedQuerySummary
1110
+ ) => any;
1111
+ export declare const ListProtectedQueriesOutputFilterSensitiveLog: (
1112
+ obj: ListProtectedQueriesOutput
1113
+ ) => any;
1114
+ export declare const StartProtectedQueryInputFilterSensitiveLog: (
1115
+ obj: StartProtectedQueryInput
1116
+ ) => any;
1117
+ export declare const StartProtectedQueryOutputFilterSensitiveLog: (
1118
+ obj: StartProtectedQueryOutput
1119
+ ) => any;
1120
+ export declare const UpdateMembershipInputFilterSensitiveLog: (
1121
+ obj: UpdateMembershipInput
1122
+ ) => any;
1123
+ export declare const UpdateMembershipOutputFilterSensitiveLog: (
1124
+ obj: UpdateMembershipOutput
1125
+ ) => any;
1126
+ export declare const UpdateProtectedQueryInputFilterSensitiveLog: (
1127
+ obj: UpdateProtectedQueryInput
1128
+ ) => any;
1129
+ export declare const UpdateProtectedQueryOutputFilterSensitiveLog: (
1130
+ obj: UpdateProtectedQueryOutput
1131
+ ) => any;