@aws-sdk/client-rtbfabric 3.915.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 (191) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +421 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +2476 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +34 -0
  11. package/dist-es/RTBFabric.js +61 -0
  12. package/dist-es/RTBFabricClient.js +48 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/AcceptLinkCommand.js +22 -0
  16. package/dist-es/commands/CreateInboundExternalLinkCommand.js +22 -0
  17. package/dist-es/commands/CreateLinkCommand.js +22 -0
  18. package/dist-es/commands/CreateOutboundExternalLinkCommand.js +22 -0
  19. package/dist-es/commands/CreateRequesterGatewayCommand.js +22 -0
  20. package/dist-es/commands/CreateResponderGatewayCommand.js +23 -0
  21. package/dist-es/commands/DeleteInboundExternalLinkCommand.js +22 -0
  22. package/dist-es/commands/DeleteLinkCommand.js +22 -0
  23. package/dist-es/commands/DeleteOutboundExternalLinkCommand.js +22 -0
  24. package/dist-es/commands/DeleteRequesterGatewayCommand.js +22 -0
  25. package/dist-es/commands/DeleteResponderGatewayCommand.js +22 -0
  26. package/dist-es/commands/GetInboundExternalLinkCommand.js +22 -0
  27. package/dist-es/commands/GetLinkCommand.js +22 -0
  28. package/dist-es/commands/GetOutboundExternalLinkCommand.js +22 -0
  29. package/dist-es/commands/GetRequesterGatewayCommand.js +22 -0
  30. package/dist-es/commands/GetResponderGatewayCommand.js +23 -0
  31. package/dist-es/commands/ListLinksCommand.js +22 -0
  32. package/dist-es/commands/ListRequesterGatewaysCommand.js +22 -0
  33. package/dist-es/commands/ListResponderGatewaysCommand.js +22 -0
  34. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  35. package/dist-es/commands/RejectLinkCommand.js +22 -0
  36. package/dist-es/commands/TagResourceCommand.js +22 -0
  37. package/dist-es/commands/UntagResourceCommand.js +22 -0
  38. package/dist-es/commands/UpdateLinkCommand.js +22 -0
  39. package/dist-es/commands/UpdateLinkModuleFlowCommand.js +22 -0
  40. package/dist-es/commands/UpdateRequesterGatewayCommand.js +22 -0
  41. package/dist-es/commands/UpdateResponderGatewayCommand.js +23 -0
  42. package/dist-es/commands/index.js +27 -0
  43. package/dist-es/endpoint/EndpointParameters.js +13 -0
  44. package/dist-es/endpoint/endpointResolver.js +14 -0
  45. package/dist-es/endpoint/ruleset.js +4 -0
  46. package/dist-es/extensionConfiguration.js +1 -0
  47. package/dist-es/index.js +7 -0
  48. package/dist-es/models/RTBFabricServiceException.js +8 -0
  49. package/dist-es/models/index.js +1 -0
  50. package/dist-es/models/models_0.js +219 -0
  51. package/dist-es/pagination/Interfaces.js +1 -0
  52. package/dist-es/pagination/ListLinksPaginator.js +4 -0
  53. package/dist-es/pagination/ListRequesterGatewaysPaginator.js +4 -0
  54. package/dist-es/pagination/ListResponderGatewaysPaginator.js +4 -0
  55. package/dist-es/pagination/index.js +4 -0
  56. package/dist-es/protocols/Aws_restJson1.js +1147 -0
  57. package/dist-es/runtimeConfig.browser.js +34 -0
  58. package/dist-es/runtimeConfig.js +51 -0
  59. package/dist-es/runtimeConfig.native.js +11 -0
  60. package/dist-es/runtimeConfig.shared.js +30 -0
  61. package/dist-es/runtimeExtensions.js +9 -0
  62. package/dist-es/waiters/index.js +8 -0
  63. package/dist-es/waiters/waitForInboundExternalLinkActive.js +67 -0
  64. package/dist-es/waiters/waitForLinkAccepted.js +58 -0
  65. package/dist-es/waiters/waitForLinkActive.js +58 -0
  66. package/dist-es/waiters/waitForOutboundExternalLinkActive.js +67 -0
  67. package/dist-es/waiters/waitForRequesterGatewayActive.js +49 -0
  68. package/dist-es/waiters/waitForRequesterGatewayDeleted.js +40 -0
  69. package/dist-es/waiters/waitForResponderGatewayActive.js +49 -0
  70. package/dist-es/waiters/waitForResponderGatewayDeleted.js +40 -0
  71. package/dist-types/RTBFabric.d.ts +201 -0
  72. package/dist-types/RTBFabricClient.d.ts +214 -0
  73. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  74. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  75. package/dist-types/commands/AcceptLinkCommand.d.ts +244 -0
  76. package/dist-types/commands/CreateInboundExternalLinkCommand.d.ts +134 -0
  77. package/dist-types/commands/CreateLinkCommand.d.ts +252 -0
  78. package/dist-types/commands/CreateOutboundExternalLinkCommand.d.ts +118 -0
  79. package/dist-types/commands/CreateRequesterGatewayCommand.d.ts +131 -0
  80. package/dist-types/commands/CreateResponderGatewayCommand.d.ts +155 -0
  81. package/dist-types/commands/DeleteInboundExternalLinkCommand.d.ts +111 -0
  82. package/dist-types/commands/DeleteLinkCommand.d.ts +111 -0
  83. package/dist-types/commands/DeleteOutboundExternalLinkCommand.d.ts +111 -0
  84. package/dist-types/commands/DeleteRequesterGatewayCommand.d.ts +106 -0
  85. package/dist-types/commands/DeleteResponderGatewayCommand.d.ts +106 -0
  86. package/dist-types/commands/GetInboundExternalLinkCommand.d.ts +214 -0
  87. package/dist-types/commands/GetLinkCommand.d.ts +226 -0
  88. package/dist-types/commands/GetOutboundExternalLinkCommand.d.ts +119 -0
  89. package/dist-types/commands/GetRequesterGatewayCommand.d.ts +136 -0
  90. package/dist-types/commands/GetResponderGatewayCommand.d.ts +162 -0
  91. package/dist-types/commands/ListLinksCommand.d.ts +225 -0
  92. package/dist-types/commands/ListRequesterGatewaysCommand.d.ts +122 -0
  93. package/dist-types/commands/ListResponderGatewaysCommand.d.ts +122 -0
  94. package/dist-types/commands/ListTagsForResourceCommand.d.ts +109 -0
  95. package/dist-types/commands/RejectLinkCommand.d.ts +215 -0
  96. package/dist-types/commands/TagResourceCommand.d.ts +107 -0
  97. package/dist-types/commands/UntagResourceCommand.d.ts +107 -0
  98. package/dist-types/commands/UpdateLinkCommand.d.ts +127 -0
  99. package/dist-types/commands/UpdateLinkModuleFlowCommand.d.ts +173 -0
  100. package/dist-types/commands/UpdateRequesterGatewayCommand.d.ts +113 -0
  101. package/dist-types/commands/UpdateResponderGatewayCommand.d.ts +139 -0
  102. package/dist-types/commands/index.d.ts +27 -0
  103. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  104. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  105. package/dist-types/endpoint/ruleset.d.ts +2 -0
  106. package/dist-types/extensionConfiguration.d.ts +9 -0
  107. package/dist-types/index.d.ts +15 -0
  108. package/dist-types/models/RTBFabricServiceException.d.ts +14 -0
  109. package/dist-types/models/index.d.ts +1 -0
  110. package/dist-types/models/models_0.d.ts +2011 -0
  111. package/dist-types/pagination/Interfaces.d.ts +8 -0
  112. package/dist-types/pagination/ListLinksPaginator.d.ts +7 -0
  113. package/dist-types/pagination/ListRequesterGatewaysPaginator.d.ts +7 -0
  114. package/dist-types/pagination/ListResponderGatewaysPaginator.d.ts +7 -0
  115. package/dist-types/pagination/index.d.ts +4 -0
  116. package/dist-types/protocols/Aws_restJson1.d.ts +245 -0
  117. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  118. package/dist-types/runtimeConfig.d.ts +50 -0
  119. package/dist-types/runtimeConfig.native.d.ts +49 -0
  120. package/dist-types/runtimeConfig.shared.d.ts +25 -0
  121. package/dist-types/runtimeExtensions.d.ts +17 -0
  122. package/dist-types/ts3.4/RTBFabric.d.ts +466 -0
  123. package/dist-types/ts3.4/RTBFabricClient.d.ts +281 -0
  124. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  125. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  126. package/dist-types/ts3.4/commands/AcceptLinkCommand.d.ts +47 -0
  127. package/dist-types/ts3.4/commands/CreateInboundExternalLinkCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/CreateLinkCommand.d.ts +47 -0
  129. package/dist-types/ts3.4/commands/CreateOutboundExternalLinkCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/CreateRequesterGatewayCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/CreateResponderGatewayCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/DeleteInboundExternalLinkCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/DeleteLinkCommand.d.ts +47 -0
  134. package/dist-types/ts3.4/commands/DeleteOutboundExternalLinkCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/DeleteRequesterGatewayCommand.d.ts +51 -0
  136. package/dist-types/ts3.4/commands/DeleteResponderGatewayCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/GetInboundExternalLinkCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/GetLinkCommand.d.ts +43 -0
  139. package/dist-types/ts3.4/commands/GetOutboundExternalLinkCommand.d.ts +51 -0
  140. package/dist-types/ts3.4/commands/GetRequesterGatewayCommand.d.ts +51 -0
  141. package/dist-types/ts3.4/commands/GetResponderGatewayCommand.d.ts +51 -0
  142. package/dist-types/ts3.4/commands/ListLinksCommand.d.ts +47 -0
  143. package/dist-types/ts3.4/commands/ListRequesterGatewaysCommand.d.ts +51 -0
  144. package/dist-types/ts3.4/commands/ListResponderGatewaysCommand.d.ts +51 -0
  145. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/RejectLinkCommand.d.ts +47 -0
  147. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  148. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  149. package/dist-types/ts3.4/commands/UpdateLinkCommand.d.ts +47 -0
  150. package/dist-types/ts3.4/commands/UpdateLinkModuleFlowCommand.d.ts +51 -0
  151. package/dist-types/ts3.4/commands/UpdateRequesterGatewayCommand.d.ts +51 -0
  152. package/dist-types/ts3.4/commands/UpdateResponderGatewayCommand.d.ts +51 -0
  153. package/dist-types/ts3.4/commands/index.d.ts +27 -0
  154. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  155. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  156. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  157. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  158. package/dist-types/ts3.4/index.d.ts +10 -0
  159. package/dist-types/ts3.4/models/RTBFabricServiceException.d.ts +9 -0
  160. package/dist-types/ts3.4/models/index.d.ts +1 -0
  161. package/dist-types/ts3.4/models/models_0.d.ts +618 -0
  162. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  163. package/dist-types/ts3.4/pagination/ListLinksPaginator.d.ts +11 -0
  164. package/dist-types/ts3.4/pagination/ListRequesterGatewaysPaginator.d.ts +11 -0
  165. package/dist-types/ts3.4/pagination/ListResponderGatewaysPaginator.d.ts +11 -0
  166. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  167. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +329 -0
  168. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +92 -0
  169. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  170. package/dist-types/ts3.4/runtimeConfig.native.d.ts +96 -0
  171. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  172. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  173. package/dist-types/ts3.4/waiters/index.d.ts +8 -0
  174. package/dist-types/ts3.4/waiters/waitForInboundExternalLinkActive.d.ts +11 -0
  175. package/dist-types/ts3.4/waiters/waitForLinkAccepted.d.ts +11 -0
  176. package/dist-types/ts3.4/waiters/waitForLinkActive.d.ts +11 -0
  177. package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkActive.d.ts +11 -0
  178. package/dist-types/ts3.4/waiters/waitForRequesterGatewayActive.d.ts +11 -0
  179. package/dist-types/ts3.4/waiters/waitForRequesterGatewayDeleted.d.ts +11 -0
  180. package/dist-types/ts3.4/waiters/waitForResponderGatewayActive.d.ts +11 -0
  181. package/dist-types/ts3.4/waiters/waitForResponderGatewayDeleted.d.ts +11 -0
  182. package/dist-types/waiters/index.d.ts +8 -0
  183. package/dist-types/waiters/waitForInboundExternalLinkActive.d.ts +14 -0
  184. package/dist-types/waiters/waitForLinkAccepted.d.ts +14 -0
  185. package/dist-types/waiters/waitForLinkActive.d.ts +14 -0
  186. package/dist-types/waiters/waitForOutboundExternalLinkActive.d.ts +14 -0
  187. package/dist-types/waiters/waitForRequesterGatewayActive.d.ts +14 -0
  188. package/dist-types/waiters/waitForRequesterGatewayDeleted.d.ts +14 -0
  189. package/dist-types/waiters/waitForResponderGatewayActive.d.ts +14 -0
  190. package/dist-types/waiters/waitForResponderGatewayDeleted.d.ts +14 -0
  191. package/package.json +101 -0
@@ -0,0 +1,329 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ AcceptLinkCommandInput,
8
+ AcceptLinkCommandOutput,
9
+ } from "../commands/AcceptLinkCommand";
10
+ import {
11
+ CreateInboundExternalLinkCommandInput,
12
+ CreateInboundExternalLinkCommandOutput,
13
+ } from "../commands/CreateInboundExternalLinkCommand";
14
+ import {
15
+ CreateLinkCommandInput,
16
+ CreateLinkCommandOutput,
17
+ } from "../commands/CreateLinkCommand";
18
+ import {
19
+ CreateOutboundExternalLinkCommandInput,
20
+ CreateOutboundExternalLinkCommandOutput,
21
+ } from "../commands/CreateOutboundExternalLinkCommand";
22
+ import {
23
+ CreateRequesterGatewayCommandInput,
24
+ CreateRequesterGatewayCommandOutput,
25
+ } from "../commands/CreateRequesterGatewayCommand";
26
+ import {
27
+ CreateResponderGatewayCommandInput,
28
+ CreateResponderGatewayCommandOutput,
29
+ } from "../commands/CreateResponderGatewayCommand";
30
+ import {
31
+ DeleteInboundExternalLinkCommandInput,
32
+ DeleteInboundExternalLinkCommandOutput,
33
+ } from "../commands/DeleteInboundExternalLinkCommand";
34
+ import {
35
+ DeleteLinkCommandInput,
36
+ DeleteLinkCommandOutput,
37
+ } from "../commands/DeleteLinkCommand";
38
+ import {
39
+ DeleteOutboundExternalLinkCommandInput,
40
+ DeleteOutboundExternalLinkCommandOutput,
41
+ } from "../commands/DeleteOutboundExternalLinkCommand";
42
+ import {
43
+ DeleteRequesterGatewayCommandInput,
44
+ DeleteRequesterGatewayCommandOutput,
45
+ } from "../commands/DeleteRequesterGatewayCommand";
46
+ import {
47
+ DeleteResponderGatewayCommandInput,
48
+ DeleteResponderGatewayCommandOutput,
49
+ } from "../commands/DeleteResponderGatewayCommand";
50
+ import {
51
+ GetInboundExternalLinkCommandInput,
52
+ GetInboundExternalLinkCommandOutput,
53
+ } from "../commands/GetInboundExternalLinkCommand";
54
+ import {
55
+ GetLinkCommandInput,
56
+ GetLinkCommandOutput,
57
+ } from "../commands/GetLinkCommand";
58
+ import {
59
+ GetOutboundExternalLinkCommandInput,
60
+ GetOutboundExternalLinkCommandOutput,
61
+ } from "../commands/GetOutboundExternalLinkCommand";
62
+ import {
63
+ GetRequesterGatewayCommandInput,
64
+ GetRequesterGatewayCommandOutput,
65
+ } from "../commands/GetRequesterGatewayCommand";
66
+ import {
67
+ GetResponderGatewayCommandInput,
68
+ GetResponderGatewayCommandOutput,
69
+ } from "../commands/GetResponderGatewayCommand";
70
+ import {
71
+ ListLinksCommandInput,
72
+ ListLinksCommandOutput,
73
+ } from "../commands/ListLinksCommand";
74
+ import {
75
+ ListRequesterGatewaysCommandInput,
76
+ ListRequesterGatewaysCommandOutput,
77
+ } from "../commands/ListRequesterGatewaysCommand";
78
+ import {
79
+ ListResponderGatewaysCommandInput,
80
+ ListResponderGatewaysCommandOutput,
81
+ } from "../commands/ListResponderGatewaysCommand";
82
+ import {
83
+ ListTagsForResourceCommandInput,
84
+ ListTagsForResourceCommandOutput,
85
+ } from "../commands/ListTagsForResourceCommand";
86
+ import {
87
+ RejectLinkCommandInput,
88
+ RejectLinkCommandOutput,
89
+ } from "../commands/RejectLinkCommand";
90
+ import {
91
+ TagResourceCommandInput,
92
+ TagResourceCommandOutput,
93
+ } from "../commands/TagResourceCommand";
94
+ import {
95
+ UntagResourceCommandInput,
96
+ UntagResourceCommandOutput,
97
+ } from "../commands/UntagResourceCommand";
98
+ import {
99
+ UpdateLinkCommandInput,
100
+ UpdateLinkCommandOutput,
101
+ } from "../commands/UpdateLinkCommand";
102
+ import {
103
+ UpdateLinkModuleFlowCommandInput,
104
+ UpdateLinkModuleFlowCommandOutput,
105
+ } from "../commands/UpdateLinkModuleFlowCommand";
106
+ import {
107
+ UpdateRequesterGatewayCommandInput,
108
+ UpdateRequesterGatewayCommandOutput,
109
+ } from "../commands/UpdateRequesterGatewayCommand";
110
+ import {
111
+ UpdateResponderGatewayCommandInput,
112
+ UpdateResponderGatewayCommandOutput,
113
+ } from "../commands/UpdateResponderGatewayCommand";
114
+ export declare const se_AcceptLinkCommand: (
115
+ input: AcceptLinkCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const se_CreateInboundExternalLinkCommand: (
119
+ input: CreateInboundExternalLinkCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const se_CreateLinkCommand: (
123
+ input: CreateLinkCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const se_CreateOutboundExternalLinkCommand: (
127
+ input: CreateOutboundExternalLinkCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const se_CreateRequesterGatewayCommand: (
131
+ input: CreateRequesterGatewayCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const se_CreateResponderGatewayCommand: (
135
+ input: CreateResponderGatewayCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const se_DeleteInboundExternalLinkCommand: (
139
+ input: DeleteInboundExternalLinkCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const se_DeleteLinkCommand: (
143
+ input: DeleteLinkCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const se_DeleteOutboundExternalLinkCommand: (
147
+ input: DeleteOutboundExternalLinkCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const se_DeleteRequesterGatewayCommand: (
151
+ input: DeleteRequesterGatewayCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const se_DeleteResponderGatewayCommand: (
155
+ input: DeleteResponderGatewayCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const se_GetInboundExternalLinkCommand: (
159
+ input: GetInboundExternalLinkCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const se_GetLinkCommand: (
163
+ input: GetLinkCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const se_GetOutboundExternalLinkCommand: (
167
+ input: GetOutboundExternalLinkCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const se_GetRequesterGatewayCommand: (
171
+ input: GetRequesterGatewayCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const se_GetResponderGatewayCommand: (
175
+ input: GetResponderGatewayCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const se_ListLinksCommand: (
179
+ input: ListLinksCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const se_ListRequesterGatewaysCommand: (
183
+ input: ListRequesterGatewaysCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const se_ListResponderGatewaysCommand: (
187
+ input: ListResponderGatewaysCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const se_ListTagsForResourceCommand: (
191
+ input: ListTagsForResourceCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const se_RejectLinkCommand: (
195
+ input: RejectLinkCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const se_TagResourceCommand: (
199
+ input: TagResourceCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const se_UntagResourceCommand: (
203
+ input: UntagResourceCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const se_UpdateLinkCommand: (
207
+ input: UpdateLinkCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const se_UpdateLinkModuleFlowCommand: (
211
+ input: UpdateLinkModuleFlowCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const se_UpdateRequesterGatewayCommand: (
215
+ input: UpdateRequesterGatewayCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const se_UpdateResponderGatewayCommand: (
219
+ input: UpdateResponderGatewayCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const de_AcceptLinkCommand: (
223
+ output: __HttpResponse,
224
+ context: __SerdeContext
225
+ ) => Promise<AcceptLinkCommandOutput>;
226
+ export declare const de_CreateInboundExternalLinkCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<CreateInboundExternalLinkCommandOutput>;
230
+ export declare const de_CreateLinkCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<CreateLinkCommandOutput>;
234
+ export declare const de_CreateOutboundExternalLinkCommand: (
235
+ output: __HttpResponse,
236
+ context: __SerdeContext
237
+ ) => Promise<CreateOutboundExternalLinkCommandOutput>;
238
+ export declare const de_CreateRequesterGatewayCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<CreateRequesterGatewayCommandOutput>;
242
+ export declare const de_CreateResponderGatewayCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<CreateResponderGatewayCommandOutput>;
246
+ export declare const de_DeleteInboundExternalLinkCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<DeleteInboundExternalLinkCommandOutput>;
250
+ export declare const de_DeleteLinkCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<DeleteLinkCommandOutput>;
254
+ export declare const de_DeleteOutboundExternalLinkCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<DeleteOutboundExternalLinkCommandOutput>;
258
+ export declare const de_DeleteRequesterGatewayCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<DeleteRequesterGatewayCommandOutput>;
262
+ export declare const de_DeleteResponderGatewayCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<DeleteResponderGatewayCommandOutput>;
266
+ export declare const de_GetInboundExternalLinkCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<GetInboundExternalLinkCommandOutput>;
270
+ export declare const de_GetLinkCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<GetLinkCommandOutput>;
274
+ export declare const de_GetOutboundExternalLinkCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<GetOutboundExternalLinkCommandOutput>;
278
+ export declare const de_GetRequesterGatewayCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<GetRequesterGatewayCommandOutput>;
282
+ export declare const de_GetResponderGatewayCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<GetResponderGatewayCommandOutput>;
286
+ export declare const de_ListLinksCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<ListLinksCommandOutput>;
290
+ export declare const de_ListRequesterGatewaysCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<ListRequesterGatewaysCommandOutput>;
294
+ export declare const de_ListResponderGatewaysCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<ListResponderGatewaysCommandOutput>;
298
+ export declare const de_ListTagsForResourceCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<ListTagsForResourceCommandOutput>;
302
+ export declare const de_RejectLinkCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<RejectLinkCommandOutput>;
306
+ export declare const de_TagResourceCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<TagResourceCommandOutput>;
310
+ export declare const de_UntagResourceCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<UntagResourceCommandOutput>;
314
+ export declare const de_UpdateLinkCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<UpdateLinkCommandOutput>;
318
+ export declare const de_UpdateLinkModuleFlowCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<UpdateLinkModuleFlowCommandOutput>;
322
+ export declare const de_UpdateRequesterGatewayCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<UpdateRequesterGatewayCommandOutput>;
326
+ export declare const de_UpdateResponderGatewayCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<UpdateResponderGatewayCommandOutput>;
@@ -0,0 +1,92 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { RTBFabricClientConfig } from "./RTBFabricClient";
3
+ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ _: unknown
13
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
+ defaultUserAgentProvider: (
15
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
16
+ ) => Promise<import("@smithy/types").UserAgent>;
17
+ maxAttempts: number | import("@smithy/types").Provider<number>;
18
+ region: string | import("@smithy/types").Provider<any>;
19
+ requestHandler:
20
+ | import("@smithy/protocol-http").HttpHandler<any>
21
+ | RequestHandler;
22
+ retryMode: string | import("@smithy/types").Provider<string>;
23
+ sha256: import("@smithy/types").HashConstructor;
24
+ streamCollector: import("@smithy/types").StreamCollector;
25
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
26
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
27
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
28
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
29
+ apiVersion: string;
30
+ cacheMiddleware?: boolean | undefined;
31
+ urlParser: import("@smithy/types").UrlParser;
32
+ base64Decoder: import("@smithy/types").Decoder;
33
+ base64Encoder: (_input: Uint8Array | string) => string;
34
+ utf8Decoder: import("@smithy/types").Decoder;
35
+ utf8Encoder: (input: Uint8Array | string) => string;
36
+ disableHostPrefix: boolean;
37
+ serviceId: string;
38
+ profile?: string;
39
+ logger: import("@smithy/types").Logger;
40
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ customUserAgent?: string | import("@smithy/types").UserAgent;
42
+ userAgentAppId?:
43
+ | string
44
+ | undefined
45
+ | import("@smithy/types").Provider<string | undefined>;
46
+ retryStrategy?:
47
+ | import("@smithy/types").RetryStrategy
48
+ | import("@smithy/types").RetryStrategyV2;
49
+ endpoint?:
50
+ | ((
51
+ | string
52
+ | import("@smithy/types").Endpoint
53
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
54
+ | import("@smithy/types").EndpointV2
55
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
56
+ ) &
57
+ (
58
+ | string
59
+ | import("@smithy/types").Provider<string>
60
+ | import("@smithy/types").Endpoint
61
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
62
+ | import("@smithy/types").EndpointV2
63
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
64
+ ))
65
+ | undefined;
66
+ endpointProvider: (
67
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
68
+ context?: {
69
+ logger?: import("@smithy/types").Logger;
70
+ }
71
+ ) => import("@smithy/types").EndpointV2;
72
+ tls?: boolean;
73
+ serviceConfiguredEndpoint?: never;
74
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
75
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
76
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
77
+ credentials?:
78
+ | import("@smithy/types").AwsCredentialIdentity
79
+ | import("@smithy/types").AwsCredentialIdentityProvider;
80
+ signer?:
81
+ | import("@smithy/types").RequestSigner
82
+ | ((
83
+ authScheme?: import("@smithy/types").AuthScheme
84
+ ) => Promise<import("@smithy/types").RequestSigner>);
85
+ signingEscapePath?: boolean;
86
+ systemClockOffset?: number;
87
+ signingRegion?: string;
88
+ signerConstructor?: new (
89
+ options: import("@smithy/signature-v4").SignatureV4Init &
90
+ import("@smithy/signature-v4").SignatureV4CryptoInit
91
+ ) => import("@smithy/types").RequestSigner;
92
+ };
@@ -0,0 +1,89 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { RTBFabricClientConfig } from "./RTBFabricClient";
3
+ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider:
11
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
12
+ | ((
13
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ ) => import("@smithy/types").MemoizedProvider<
15
+ import("@smithy/types").AwsCredentialIdentity
16
+ >);
17
+ defaultUserAgentProvider: (
18
+ config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
19
+ ) => Promise<import("@smithy/types").UserAgent>;
20
+ maxAttempts: number | import("@smithy/types").Provider<number>;
21
+ region: string | import("@smithy/types").Provider<string>;
22
+ requestHandler:
23
+ | RequestHandler
24
+ | import("@smithy/protocol-http").HttpHandler<any>;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ sha256: import("@smithy/types").HashConstructor;
27
+ streamCollector: import("@smithy/types").StreamCollector;
28
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
30
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
31
+ apiVersion: string;
32
+ cacheMiddleware?: boolean | undefined;
33
+ urlParser: import("@smithy/types").UrlParser;
34
+ base64Decoder: import("@smithy/types").Decoder;
35
+ base64Encoder: (_input: Uint8Array | string) => string;
36
+ utf8Decoder: import("@smithy/types").Decoder;
37
+ utf8Encoder: (input: Uint8Array | string) => string;
38
+ disableHostPrefix: boolean;
39
+ serviceId: string;
40
+ profile?: string;
41
+ logger: import("@smithy/types").Logger;
42
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ customUserAgent?: string | import("@smithy/types").UserAgent;
44
+ retryStrategy?:
45
+ | import("@smithy/types").RetryStrategy
46
+ | import("@smithy/types").RetryStrategyV2;
47
+ endpoint?:
48
+ | ((
49
+ | string
50
+ | import("@smithy/types").Endpoint
51
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
52
+ | import("@smithy/types").EndpointV2
53
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
54
+ ) &
55
+ (
56
+ | string
57
+ | import("@smithy/types").Provider<string>
58
+ | import("@smithy/types").Endpoint
59
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
60
+ | import("@smithy/types").EndpointV2
61
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
62
+ ))
63
+ | undefined;
64
+ endpointProvider: (
65
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
66
+ context?: {
67
+ logger?: import("@smithy/types").Logger;
68
+ }
69
+ ) => import("@smithy/types").EndpointV2;
70
+ tls?: boolean;
71
+ serviceConfiguredEndpoint?: never;
72
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
73
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
74
+ credentials?:
75
+ | import("@smithy/types").AwsCredentialIdentity
76
+ | import("@smithy/types").AwsCredentialIdentityProvider;
77
+ signer?:
78
+ | import("@smithy/types").RequestSigner
79
+ | ((
80
+ authScheme?: import("@smithy/types").AuthScheme
81
+ ) => Promise<import("@smithy/types").RequestSigner>);
82
+ signingEscapePath?: boolean;
83
+ systemClockOffset?: number;
84
+ signingRegion?: string;
85
+ signerConstructor?: new (
86
+ options: import("@smithy/signature-v4").SignatureV4Init &
87
+ import("@smithy/signature-v4").SignatureV4CryptoInit
88
+ ) => import("@smithy/types").RequestSigner;
89
+ };
@@ -0,0 +1,96 @@
1
+ import { RTBFabricClientConfig } from "./RTBFabricClient";
2
+ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | import("@smithy/types").NodeHttpHandlerOptions
7
+ | import("@smithy/types").FetchHttpHandlerOptions
8
+ | Record<string, unknown>
9
+ | import("@smithy/protocol-http").HttpHandler<any>
10
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
+ apiVersion: string;
12
+ cacheMiddleware?: boolean;
13
+ urlParser: import("@smithy/types").UrlParser;
14
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
+ streamCollector: import("@smithy/types").StreamCollector;
16
+ base64Decoder: import("@smithy/types").Decoder;
17
+ base64Encoder: (_input: Uint8Array | string) => string;
18
+ utf8Decoder: import("@smithy/types").Decoder;
19
+ utf8Encoder: (input: Uint8Array | string) => string;
20
+ disableHostPrefix: boolean;
21
+ serviceId: string;
22
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
23
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
24
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
25
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
+ region: string | import("@smithy/types").Provider<any>;
27
+ profile?: string;
28
+ defaultUserAgentProvider: (
29
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
30
+ ) => Promise<import("@smithy/types").UserAgent>;
31
+ credentialDefaultProvider:
32
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
33
+ | ((
34
+ _: unknown
35
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
36
+ maxAttempts: number | import("@smithy/types").Provider<number>;
37
+ retryMode: string | import("@smithy/types").Provider<string>;
38
+ logger: import("@smithy/types").Logger;
39
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
40
+ defaultsMode:
41
+ | import("@smithy/smithy-client").DefaultsMode
42
+ | import("@smithy/types").Provider<
43
+ import("@smithy/smithy-client").DefaultsMode
44
+ >;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent;
46
+ userAgentAppId?:
47
+ | string
48
+ | undefined
49
+ | import("@smithy/types").Provider<string | undefined>;
50
+ retryStrategy?:
51
+ | import("@smithy/types").RetryStrategy
52
+ | import("@smithy/types").RetryStrategyV2;
53
+ endpoint?:
54
+ | ((
55
+ | string
56
+ | import("@smithy/types").Endpoint
57
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
58
+ | import("@smithy/types").EndpointV2
59
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
60
+ ) &
61
+ (
62
+ | string
63
+ | import("@smithy/types").Provider<string>
64
+ | import("@smithy/types").Endpoint
65
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
66
+ | import("@smithy/types").EndpointV2
67
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
68
+ ))
69
+ | undefined;
70
+ endpointProvider: (
71
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
72
+ context?: {
73
+ logger?: import("@smithy/types").Logger;
74
+ }
75
+ ) => import("@smithy/types").EndpointV2;
76
+ tls?: boolean;
77
+ serviceConfiguredEndpoint?: never;
78
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
79
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
80
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
81
+ credentials?:
82
+ | import("@smithy/types").AwsCredentialIdentity
83
+ | import("@smithy/types").AwsCredentialIdentityProvider;
84
+ signer?:
85
+ | import("@smithy/types").RequestSigner
86
+ | ((
87
+ authScheme?: import("@smithy/types").AuthScheme
88
+ ) => Promise<import("@smithy/types").RequestSigner>);
89
+ signingEscapePath?: boolean;
90
+ systemClockOffset?: number;
91
+ signingRegion?: string;
92
+ signerConstructor?: new (
93
+ options: import("@smithy/signature-v4").SignatureV4Init &
94
+ import("@smithy/signature-v4").SignatureV4CryptoInit
95
+ ) => import("@smithy/types").RequestSigner;
96
+ };
@@ -0,0 +1,21 @@
1
+ import { RTBFabricClientConfig } from "./RTBFabricClient";
2
+ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
3
+ apiVersion: string;
4
+ base64Decoder: import("@smithy/types").Decoder;
5
+ base64Encoder: (_input: Uint8Array | string) => string;
6
+ disableHostPrefix: boolean;
7
+ endpointProvider: (
8
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
9
+ context?: {
10
+ logger?: import("@smithy/types").Logger;
11
+ }
12
+ ) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: Uint8Array | string) => string;
21
+ };
@@ -0,0 +1,11 @@
1
+ import { RTBFabricExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(extensionConfiguration: RTBFabricExtensionConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;
@@ -0,0 +1,8 @@
1
+ export * from "./waitForInboundExternalLinkActive";
2
+ export * from "./waitForLinkAccepted";
3
+ export * from "./waitForLinkActive";
4
+ export * from "./waitForOutboundExternalLinkActive";
5
+ export * from "./waitForRequesterGatewayActive";
6
+ export * from "./waitForRequesterGatewayDeleted";
7
+ export * from "./waitForResponderGatewayActive";
8
+ export * from "./waitForResponderGatewayDeleted";
@@ -0,0 +1,11 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetInboundExternalLinkCommandInput } from "../commands/GetInboundExternalLinkCommand";
3
+ import { RTBFabricClient } from "../RTBFabricClient";
4
+ export declare const waitForInboundExternalLinkActive: (
5
+ params: WaiterConfiguration<RTBFabricClient>,
6
+ input: GetInboundExternalLinkCommandInput
7
+ ) => Promise<WaiterResult>;
8
+ export declare const waitUntilInboundExternalLinkActive: (
9
+ params: WaiterConfiguration<RTBFabricClient>,
10
+ input: GetInboundExternalLinkCommandInput
11
+ ) => Promise<WaiterResult>;
@@ -0,0 +1,11 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetLinkCommandInput } from "../commands/GetLinkCommand";
3
+ import { RTBFabricClient } from "../RTBFabricClient";
4
+ export declare const waitForLinkAccepted: (
5
+ params: WaiterConfiguration<RTBFabricClient>,
6
+ input: GetLinkCommandInput
7
+ ) => Promise<WaiterResult>;
8
+ export declare const waitUntilLinkAccepted: (
9
+ params: WaiterConfiguration<RTBFabricClient>,
10
+ input: GetLinkCommandInput
11
+ ) => Promise<WaiterResult>;