@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,7 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { CleanRooms } from "../CleanRooms";
3
+ import { CleanRoomsClient } from "../CleanRoomsClient";
4
+ export interface CleanRoomsPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: CleanRooms | CleanRoomsClient;
7
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListCollaborationsCommandInput,
4
+ ListCollaborationsCommandOutput,
5
+ } from "../commands/ListCollaborationsCommand";
6
+ import { CleanRoomsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListCollaborations(
8
+ config: CleanRoomsPaginationConfiguration,
9
+ input: ListCollaborationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListCollaborationsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListConfiguredTableAssociationsCommandInput,
4
+ ListConfiguredTableAssociationsCommandOutput,
5
+ } from "../commands/ListConfiguredTableAssociationsCommand";
6
+ import { CleanRoomsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListConfiguredTableAssociations(
8
+ config: CleanRoomsPaginationConfiguration,
9
+ input: ListConfiguredTableAssociationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListConfiguredTableAssociationsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListConfiguredTablesCommandInput,
4
+ ListConfiguredTablesCommandOutput,
5
+ } from "../commands/ListConfiguredTablesCommand";
6
+ import { CleanRoomsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListConfiguredTables(
8
+ config: CleanRoomsPaginationConfiguration,
9
+ input: ListConfiguredTablesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListConfiguredTablesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListMembersCommandInput,
4
+ ListMembersCommandOutput,
5
+ } from "../commands/ListMembersCommand";
6
+ import { CleanRoomsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListMembers(
8
+ config: CleanRoomsPaginationConfiguration,
9
+ input: ListMembersCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListMembersCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListMembershipsCommandInput,
4
+ ListMembershipsCommandOutput,
5
+ } from "../commands/ListMembershipsCommand";
6
+ import { CleanRoomsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListMemberships(
8
+ config: CleanRoomsPaginationConfiguration,
9
+ input: ListMembershipsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListMembershipsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListProtectedQueriesCommandInput,
4
+ ListProtectedQueriesCommandOutput,
5
+ } from "../commands/ListProtectedQueriesCommand";
6
+ import { CleanRoomsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListProtectedQueries(
8
+ config: CleanRoomsPaginationConfiguration,
9
+ input: ListProtectedQueriesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListProtectedQueriesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListSchemasCommandInput,
4
+ ListSchemasCommandOutput,
5
+ } from "../commands/ListSchemasCommand";
6
+ import { CleanRoomsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListSchemas(
8
+ config: CleanRoomsPaginationConfiguration,
9
+ input: ListSchemasCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListSchemasCommandOutput>;
@@ -0,0 +1,8 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListCollaborationsPaginator";
3
+ export * from "./ListConfiguredTableAssociationsPaginator";
4
+ export * from "./ListConfiguredTablesPaginator";
5
+ export * from "./ListMembersPaginator";
6
+ export * from "./ListMembershipsPaginator";
7
+ export * from "./ListProtectedQueriesPaginator";
8
+ export * from "./ListSchemasPaginator";
@@ -0,0 +1,413 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ BatchGetSchemaCommandInput,
8
+ BatchGetSchemaCommandOutput,
9
+ } from "../commands/BatchGetSchemaCommand";
10
+ import {
11
+ CreateCollaborationCommandInput,
12
+ CreateCollaborationCommandOutput,
13
+ } from "../commands/CreateCollaborationCommand";
14
+ import {
15
+ CreateConfiguredTableAnalysisRuleCommandInput,
16
+ CreateConfiguredTableAnalysisRuleCommandOutput,
17
+ } from "../commands/CreateConfiguredTableAnalysisRuleCommand";
18
+ import {
19
+ CreateConfiguredTableAssociationCommandInput,
20
+ CreateConfiguredTableAssociationCommandOutput,
21
+ } from "../commands/CreateConfiguredTableAssociationCommand";
22
+ import {
23
+ CreateConfiguredTableCommandInput,
24
+ CreateConfiguredTableCommandOutput,
25
+ } from "../commands/CreateConfiguredTableCommand";
26
+ import {
27
+ CreateMembershipCommandInput,
28
+ CreateMembershipCommandOutput,
29
+ } from "../commands/CreateMembershipCommand";
30
+ import {
31
+ DeleteCollaborationCommandInput,
32
+ DeleteCollaborationCommandOutput,
33
+ } from "../commands/DeleteCollaborationCommand";
34
+ import {
35
+ DeleteConfiguredTableAnalysisRuleCommandInput,
36
+ DeleteConfiguredTableAnalysisRuleCommandOutput,
37
+ } from "../commands/DeleteConfiguredTableAnalysisRuleCommand";
38
+ import {
39
+ DeleteConfiguredTableAssociationCommandInput,
40
+ DeleteConfiguredTableAssociationCommandOutput,
41
+ } from "../commands/DeleteConfiguredTableAssociationCommand";
42
+ import {
43
+ DeleteConfiguredTableCommandInput,
44
+ DeleteConfiguredTableCommandOutput,
45
+ } from "../commands/DeleteConfiguredTableCommand";
46
+ import {
47
+ DeleteMemberCommandInput,
48
+ DeleteMemberCommandOutput,
49
+ } from "../commands/DeleteMemberCommand";
50
+ import {
51
+ DeleteMembershipCommandInput,
52
+ DeleteMembershipCommandOutput,
53
+ } from "../commands/DeleteMembershipCommand";
54
+ import {
55
+ GetCollaborationCommandInput,
56
+ GetCollaborationCommandOutput,
57
+ } from "../commands/GetCollaborationCommand";
58
+ import {
59
+ GetConfiguredTableAnalysisRuleCommandInput,
60
+ GetConfiguredTableAnalysisRuleCommandOutput,
61
+ } from "../commands/GetConfiguredTableAnalysisRuleCommand";
62
+ import {
63
+ GetConfiguredTableAssociationCommandInput,
64
+ GetConfiguredTableAssociationCommandOutput,
65
+ } from "../commands/GetConfiguredTableAssociationCommand";
66
+ import {
67
+ GetConfiguredTableCommandInput,
68
+ GetConfiguredTableCommandOutput,
69
+ } from "../commands/GetConfiguredTableCommand";
70
+ import {
71
+ GetMembershipCommandInput,
72
+ GetMembershipCommandOutput,
73
+ } from "../commands/GetMembershipCommand";
74
+ import {
75
+ GetProtectedQueryCommandInput,
76
+ GetProtectedQueryCommandOutput,
77
+ } from "../commands/GetProtectedQueryCommand";
78
+ import {
79
+ GetSchemaAnalysisRuleCommandInput,
80
+ GetSchemaAnalysisRuleCommandOutput,
81
+ } from "../commands/GetSchemaAnalysisRuleCommand";
82
+ import {
83
+ GetSchemaCommandInput,
84
+ GetSchemaCommandOutput,
85
+ } from "../commands/GetSchemaCommand";
86
+ import {
87
+ ListCollaborationsCommandInput,
88
+ ListCollaborationsCommandOutput,
89
+ } from "../commands/ListCollaborationsCommand";
90
+ import {
91
+ ListConfiguredTableAssociationsCommandInput,
92
+ ListConfiguredTableAssociationsCommandOutput,
93
+ } from "../commands/ListConfiguredTableAssociationsCommand";
94
+ import {
95
+ ListConfiguredTablesCommandInput,
96
+ ListConfiguredTablesCommandOutput,
97
+ } from "../commands/ListConfiguredTablesCommand";
98
+ import {
99
+ ListMembersCommandInput,
100
+ ListMembersCommandOutput,
101
+ } from "../commands/ListMembersCommand";
102
+ import {
103
+ ListMembershipsCommandInput,
104
+ ListMembershipsCommandOutput,
105
+ } from "../commands/ListMembershipsCommand";
106
+ import {
107
+ ListProtectedQueriesCommandInput,
108
+ ListProtectedQueriesCommandOutput,
109
+ } from "../commands/ListProtectedQueriesCommand";
110
+ import {
111
+ ListSchemasCommandInput,
112
+ ListSchemasCommandOutput,
113
+ } from "../commands/ListSchemasCommand";
114
+ import {
115
+ StartProtectedQueryCommandInput,
116
+ StartProtectedQueryCommandOutput,
117
+ } from "../commands/StartProtectedQueryCommand";
118
+ import {
119
+ UpdateCollaborationCommandInput,
120
+ UpdateCollaborationCommandOutput,
121
+ } from "../commands/UpdateCollaborationCommand";
122
+ import {
123
+ UpdateConfiguredTableAnalysisRuleCommandInput,
124
+ UpdateConfiguredTableAnalysisRuleCommandOutput,
125
+ } from "../commands/UpdateConfiguredTableAnalysisRuleCommand";
126
+ import {
127
+ UpdateConfiguredTableAssociationCommandInput,
128
+ UpdateConfiguredTableAssociationCommandOutput,
129
+ } from "../commands/UpdateConfiguredTableAssociationCommand";
130
+ import {
131
+ UpdateConfiguredTableCommandInput,
132
+ UpdateConfiguredTableCommandOutput,
133
+ } from "../commands/UpdateConfiguredTableCommand";
134
+ import {
135
+ UpdateMembershipCommandInput,
136
+ UpdateMembershipCommandOutput,
137
+ } from "../commands/UpdateMembershipCommand";
138
+ import {
139
+ UpdateProtectedQueryCommandInput,
140
+ UpdateProtectedQueryCommandOutput,
141
+ } from "../commands/UpdateProtectedQueryCommand";
142
+ export declare const serializeAws_restJson1BatchGetSchemaCommand: (
143
+ input: BatchGetSchemaCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1CreateCollaborationCommand: (
147
+ input: CreateCollaborationCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1CreateConfiguredTableCommand: (
151
+ input: CreateConfiguredTableCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1CreateConfiguredTableAnalysisRuleCommand: (
155
+ input: CreateConfiguredTableAnalysisRuleCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1CreateConfiguredTableAssociationCommand: (
159
+ input: CreateConfiguredTableAssociationCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1CreateMembershipCommand: (
163
+ input: CreateMembershipCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1DeleteCollaborationCommand: (
167
+ input: DeleteCollaborationCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1DeleteConfiguredTableCommand: (
171
+ input: DeleteConfiguredTableCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1DeleteConfiguredTableAnalysisRuleCommand: (
175
+ input: DeleteConfiguredTableAnalysisRuleCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1DeleteConfiguredTableAssociationCommand: (
179
+ input: DeleteConfiguredTableAssociationCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1DeleteMemberCommand: (
183
+ input: DeleteMemberCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1DeleteMembershipCommand: (
187
+ input: DeleteMembershipCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1GetCollaborationCommand: (
191
+ input: GetCollaborationCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1GetConfiguredTableCommand: (
195
+ input: GetConfiguredTableCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_restJson1GetConfiguredTableAnalysisRuleCommand: (
199
+ input: GetConfiguredTableAnalysisRuleCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_restJson1GetConfiguredTableAssociationCommand: (
203
+ input: GetConfiguredTableAssociationCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const serializeAws_restJson1GetMembershipCommand: (
207
+ input: GetMembershipCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const serializeAws_restJson1GetProtectedQueryCommand: (
211
+ input: GetProtectedQueryCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const serializeAws_restJson1GetSchemaCommand: (
215
+ input: GetSchemaCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const serializeAws_restJson1GetSchemaAnalysisRuleCommand: (
219
+ input: GetSchemaAnalysisRuleCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const serializeAws_restJson1ListCollaborationsCommand: (
223
+ input: ListCollaborationsCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
226
+ export declare const serializeAws_restJson1ListConfiguredTableAssociationsCommand: (
227
+ input: ListConfiguredTableAssociationsCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
230
+ export declare const serializeAws_restJson1ListConfiguredTablesCommand: (
231
+ input: ListConfiguredTablesCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
234
+ export declare const serializeAws_restJson1ListMembersCommand: (
235
+ input: ListMembersCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
238
+ export declare const serializeAws_restJson1ListMembershipsCommand: (
239
+ input: ListMembershipsCommandInput,
240
+ context: __SerdeContext
241
+ ) => Promise<__HttpRequest>;
242
+ export declare const serializeAws_restJson1ListProtectedQueriesCommand: (
243
+ input: ListProtectedQueriesCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
246
+ export declare const serializeAws_restJson1ListSchemasCommand: (
247
+ input: ListSchemasCommandInput,
248
+ context: __SerdeContext
249
+ ) => Promise<__HttpRequest>;
250
+ export declare const serializeAws_restJson1StartProtectedQueryCommand: (
251
+ input: StartProtectedQueryCommandInput,
252
+ context: __SerdeContext
253
+ ) => Promise<__HttpRequest>;
254
+ export declare const serializeAws_restJson1UpdateCollaborationCommand: (
255
+ input: UpdateCollaborationCommandInput,
256
+ context: __SerdeContext
257
+ ) => Promise<__HttpRequest>;
258
+ export declare const serializeAws_restJson1UpdateConfiguredTableCommand: (
259
+ input: UpdateConfiguredTableCommandInput,
260
+ context: __SerdeContext
261
+ ) => Promise<__HttpRequest>;
262
+ export declare const serializeAws_restJson1UpdateConfiguredTableAnalysisRuleCommand: (
263
+ input: UpdateConfiguredTableAnalysisRuleCommandInput,
264
+ context: __SerdeContext
265
+ ) => Promise<__HttpRequest>;
266
+ export declare const serializeAws_restJson1UpdateConfiguredTableAssociationCommand: (
267
+ input: UpdateConfiguredTableAssociationCommandInput,
268
+ context: __SerdeContext
269
+ ) => Promise<__HttpRequest>;
270
+ export declare const serializeAws_restJson1UpdateMembershipCommand: (
271
+ input: UpdateMembershipCommandInput,
272
+ context: __SerdeContext
273
+ ) => Promise<__HttpRequest>;
274
+ export declare const serializeAws_restJson1UpdateProtectedQueryCommand: (
275
+ input: UpdateProtectedQueryCommandInput,
276
+ context: __SerdeContext
277
+ ) => Promise<__HttpRequest>;
278
+ export declare const deserializeAws_restJson1BatchGetSchemaCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<BatchGetSchemaCommandOutput>;
282
+ export declare const deserializeAws_restJson1CreateCollaborationCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<CreateCollaborationCommandOutput>;
286
+ export declare const deserializeAws_restJson1CreateConfiguredTableCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<CreateConfiguredTableCommandOutput>;
290
+ export declare const deserializeAws_restJson1CreateConfiguredTableAnalysisRuleCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<CreateConfiguredTableAnalysisRuleCommandOutput>;
294
+ export declare const deserializeAws_restJson1CreateConfiguredTableAssociationCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<CreateConfiguredTableAssociationCommandOutput>;
298
+ export declare const deserializeAws_restJson1CreateMembershipCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<CreateMembershipCommandOutput>;
302
+ export declare const deserializeAws_restJson1DeleteCollaborationCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<DeleteCollaborationCommandOutput>;
306
+ export declare const deserializeAws_restJson1DeleteConfiguredTableCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<DeleteConfiguredTableCommandOutput>;
310
+ export declare const deserializeAws_restJson1DeleteConfiguredTableAnalysisRuleCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<DeleteConfiguredTableAnalysisRuleCommandOutput>;
314
+ export declare const deserializeAws_restJson1DeleteConfiguredTableAssociationCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<DeleteConfiguredTableAssociationCommandOutput>;
318
+ export declare const deserializeAws_restJson1DeleteMemberCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<DeleteMemberCommandOutput>;
322
+ export declare const deserializeAws_restJson1DeleteMembershipCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<DeleteMembershipCommandOutput>;
326
+ export declare const deserializeAws_restJson1GetCollaborationCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<GetCollaborationCommandOutput>;
330
+ export declare const deserializeAws_restJson1GetConfiguredTableCommand: (
331
+ output: __HttpResponse,
332
+ context: __SerdeContext
333
+ ) => Promise<GetConfiguredTableCommandOutput>;
334
+ export declare const deserializeAws_restJson1GetConfiguredTableAnalysisRuleCommand: (
335
+ output: __HttpResponse,
336
+ context: __SerdeContext
337
+ ) => Promise<GetConfiguredTableAnalysisRuleCommandOutput>;
338
+ export declare const deserializeAws_restJson1GetConfiguredTableAssociationCommand: (
339
+ output: __HttpResponse,
340
+ context: __SerdeContext
341
+ ) => Promise<GetConfiguredTableAssociationCommandOutput>;
342
+ export declare const deserializeAws_restJson1GetMembershipCommand: (
343
+ output: __HttpResponse,
344
+ context: __SerdeContext
345
+ ) => Promise<GetMembershipCommandOutput>;
346
+ export declare const deserializeAws_restJson1GetProtectedQueryCommand: (
347
+ output: __HttpResponse,
348
+ context: __SerdeContext
349
+ ) => Promise<GetProtectedQueryCommandOutput>;
350
+ export declare const deserializeAws_restJson1GetSchemaCommand: (
351
+ output: __HttpResponse,
352
+ context: __SerdeContext
353
+ ) => Promise<GetSchemaCommandOutput>;
354
+ export declare const deserializeAws_restJson1GetSchemaAnalysisRuleCommand: (
355
+ output: __HttpResponse,
356
+ context: __SerdeContext
357
+ ) => Promise<GetSchemaAnalysisRuleCommandOutput>;
358
+ export declare const deserializeAws_restJson1ListCollaborationsCommand: (
359
+ output: __HttpResponse,
360
+ context: __SerdeContext
361
+ ) => Promise<ListCollaborationsCommandOutput>;
362
+ export declare const deserializeAws_restJson1ListConfiguredTableAssociationsCommand: (
363
+ output: __HttpResponse,
364
+ context: __SerdeContext
365
+ ) => Promise<ListConfiguredTableAssociationsCommandOutput>;
366
+ export declare const deserializeAws_restJson1ListConfiguredTablesCommand: (
367
+ output: __HttpResponse,
368
+ context: __SerdeContext
369
+ ) => Promise<ListConfiguredTablesCommandOutput>;
370
+ export declare const deserializeAws_restJson1ListMembersCommand: (
371
+ output: __HttpResponse,
372
+ context: __SerdeContext
373
+ ) => Promise<ListMembersCommandOutput>;
374
+ export declare const deserializeAws_restJson1ListMembershipsCommand: (
375
+ output: __HttpResponse,
376
+ context: __SerdeContext
377
+ ) => Promise<ListMembershipsCommandOutput>;
378
+ export declare const deserializeAws_restJson1ListProtectedQueriesCommand: (
379
+ output: __HttpResponse,
380
+ context: __SerdeContext
381
+ ) => Promise<ListProtectedQueriesCommandOutput>;
382
+ export declare const deserializeAws_restJson1ListSchemasCommand: (
383
+ output: __HttpResponse,
384
+ context: __SerdeContext
385
+ ) => Promise<ListSchemasCommandOutput>;
386
+ export declare const deserializeAws_restJson1StartProtectedQueryCommand: (
387
+ output: __HttpResponse,
388
+ context: __SerdeContext
389
+ ) => Promise<StartProtectedQueryCommandOutput>;
390
+ export declare const deserializeAws_restJson1UpdateCollaborationCommand: (
391
+ output: __HttpResponse,
392
+ context: __SerdeContext
393
+ ) => Promise<UpdateCollaborationCommandOutput>;
394
+ export declare const deserializeAws_restJson1UpdateConfiguredTableCommand: (
395
+ output: __HttpResponse,
396
+ context: __SerdeContext
397
+ ) => Promise<UpdateConfiguredTableCommandOutput>;
398
+ export declare const deserializeAws_restJson1UpdateConfiguredTableAnalysisRuleCommand: (
399
+ output: __HttpResponse,
400
+ context: __SerdeContext
401
+ ) => Promise<UpdateConfiguredTableAnalysisRuleCommandOutput>;
402
+ export declare const deserializeAws_restJson1UpdateConfiguredTableAssociationCommand: (
403
+ output: __HttpResponse,
404
+ context: __SerdeContext
405
+ ) => Promise<UpdateConfiguredTableAssociationCommandOutput>;
406
+ export declare const deserializeAws_restJson1UpdateMembershipCommand: (
407
+ output: __HttpResponse,
408
+ context: __SerdeContext
409
+ ) => Promise<UpdateMembershipCommandOutput>;
410
+ export declare const deserializeAws_restJson1UpdateProtectedQueryCommand: (
411
+ output: __HttpResponse,
412
+ context: __SerdeContext
413
+ ) => Promise<UpdateProtectedQueryCommandOutput>;
@@ -0,0 +1,91 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { CleanRoomsClientConfig } from "./CleanRoomsClient";
3
+ export declare const getRuntimeConfig: (config: CleanRoomsClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@aws-sdk/types").Provider<
6
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
9
+ credentialDefaultProvider: (
10
+ input: any
11
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
12
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
13
+ import("@aws-sdk/types").UserAgent
14
+ >;
15
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
16
+ region: string | import("@aws-sdk/types").Provider<any>;
17
+ requestHandler:
18
+ | (import("@aws-sdk/types").RequestHandler<
19
+ any,
20
+ any,
21
+ import("@aws-sdk/types").HttpHandlerOptions
22
+ > &
23
+ import("@aws-sdk/protocol-http").HttpHandler)
24
+ | RequestHandler;
25
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
26
+ sha256: import("@aws-sdk/types").HashConstructor;
27
+ streamCollector: import("@aws-sdk/types").StreamCollector;
28
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
30
+ utf8Decoder: import("@aws-sdk/types").Decoder;
31
+ utf8Encoder: import("@aws-sdk/types").Encoder;
32
+ apiVersion: string;
33
+ urlParser: import("@aws-sdk/types").UrlParser;
34
+ base64Decoder: import("@aws-sdk/types").Decoder;
35
+ base64Encoder: import("@aws-sdk/types").Encoder;
36
+ disableHostPrefix: boolean;
37
+ logger: import("@aws-sdk/types").Logger;
38
+ serviceId: string;
39
+ endpoint?:
40
+ | ((
41
+ | string
42
+ | import("@aws-sdk/types").Endpoint
43
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
44
+ | import("@aws-sdk/types").EndpointV2
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
46
+ ) &
47
+ (
48
+ | string
49
+ | import("@aws-sdk/types").Provider<string>
50
+ | import("@aws-sdk/types").Endpoint
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
52
+ | import("@aws-sdk/types").EndpointV2
53
+ | import("@aws-sdk/types").Provider<
54
+ import("@aws-sdk/types").EndpointV2
55
+ >
56
+ ))
57
+ | undefined;
58
+ endpointProvider: (
59
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
60
+ context?: {
61
+ logger?: import("@aws-sdk/types").Logger | undefined;
62
+ }
63
+ ) => import("@aws-sdk/types").EndpointV2;
64
+ tls?: boolean | undefined;
65
+ retryStrategy?:
66
+ | import("@aws-sdk/types").RetryStrategy
67
+ | import("@aws-sdk/types").RetryStrategyV2
68
+ | undefined;
69
+ credentials?:
70
+ | import("@aws-sdk/types").AwsCredentialIdentity
71
+ | import("@aws-sdk/types").Provider<
72
+ import("@aws-sdk/types").AwsCredentialIdentity
73
+ >
74
+ | undefined;
75
+ signer?:
76
+ | import("@aws-sdk/types").RequestSigner
77
+ | ((
78
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
79
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
80
+ | undefined;
81
+ signingEscapePath?: boolean | undefined;
82
+ systemClockOffset?: number | undefined;
83
+ signingRegion?: string | undefined;
84
+ signerConstructor?:
85
+ | (new (
86
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
87
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
88
+ ) => import("@aws-sdk/types").RequestSigner)
89
+ | undefined;
90
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
91
+ };