@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,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { RTBFabricClient } from "../RTBFabricClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface RTBFabricPaginationConfiguration extends PaginationConfiguration {
7
+ client: RTBFabricClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListLinksCommandInput, ListLinksCommandOutput } from "../commands/ListLinksCommand";
3
+ import { RTBFabricPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListLinks: (config: RTBFabricPaginationConfiguration, input: ListLinksCommandInput, ...rest: any[]) => Paginator<ListLinksCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListRequesterGatewaysCommandInput, ListRequesterGatewaysCommandOutput } from "../commands/ListRequesterGatewaysCommand";
3
+ import { RTBFabricPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListRequesterGateways: (config: RTBFabricPaginationConfiguration, input: ListRequesterGatewaysCommandInput, ...rest: any[]) => Paginator<ListRequesterGatewaysCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListResponderGatewaysCommandInput, ListResponderGatewaysCommandOutput } from "../commands/ListResponderGatewaysCommand";
3
+ import { RTBFabricPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListResponderGateways: (config: RTBFabricPaginationConfiguration, input: ListResponderGatewaysCommandInput, ...rest: any[]) => Paginator<ListResponderGatewaysCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListLinksPaginator";
3
+ export * from "./ListRequesterGatewaysPaginator";
4
+ export * from "./ListResponderGatewaysPaginator";
@@ -0,0 +1,245 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { AcceptLinkCommandInput, AcceptLinkCommandOutput } from "../commands/AcceptLinkCommand";
4
+ import { CreateInboundExternalLinkCommandInput, CreateInboundExternalLinkCommandOutput } from "../commands/CreateInboundExternalLinkCommand";
5
+ import { CreateLinkCommandInput, CreateLinkCommandOutput } from "../commands/CreateLinkCommand";
6
+ import { CreateOutboundExternalLinkCommandInput, CreateOutboundExternalLinkCommandOutput } from "../commands/CreateOutboundExternalLinkCommand";
7
+ import { CreateRequesterGatewayCommandInput, CreateRequesterGatewayCommandOutput } from "../commands/CreateRequesterGatewayCommand";
8
+ import { CreateResponderGatewayCommandInput, CreateResponderGatewayCommandOutput } from "../commands/CreateResponderGatewayCommand";
9
+ import { DeleteInboundExternalLinkCommandInput, DeleteInboundExternalLinkCommandOutput } from "../commands/DeleteInboundExternalLinkCommand";
10
+ import { DeleteLinkCommandInput, DeleteLinkCommandOutput } from "../commands/DeleteLinkCommand";
11
+ import { DeleteOutboundExternalLinkCommandInput, DeleteOutboundExternalLinkCommandOutput } from "../commands/DeleteOutboundExternalLinkCommand";
12
+ import { DeleteRequesterGatewayCommandInput, DeleteRequesterGatewayCommandOutput } from "../commands/DeleteRequesterGatewayCommand";
13
+ import { DeleteResponderGatewayCommandInput, DeleteResponderGatewayCommandOutput } from "../commands/DeleteResponderGatewayCommand";
14
+ import { GetInboundExternalLinkCommandInput, GetInboundExternalLinkCommandOutput } from "../commands/GetInboundExternalLinkCommand";
15
+ import { GetLinkCommandInput, GetLinkCommandOutput } from "../commands/GetLinkCommand";
16
+ import { GetOutboundExternalLinkCommandInput, GetOutboundExternalLinkCommandOutput } from "../commands/GetOutboundExternalLinkCommand";
17
+ import { GetRequesterGatewayCommandInput, GetRequesterGatewayCommandOutput } from "../commands/GetRequesterGatewayCommand";
18
+ import { GetResponderGatewayCommandInput, GetResponderGatewayCommandOutput } from "../commands/GetResponderGatewayCommand";
19
+ import { ListLinksCommandInput, ListLinksCommandOutput } from "../commands/ListLinksCommand";
20
+ import { ListRequesterGatewaysCommandInput, ListRequesterGatewaysCommandOutput } from "../commands/ListRequesterGatewaysCommand";
21
+ import { ListResponderGatewaysCommandInput, ListResponderGatewaysCommandOutput } from "../commands/ListResponderGatewaysCommand";
22
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
23
+ import { RejectLinkCommandInput, RejectLinkCommandOutput } from "../commands/RejectLinkCommand";
24
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
25
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
26
+ import { UpdateLinkCommandInput, UpdateLinkCommandOutput } from "../commands/UpdateLinkCommand";
27
+ import { UpdateLinkModuleFlowCommandInput, UpdateLinkModuleFlowCommandOutput } from "../commands/UpdateLinkModuleFlowCommand";
28
+ import { UpdateRequesterGatewayCommandInput, UpdateRequesterGatewayCommandOutput } from "../commands/UpdateRequesterGatewayCommand";
29
+ import { UpdateResponderGatewayCommandInput, UpdateResponderGatewayCommandOutput } from "../commands/UpdateResponderGatewayCommand";
30
+ /**
31
+ * serializeAws_restJson1AcceptLinkCommand
32
+ */
33
+ export declare const se_AcceptLinkCommand: (input: AcceptLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
+ /**
35
+ * serializeAws_restJson1CreateInboundExternalLinkCommand
36
+ */
37
+ export declare const se_CreateInboundExternalLinkCommand: (input: CreateInboundExternalLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
+ /**
39
+ * serializeAws_restJson1CreateLinkCommand
40
+ */
41
+ export declare const se_CreateLinkCommand: (input: CreateLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
+ /**
43
+ * serializeAws_restJson1CreateOutboundExternalLinkCommand
44
+ */
45
+ export declare const se_CreateOutboundExternalLinkCommand: (input: CreateOutboundExternalLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
+ /**
47
+ * serializeAws_restJson1CreateRequesterGatewayCommand
48
+ */
49
+ export declare const se_CreateRequesterGatewayCommand: (input: CreateRequesterGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ /**
51
+ * serializeAws_restJson1CreateResponderGatewayCommand
52
+ */
53
+ export declare const se_CreateResponderGatewayCommand: (input: CreateResponderGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
+ /**
55
+ * serializeAws_restJson1DeleteInboundExternalLinkCommand
56
+ */
57
+ export declare const se_DeleteInboundExternalLinkCommand: (input: DeleteInboundExternalLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
+ /**
59
+ * serializeAws_restJson1DeleteLinkCommand
60
+ */
61
+ export declare const se_DeleteLinkCommand: (input: DeleteLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
+ /**
63
+ * serializeAws_restJson1DeleteOutboundExternalLinkCommand
64
+ */
65
+ export declare const se_DeleteOutboundExternalLinkCommand: (input: DeleteOutboundExternalLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
+ /**
67
+ * serializeAws_restJson1DeleteRequesterGatewayCommand
68
+ */
69
+ export declare const se_DeleteRequesterGatewayCommand: (input: DeleteRequesterGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
+ /**
71
+ * serializeAws_restJson1DeleteResponderGatewayCommand
72
+ */
73
+ export declare const se_DeleteResponderGatewayCommand: (input: DeleteResponderGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
+ /**
75
+ * serializeAws_restJson1GetInboundExternalLinkCommand
76
+ */
77
+ export declare const se_GetInboundExternalLinkCommand: (input: GetInboundExternalLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
+ /**
79
+ * serializeAws_restJson1GetLinkCommand
80
+ */
81
+ export declare const se_GetLinkCommand: (input: GetLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
+ /**
83
+ * serializeAws_restJson1GetOutboundExternalLinkCommand
84
+ */
85
+ export declare const se_GetOutboundExternalLinkCommand: (input: GetOutboundExternalLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
+ /**
87
+ * serializeAws_restJson1GetRequesterGatewayCommand
88
+ */
89
+ export declare const se_GetRequesterGatewayCommand: (input: GetRequesterGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
+ /**
91
+ * serializeAws_restJson1GetResponderGatewayCommand
92
+ */
93
+ export declare const se_GetResponderGatewayCommand: (input: GetResponderGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
+ /**
95
+ * serializeAws_restJson1ListLinksCommand
96
+ */
97
+ export declare const se_ListLinksCommand: (input: ListLinksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
+ /**
99
+ * serializeAws_restJson1ListRequesterGatewaysCommand
100
+ */
101
+ export declare const se_ListRequesterGatewaysCommand: (input: ListRequesterGatewaysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
+ /**
103
+ * serializeAws_restJson1ListResponderGatewaysCommand
104
+ */
105
+ export declare const se_ListResponderGatewaysCommand: (input: ListResponderGatewaysCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
+ /**
107
+ * serializeAws_restJson1ListTagsForResourceCommand
108
+ */
109
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
+ /**
111
+ * serializeAws_restJson1RejectLinkCommand
112
+ */
113
+ export declare const se_RejectLinkCommand: (input: RejectLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
114
+ /**
115
+ * serializeAws_restJson1TagResourceCommand
116
+ */
117
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
118
+ /**
119
+ * serializeAws_restJson1UntagResourceCommand
120
+ */
121
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
122
+ /**
123
+ * serializeAws_restJson1UpdateLinkCommand
124
+ */
125
+ export declare const se_UpdateLinkCommand: (input: UpdateLinkCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
+ /**
127
+ * serializeAws_restJson1UpdateLinkModuleFlowCommand
128
+ */
129
+ export declare const se_UpdateLinkModuleFlowCommand: (input: UpdateLinkModuleFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
130
+ /**
131
+ * serializeAws_restJson1UpdateRequesterGatewayCommand
132
+ */
133
+ export declare const se_UpdateRequesterGatewayCommand: (input: UpdateRequesterGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
+ /**
135
+ * serializeAws_restJson1UpdateResponderGatewayCommand
136
+ */
137
+ export declare const se_UpdateResponderGatewayCommand: (input: UpdateResponderGatewayCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
138
+ /**
139
+ * deserializeAws_restJson1AcceptLinkCommand
140
+ */
141
+ export declare const de_AcceptLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptLinkCommandOutput>;
142
+ /**
143
+ * deserializeAws_restJson1CreateInboundExternalLinkCommand
144
+ */
145
+ export declare const de_CreateInboundExternalLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateInboundExternalLinkCommandOutput>;
146
+ /**
147
+ * deserializeAws_restJson1CreateLinkCommand
148
+ */
149
+ export declare const de_CreateLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLinkCommandOutput>;
150
+ /**
151
+ * deserializeAws_restJson1CreateOutboundExternalLinkCommand
152
+ */
153
+ export declare const de_CreateOutboundExternalLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateOutboundExternalLinkCommandOutput>;
154
+ /**
155
+ * deserializeAws_restJson1CreateRequesterGatewayCommand
156
+ */
157
+ export declare const de_CreateRequesterGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRequesterGatewayCommandOutput>;
158
+ /**
159
+ * deserializeAws_restJson1CreateResponderGatewayCommand
160
+ */
161
+ export declare const de_CreateResponderGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateResponderGatewayCommandOutput>;
162
+ /**
163
+ * deserializeAws_restJson1DeleteInboundExternalLinkCommand
164
+ */
165
+ export declare const de_DeleteInboundExternalLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteInboundExternalLinkCommandOutput>;
166
+ /**
167
+ * deserializeAws_restJson1DeleteLinkCommand
168
+ */
169
+ export declare const de_DeleteLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLinkCommandOutput>;
170
+ /**
171
+ * deserializeAws_restJson1DeleteOutboundExternalLinkCommand
172
+ */
173
+ export declare const de_DeleteOutboundExternalLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOutboundExternalLinkCommandOutput>;
174
+ /**
175
+ * deserializeAws_restJson1DeleteRequesterGatewayCommand
176
+ */
177
+ export declare const de_DeleteRequesterGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRequesterGatewayCommandOutput>;
178
+ /**
179
+ * deserializeAws_restJson1DeleteResponderGatewayCommand
180
+ */
181
+ export declare const de_DeleteResponderGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResponderGatewayCommandOutput>;
182
+ /**
183
+ * deserializeAws_restJson1GetInboundExternalLinkCommand
184
+ */
185
+ export declare const de_GetInboundExternalLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInboundExternalLinkCommandOutput>;
186
+ /**
187
+ * deserializeAws_restJson1GetLinkCommand
188
+ */
189
+ export declare const de_GetLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLinkCommandOutput>;
190
+ /**
191
+ * deserializeAws_restJson1GetOutboundExternalLinkCommand
192
+ */
193
+ export declare const de_GetOutboundExternalLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOutboundExternalLinkCommandOutput>;
194
+ /**
195
+ * deserializeAws_restJson1GetRequesterGatewayCommand
196
+ */
197
+ export declare const de_GetRequesterGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRequesterGatewayCommandOutput>;
198
+ /**
199
+ * deserializeAws_restJson1GetResponderGatewayCommand
200
+ */
201
+ export declare const de_GetResponderGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResponderGatewayCommandOutput>;
202
+ /**
203
+ * deserializeAws_restJson1ListLinksCommand
204
+ */
205
+ export declare const de_ListLinksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListLinksCommandOutput>;
206
+ /**
207
+ * deserializeAws_restJson1ListRequesterGatewaysCommand
208
+ */
209
+ export declare const de_ListRequesterGatewaysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRequesterGatewaysCommandOutput>;
210
+ /**
211
+ * deserializeAws_restJson1ListResponderGatewaysCommand
212
+ */
213
+ export declare const de_ListResponderGatewaysCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResponderGatewaysCommandOutput>;
214
+ /**
215
+ * deserializeAws_restJson1ListTagsForResourceCommand
216
+ */
217
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
218
+ /**
219
+ * deserializeAws_restJson1RejectLinkCommand
220
+ */
221
+ export declare const de_RejectLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RejectLinkCommandOutput>;
222
+ /**
223
+ * deserializeAws_restJson1TagResourceCommand
224
+ */
225
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
226
+ /**
227
+ * deserializeAws_restJson1UntagResourceCommand
228
+ */
229
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
230
+ /**
231
+ * deserializeAws_restJson1UpdateLinkCommand
232
+ */
233
+ export declare const de_UpdateLinkCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLinkCommandOutput>;
234
+ /**
235
+ * deserializeAws_restJson1UpdateLinkModuleFlowCommand
236
+ */
237
+ export declare const de_UpdateLinkModuleFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLinkModuleFlowCommandOutput>;
238
+ /**
239
+ * deserializeAws_restJson1UpdateRequesterGatewayCommand
240
+ */
241
+ export declare const de_UpdateRequesterGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRequesterGatewayCommandOutput>;
242
+ /**
243
+ * deserializeAws_restJson1UpdateResponderGatewayCommand
244
+ */
245
+ export declare const de_UpdateResponderGatewayCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResponderGatewayCommandOutput>;
@@ -0,0 +1,50 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { RTBFabricClientConfig } from "./RTBFabricClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
+ apiVersion: string;
21
+ cacheMiddleware?: boolean | undefined;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: Uint8Array | string) => string;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: Uint8Array | string) => string;
27
+ disableHostPrefix: boolean;
28
+ serviceId: string;
29
+ profile?: string;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ customUserAgent?: string | import("@smithy/types").UserAgent;
33
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
35
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean;
40
+ serviceConfiguredEndpoint?: never;
41
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
42
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
46
+ signingEscapePath?: boolean;
47
+ systemClockOffset?: number;
48
+ signingRegion?: string;
49
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
50
+ };
@@ -0,0 +1,50 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { RTBFabricClientConfig } from "./RTBFabricClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
12
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
+ maxAttempts: number | import("@smithy/types").Provider<number>;
14
+ region: string | import("@smithy/types").Provider<string>;
15
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
16
+ retryMode: string | import("@smithy/types").Provider<string>;
17
+ sha256: import("@smithy/types").HashConstructor;
18
+ streamCollector: import("@smithy/types").StreamCollector;
19
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
+ apiVersion: string;
23
+ cacheMiddleware?: boolean | undefined;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: (_input: Uint8Array | string) => string;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: (input: Uint8Array | string) => string;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ profile?: string;
32
+ logger: import("@smithy/types").Logger;
33
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ customUserAgent?: string | import("@smithy/types").UserAgent;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
37
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
38
+ logger?: import("@smithy/types").Logger;
39
+ }) => import("@smithy/types").EndpointV2;
40
+ tls?: boolean;
41
+ serviceConfiguredEndpoint?: never;
42
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
46
+ signingEscapePath?: boolean;
47
+ systemClockOffset?: number;
48
+ signingRegion?: string;
49
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
50
+ };
@@ -0,0 +1,49 @@
1
+ import { RTBFabricClientConfig } from "./RTBFabricClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ cacheMiddleware?: boolean;
11
+ urlParser: import("@smithy/types").UrlParser;
12
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
+ streamCollector: import("@smithy/types").StreamCollector;
14
+ base64Decoder: import("@smithy/types").Decoder;
15
+ base64Encoder: (_input: Uint8Array | string) => string;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: (input: Uint8Array | string) => string;
18
+ disableHostPrefix: boolean;
19
+ serviceId: string;
20
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
21
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ profile?: string;
24
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
+ maxAttempts: number | import("@smithy/types").Provider<number>;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
+ customUserAgent?: string | import("@smithy/types").UserAgent;
32
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
+ logger?: import("@smithy/types").Logger;
37
+ }) => import("@smithy/types").EndpointV2;
38
+ tls?: boolean;
39
+ serviceConfiguredEndpoint?: never;
40
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
41
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
42
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
43
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
44
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
45
+ signingEscapePath?: boolean;
46
+ systemClockOffset?: number;
47
+ signingRegion?: string;
48
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
49
+ };
@@ -0,0 +1,25 @@
1
+ import { RTBFabricClientConfig } from "./RTBFabricClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: RTBFabricClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: Uint8Array | string) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger
12
+ /**
13
+ * @internal
14
+ */
15
+ ?: import("@smithy/types").Logger;
16
+ }) => import("@smithy/types").EndpointV2;
17
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
18
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").RTBFabricHttpAuthSchemeProvider;
19
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
20
+ logger: import("@smithy/types").Logger;
21
+ serviceId: string;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ utf8Decoder: import("@smithy/types").Decoder;
24
+ utf8Encoder: (input: Uint8Array | string) => string;
25
+ };
@@ -0,0 +1,17 @@
1
+ import { RTBFabricExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: RTBFabricExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;