@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,201 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import { AcceptLinkCommandInput, AcceptLinkCommandOutput } from "./commands/AcceptLinkCommand";
3
+ import { CreateInboundExternalLinkCommandInput, CreateInboundExternalLinkCommandOutput } from "./commands/CreateInboundExternalLinkCommand";
4
+ import { CreateLinkCommandInput, CreateLinkCommandOutput } from "./commands/CreateLinkCommand";
5
+ import { CreateOutboundExternalLinkCommandInput, CreateOutboundExternalLinkCommandOutput } from "./commands/CreateOutboundExternalLinkCommand";
6
+ import { CreateRequesterGatewayCommandInput, CreateRequesterGatewayCommandOutput } from "./commands/CreateRequesterGatewayCommand";
7
+ import { CreateResponderGatewayCommandInput, CreateResponderGatewayCommandOutput } from "./commands/CreateResponderGatewayCommand";
8
+ import { DeleteInboundExternalLinkCommandInput, DeleteInboundExternalLinkCommandOutput } from "./commands/DeleteInboundExternalLinkCommand";
9
+ import { DeleteLinkCommandInput, DeleteLinkCommandOutput } from "./commands/DeleteLinkCommand";
10
+ import { DeleteOutboundExternalLinkCommandInput, DeleteOutboundExternalLinkCommandOutput } from "./commands/DeleteOutboundExternalLinkCommand";
11
+ import { DeleteRequesterGatewayCommandInput, DeleteRequesterGatewayCommandOutput } from "./commands/DeleteRequesterGatewayCommand";
12
+ import { DeleteResponderGatewayCommandInput, DeleteResponderGatewayCommandOutput } from "./commands/DeleteResponderGatewayCommand";
13
+ import { GetInboundExternalLinkCommandInput, GetInboundExternalLinkCommandOutput } from "./commands/GetInboundExternalLinkCommand";
14
+ import { GetLinkCommandInput, GetLinkCommandOutput } from "./commands/GetLinkCommand";
15
+ import { GetOutboundExternalLinkCommandInput, GetOutboundExternalLinkCommandOutput } from "./commands/GetOutboundExternalLinkCommand";
16
+ import { GetRequesterGatewayCommandInput, GetRequesterGatewayCommandOutput } from "./commands/GetRequesterGatewayCommand";
17
+ import { GetResponderGatewayCommandInput, GetResponderGatewayCommandOutput } from "./commands/GetResponderGatewayCommand";
18
+ import { ListLinksCommandInput, ListLinksCommandOutput } from "./commands/ListLinksCommand";
19
+ import { ListRequesterGatewaysCommandInput, ListRequesterGatewaysCommandOutput } from "./commands/ListRequesterGatewaysCommand";
20
+ import { ListResponderGatewaysCommandInput, ListResponderGatewaysCommandOutput } from "./commands/ListResponderGatewaysCommand";
21
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
22
+ import { RejectLinkCommandInput, RejectLinkCommandOutput } from "./commands/RejectLinkCommand";
23
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
24
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
25
+ import { UpdateLinkCommandInput, UpdateLinkCommandOutput } from "./commands/UpdateLinkCommand";
26
+ import { UpdateLinkModuleFlowCommandInput, UpdateLinkModuleFlowCommandOutput } from "./commands/UpdateLinkModuleFlowCommand";
27
+ import { UpdateRequesterGatewayCommandInput, UpdateRequesterGatewayCommandOutput } from "./commands/UpdateRequesterGatewayCommand";
28
+ import { UpdateResponderGatewayCommandInput, UpdateResponderGatewayCommandOutput } from "./commands/UpdateResponderGatewayCommand";
29
+ import { RTBFabricClient } from "./RTBFabricClient";
30
+ export interface RTBFabric {
31
+ /**
32
+ * @see {@link AcceptLinkCommand}
33
+ */
34
+ acceptLink(args: AcceptLinkCommandInput, options?: __HttpHandlerOptions): Promise<AcceptLinkCommandOutput>;
35
+ acceptLink(args: AcceptLinkCommandInput, cb: (err: any, data?: AcceptLinkCommandOutput) => void): void;
36
+ acceptLink(args: AcceptLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptLinkCommandOutput) => void): void;
37
+ /**
38
+ * @see {@link CreateInboundExternalLinkCommand}
39
+ */
40
+ createInboundExternalLink(args: CreateInboundExternalLinkCommandInput, options?: __HttpHandlerOptions): Promise<CreateInboundExternalLinkCommandOutput>;
41
+ createInboundExternalLink(args: CreateInboundExternalLinkCommandInput, cb: (err: any, data?: CreateInboundExternalLinkCommandOutput) => void): void;
42
+ createInboundExternalLink(args: CreateInboundExternalLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInboundExternalLinkCommandOutput) => void): void;
43
+ /**
44
+ * @see {@link CreateLinkCommand}
45
+ */
46
+ createLink(args: CreateLinkCommandInput, options?: __HttpHandlerOptions): Promise<CreateLinkCommandOutput>;
47
+ createLink(args: CreateLinkCommandInput, cb: (err: any, data?: CreateLinkCommandOutput) => void): void;
48
+ createLink(args: CreateLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLinkCommandOutput) => void): void;
49
+ /**
50
+ * @see {@link CreateOutboundExternalLinkCommand}
51
+ */
52
+ createOutboundExternalLink(args: CreateOutboundExternalLinkCommandInput, options?: __HttpHandlerOptions): Promise<CreateOutboundExternalLinkCommandOutput>;
53
+ createOutboundExternalLink(args: CreateOutboundExternalLinkCommandInput, cb: (err: any, data?: CreateOutboundExternalLinkCommandOutput) => void): void;
54
+ createOutboundExternalLink(args: CreateOutboundExternalLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOutboundExternalLinkCommandOutput) => void): void;
55
+ /**
56
+ * @see {@link CreateRequesterGatewayCommand}
57
+ */
58
+ createRequesterGateway(args: CreateRequesterGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateRequesterGatewayCommandOutput>;
59
+ createRequesterGateway(args: CreateRequesterGatewayCommandInput, cb: (err: any, data?: CreateRequesterGatewayCommandOutput) => void): void;
60
+ createRequesterGateway(args: CreateRequesterGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRequesterGatewayCommandOutput) => void): void;
61
+ /**
62
+ * @see {@link CreateResponderGatewayCommand}
63
+ */
64
+ createResponderGateway(args: CreateResponderGatewayCommandInput, options?: __HttpHandlerOptions): Promise<CreateResponderGatewayCommandOutput>;
65
+ createResponderGateway(args: CreateResponderGatewayCommandInput, cb: (err: any, data?: CreateResponderGatewayCommandOutput) => void): void;
66
+ createResponderGateway(args: CreateResponderGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResponderGatewayCommandOutput) => void): void;
67
+ /**
68
+ * @see {@link DeleteInboundExternalLinkCommand}
69
+ */
70
+ deleteInboundExternalLink(args: DeleteInboundExternalLinkCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInboundExternalLinkCommandOutput>;
71
+ deleteInboundExternalLink(args: DeleteInboundExternalLinkCommandInput, cb: (err: any, data?: DeleteInboundExternalLinkCommandOutput) => void): void;
72
+ deleteInboundExternalLink(args: DeleteInboundExternalLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInboundExternalLinkCommandOutput) => void): void;
73
+ /**
74
+ * @see {@link DeleteLinkCommand}
75
+ */
76
+ deleteLink(args: DeleteLinkCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLinkCommandOutput>;
77
+ deleteLink(args: DeleteLinkCommandInput, cb: (err: any, data?: DeleteLinkCommandOutput) => void): void;
78
+ deleteLink(args: DeleteLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLinkCommandOutput) => void): void;
79
+ /**
80
+ * @see {@link DeleteOutboundExternalLinkCommand}
81
+ */
82
+ deleteOutboundExternalLink(args: DeleteOutboundExternalLinkCommandInput, options?: __HttpHandlerOptions): Promise<DeleteOutboundExternalLinkCommandOutput>;
83
+ deleteOutboundExternalLink(args: DeleteOutboundExternalLinkCommandInput, cb: (err: any, data?: DeleteOutboundExternalLinkCommandOutput) => void): void;
84
+ deleteOutboundExternalLink(args: DeleteOutboundExternalLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteOutboundExternalLinkCommandOutput) => void): void;
85
+ /**
86
+ * @see {@link DeleteRequesterGatewayCommand}
87
+ */
88
+ deleteRequesterGateway(args: DeleteRequesterGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRequesterGatewayCommandOutput>;
89
+ deleteRequesterGateway(args: DeleteRequesterGatewayCommandInput, cb: (err: any, data?: DeleteRequesterGatewayCommandOutput) => void): void;
90
+ deleteRequesterGateway(args: DeleteRequesterGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRequesterGatewayCommandOutput) => void): void;
91
+ /**
92
+ * @see {@link DeleteResponderGatewayCommand}
93
+ */
94
+ deleteResponderGateway(args: DeleteResponderGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResponderGatewayCommandOutput>;
95
+ deleteResponderGateway(args: DeleteResponderGatewayCommandInput, cb: (err: any, data?: DeleteResponderGatewayCommandOutput) => void): void;
96
+ deleteResponderGateway(args: DeleteResponderGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResponderGatewayCommandOutput) => void): void;
97
+ /**
98
+ * @see {@link GetInboundExternalLinkCommand}
99
+ */
100
+ getInboundExternalLink(args: GetInboundExternalLinkCommandInput, options?: __HttpHandlerOptions): Promise<GetInboundExternalLinkCommandOutput>;
101
+ getInboundExternalLink(args: GetInboundExternalLinkCommandInput, cb: (err: any, data?: GetInboundExternalLinkCommandOutput) => void): void;
102
+ getInboundExternalLink(args: GetInboundExternalLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInboundExternalLinkCommandOutput) => void): void;
103
+ /**
104
+ * @see {@link GetLinkCommand}
105
+ */
106
+ getLink(args: GetLinkCommandInput, options?: __HttpHandlerOptions): Promise<GetLinkCommandOutput>;
107
+ getLink(args: GetLinkCommandInput, cb: (err: any, data?: GetLinkCommandOutput) => void): void;
108
+ getLink(args: GetLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLinkCommandOutput) => void): void;
109
+ /**
110
+ * @see {@link GetOutboundExternalLinkCommand}
111
+ */
112
+ getOutboundExternalLink(args: GetOutboundExternalLinkCommandInput, options?: __HttpHandlerOptions): Promise<GetOutboundExternalLinkCommandOutput>;
113
+ getOutboundExternalLink(args: GetOutboundExternalLinkCommandInput, cb: (err: any, data?: GetOutboundExternalLinkCommandOutput) => void): void;
114
+ getOutboundExternalLink(args: GetOutboundExternalLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOutboundExternalLinkCommandOutput) => void): void;
115
+ /**
116
+ * @see {@link GetRequesterGatewayCommand}
117
+ */
118
+ getRequesterGateway(args: GetRequesterGatewayCommandInput, options?: __HttpHandlerOptions): Promise<GetRequesterGatewayCommandOutput>;
119
+ getRequesterGateway(args: GetRequesterGatewayCommandInput, cb: (err: any, data?: GetRequesterGatewayCommandOutput) => void): void;
120
+ getRequesterGateway(args: GetRequesterGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRequesterGatewayCommandOutput) => void): void;
121
+ /**
122
+ * @see {@link GetResponderGatewayCommand}
123
+ */
124
+ getResponderGateway(args: GetResponderGatewayCommandInput, options?: __HttpHandlerOptions): Promise<GetResponderGatewayCommandOutput>;
125
+ getResponderGateway(args: GetResponderGatewayCommandInput, cb: (err: any, data?: GetResponderGatewayCommandOutput) => void): void;
126
+ getResponderGateway(args: GetResponderGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResponderGatewayCommandOutput) => void): void;
127
+ /**
128
+ * @see {@link ListLinksCommand}
129
+ */
130
+ listLinks(args: ListLinksCommandInput, options?: __HttpHandlerOptions): Promise<ListLinksCommandOutput>;
131
+ listLinks(args: ListLinksCommandInput, cb: (err: any, data?: ListLinksCommandOutput) => void): void;
132
+ listLinks(args: ListLinksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLinksCommandOutput) => void): void;
133
+ /**
134
+ * @see {@link ListRequesterGatewaysCommand}
135
+ */
136
+ listRequesterGateways(): Promise<ListRequesterGatewaysCommandOutput>;
137
+ listRequesterGateways(args: ListRequesterGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<ListRequesterGatewaysCommandOutput>;
138
+ listRequesterGateways(args: ListRequesterGatewaysCommandInput, cb: (err: any, data?: ListRequesterGatewaysCommandOutput) => void): void;
139
+ listRequesterGateways(args: ListRequesterGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRequesterGatewaysCommandOutput) => void): void;
140
+ /**
141
+ * @see {@link ListResponderGatewaysCommand}
142
+ */
143
+ listResponderGateways(): Promise<ListResponderGatewaysCommandOutput>;
144
+ listResponderGateways(args: ListResponderGatewaysCommandInput, options?: __HttpHandlerOptions): Promise<ListResponderGatewaysCommandOutput>;
145
+ listResponderGateways(args: ListResponderGatewaysCommandInput, cb: (err: any, data?: ListResponderGatewaysCommandOutput) => void): void;
146
+ listResponderGateways(args: ListResponderGatewaysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResponderGatewaysCommandOutput) => void): void;
147
+ /**
148
+ * @see {@link ListTagsForResourceCommand}
149
+ */
150
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
151
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
152
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
153
+ /**
154
+ * @see {@link RejectLinkCommand}
155
+ */
156
+ rejectLink(args: RejectLinkCommandInput, options?: __HttpHandlerOptions): Promise<RejectLinkCommandOutput>;
157
+ rejectLink(args: RejectLinkCommandInput, cb: (err: any, data?: RejectLinkCommandOutput) => void): void;
158
+ rejectLink(args: RejectLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectLinkCommandOutput) => void): void;
159
+ /**
160
+ * @see {@link TagResourceCommand}
161
+ */
162
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
163
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
164
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
165
+ /**
166
+ * @see {@link UntagResourceCommand}
167
+ */
168
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
169
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
170
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
171
+ /**
172
+ * @see {@link UpdateLinkCommand}
173
+ */
174
+ updateLink(args: UpdateLinkCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLinkCommandOutput>;
175
+ updateLink(args: UpdateLinkCommandInput, cb: (err: any, data?: UpdateLinkCommandOutput) => void): void;
176
+ updateLink(args: UpdateLinkCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLinkCommandOutput) => void): void;
177
+ /**
178
+ * @see {@link UpdateLinkModuleFlowCommand}
179
+ */
180
+ updateLinkModuleFlow(args: UpdateLinkModuleFlowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLinkModuleFlowCommandOutput>;
181
+ updateLinkModuleFlow(args: UpdateLinkModuleFlowCommandInput, cb: (err: any, data?: UpdateLinkModuleFlowCommandOutput) => void): void;
182
+ updateLinkModuleFlow(args: UpdateLinkModuleFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLinkModuleFlowCommandOutput) => void): void;
183
+ /**
184
+ * @see {@link UpdateRequesterGatewayCommand}
185
+ */
186
+ updateRequesterGateway(args: UpdateRequesterGatewayCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRequesterGatewayCommandOutput>;
187
+ updateRequesterGateway(args: UpdateRequesterGatewayCommandInput, cb: (err: any, data?: UpdateRequesterGatewayCommandOutput) => void): void;
188
+ updateRequesterGateway(args: UpdateRequesterGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRequesterGatewayCommandOutput) => void): void;
189
+ /**
190
+ * @see {@link UpdateResponderGatewayCommand}
191
+ */
192
+ updateResponderGateway(args: UpdateResponderGatewayCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResponderGatewayCommandOutput>;
193
+ updateResponderGateway(args: UpdateResponderGatewayCommandInput, cb: (err: any, data?: UpdateResponderGatewayCommandOutput) => void): void;
194
+ updateResponderGateway(args: UpdateResponderGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResponderGatewayCommandOutput) => void): void;
195
+ }
196
+ /**
197
+ * <p>Amazon Web Services RTB Fabric provides secure, low-latency infrastructure for connecting real-time bidding (RTB) applications. Rather than hosting applications directly, RTB Fabric acts as the connecting fabric that enables your applications to communicate efficiently over private networks instead of the public internet. You maintain complete control over your applications, data, and bidding decisions, while RTB Fabric provides the underlying infrastructure for secure, reliable connectivity.</p> <p>You can use these APIs to complete RTB Fabric tasks, such as setting up audit log ingestions or viewing user access. For more information about RTB Fabric, including the required permissions to use the service, see the <a href="https://docs.aws.amazon.com/rtb-fabric/latest/userguide/">Amazon Web Services RTB Fabric User Guide</a>.</p>
198
+ * @public
199
+ */
200
+ export declare class RTBFabric extends RTBFabricClient implements RTBFabric {
201
+ }
@@ -0,0 +1,214 @@
1
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
2
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
3
+ import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
4
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
5
+ import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
+ import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
+ import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
+ import { AcceptLinkCommandInput, AcceptLinkCommandOutput } from "./commands/AcceptLinkCommand";
11
+ import { CreateInboundExternalLinkCommandInput, CreateInboundExternalLinkCommandOutput } from "./commands/CreateInboundExternalLinkCommand";
12
+ import { CreateLinkCommandInput, CreateLinkCommandOutput } from "./commands/CreateLinkCommand";
13
+ import { CreateOutboundExternalLinkCommandInput, CreateOutboundExternalLinkCommandOutput } from "./commands/CreateOutboundExternalLinkCommand";
14
+ import { CreateRequesterGatewayCommandInput, CreateRequesterGatewayCommandOutput } from "./commands/CreateRequesterGatewayCommand";
15
+ import { CreateResponderGatewayCommandInput, CreateResponderGatewayCommandOutput } from "./commands/CreateResponderGatewayCommand";
16
+ import { DeleteInboundExternalLinkCommandInput, DeleteInboundExternalLinkCommandOutput } from "./commands/DeleteInboundExternalLinkCommand";
17
+ import { DeleteLinkCommandInput, DeleteLinkCommandOutput } from "./commands/DeleteLinkCommand";
18
+ import { DeleteOutboundExternalLinkCommandInput, DeleteOutboundExternalLinkCommandOutput } from "./commands/DeleteOutboundExternalLinkCommand";
19
+ import { DeleteRequesterGatewayCommandInput, DeleteRequesterGatewayCommandOutput } from "./commands/DeleteRequesterGatewayCommand";
20
+ import { DeleteResponderGatewayCommandInput, DeleteResponderGatewayCommandOutput } from "./commands/DeleteResponderGatewayCommand";
21
+ import { GetInboundExternalLinkCommandInput, GetInboundExternalLinkCommandOutput } from "./commands/GetInboundExternalLinkCommand";
22
+ import { GetLinkCommandInput, GetLinkCommandOutput } from "./commands/GetLinkCommand";
23
+ import { GetOutboundExternalLinkCommandInput, GetOutboundExternalLinkCommandOutput } from "./commands/GetOutboundExternalLinkCommand";
24
+ import { GetRequesterGatewayCommandInput, GetRequesterGatewayCommandOutput } from "./commands/GetRequesterGatewayCommand";
25
+ import { GetResponderGatewayCommandInput, GetResponderGatewayCommandOutput } from "./commands/GetResponderGatewayCommand";
26
+ import { ListLinksCommandInput, ListLinksCommandOutput } from "./commands/ListLinksCommand";
27
+ import { ListRequesterGatewaysCommandInput, ListRequesterGatewaysCommandOutput } from "./commands/ListRequesterGatewaysCommand";
28
+ import { ListResponderGatewaysCommandInput, ListResponderGatewaysCommandOutput } from "./commands/ListResponderGatewaysCommand";
29
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
30
+ import { RejectLinkCommandInput, RejectLinkCommandOutput } from "./commands/RejectLinkCommand";
31
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
32
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
33
+ import { UpdateLinkCommandInput, UpdateLinkCommandOutput } from "./commands/UpdateLinkCommand";
34
+ import { UpdateLinkModuleFlowCommandInput, UpdateLinkModuleFlowCommandOutput } from "./commands/UpdateLinkModuleFlowCommand";
35
+ import { UpdateRequesterGatewayCommandInput, UpdateRequesterGatewayCommandOutput } from "./commands/UpdateRequesterGatewayCommand";
36
+ import { UpdateResponderGatewayCommandInput, UpdateResponderGatewayCommandOutput } from "./commands/UpdateResponderGatewayCommand";
37
+ import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
38
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
39
+ export { __Client };
40
+ /**
41
+ * @public
42
+ */
43
+ export type ServiceInputTypes = AcceptLinkCommandInput | CreateInboundExternalLinkCommandInput | CreateLinkCommandInput | CreateOutboundExternalLinkCommandInput | CreateRequesterGatewayCommandInput | CreateResponderGatewayCommandInput | DeleteInboundExternalLinkCommandInput | DeleteLinkCommandInput | DeleteOutboundExternalLinkCommandInput | DeleteRequesterGatewayCommandInput | DeleteResponderGatewayCommandInput | GetInboundExternalLinkCommandInput | GetLinkCommandInput | GetOutboundExternalLinkCommandInput | GetRequesterGatewayCommandInput | GetResponderGatewayCommandInput | ListLinksCommandInput | ListRequesterGatewaysCommandInput | ListResponderGatewaysCommandInput | ListTagsForResourceCommandInput | RejectLinkCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateLinkCommandInput | UpdateLinkModuleFlowCommandInput | UpdateRequesterGatewayCommandInput | UpdateResponderGatewayCommandInput;
44
+ /**
45
+ * @public
46
+ */
47
+ export type ServiceOutputTypes = AcceptLinkCommandOutput | CreateInboundExternalLinkCommandOutput | CreateLinkCommandOutput | CreateOutboundExternalLinkCommandOutput | CreateRequesterGatewayCommandOutput | CreateResponderGatewayCommandOutput | DeleteInboundExternalLinkCommandOutput | DeleteLinkCommandOutput | DeleteOutboundExternalLinkCommandOutput | DeleteRequesterGatewayCommandOutput | DeleteResponderGatewayCommandOutput | GetInboundExternalLinkCommandOutput | GetLinkCommandOutput | GetOutboundExternalLinkCommandOutput | GetRequesterGatewayCommandOutput | GetResponderGatewayCommandOutput | ListLinksCommandOutput | ListRequesterGatewaysCommandOutput | ListResponderGatewaysCommandOutput | ListTagsForResourceCommandOutput | RejectLinkCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateLinkCommandOutput | UpdateLinkModuleFlowCommandOutput | UpdateRequesterGatewayCommandOutput | UpdateResponderGatewayCommandOutput;
48
+ /**
49
+ * @public
50
+ */
51
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
52
+ /**
53
+ * The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
54
+ */
55
+ requestHandler?: __HttpHandlerUserInput;
56
+ /**
57
+ * A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
58
+ * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
59
+ * @internal
60
+ */
61
+ sha256?: __ChecksumConstructor | __HashConstructor;
62
+ /**
63
+ * The function that will be used to convert strings into HTTP endpoints.
64
+ * @internal
65
+ */
66
+ urlParser?: __UrlParser;
67
+ /**
68
+ * A function that can calculate the length of a request body.
69
+ * @internal
70
+ */
71
+ bodyLengthChecker?: __BodyLengthCalculator;
72
+ /**
73
+ * A function that converts a stream into an array of bytes.
74
+ * @internal
75
+ */
76
+ streamCollector?: __StreamCollector;
77
+ /**
78
+ * The function that will be used to convert a base64-encoded string to a byte array.
79
+ * @internal
80
+ */
81
+ base64Decoder?: __Decoder;
82
+ /**
83
+ * The function that will be used to convert binary data to a base64-encoded string.
84
+ * @internal
85
+ */
86
+ base64Encoder?: __Encoder;
87
+ /**
88
+ * The function that will be used to convert a UTF8-encoded string to a byte array.
89
+ * @internal
90
+ */
91
+ utf8Decoder?: __Decoder;
92
+ /**
93
+ * The function that will be used to convert binary data to a UTF-8 encoded string.
94
+ * @internal
95
+ */
96
+ utf8Encoder?: __Encoder;
97
+ /**
98
+ * The runtime environment.
99
+ * @internal
100
+ */
101
+ runtime?: string;
102
+ /**
103
+ * Disable dynamically changing the endpoint of the client based on the hostPrefix
104
+ * trait of an operation.
105
+ */
106
+ disableHostPrefix?: boolean;
107
+ /**
108
+ * Unique service identifier.
109
+ * @internal
110
+ */
111
+ serviceId?: string;
112
+ /**
113
+ * Enables IPv6/IPv4 dualstack endpoint.
114
+ */
115
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
116
+ /**
117
+ * Enables FIPS compatible endpoints.
118
+ */
119
+ useFipsEndpoint?: boolean | __Provider<boolean>;
120
+ /**
121
+ * The AWS region to which this client will send requests
122
+ */
123
+ region?: string | __Provider<string>;
124
+ /**
125
+ * Setting a client profile is similar to setting a value for the
126
+ * AWS_PROFILE environment variable. Setting a profile on a client
127
+ * in code only affects the single client instance, unlike AWS_PROFILE.
128
+ *
129
+ * When set, and only for environments where an AWS configuration
130
+ * file exists, fields configurable by this file will be retrieved
131
+ * from the specified profile within that file.
132
+ * Conflicting code configuration and environment variables will
133
+ * still have higher priority.
134
+ *
135
+ * For client credential resolution that involves checking the AWS
136
+ * configuration file, the client's profile (this value) will be
137
+ * used unless a different profile is set in the credential
138
+ * provider options.
139
+ *
140
+ */
141
+ profile?: string;
142
+ /**
143
+ * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
144
+ * @internal
145
+ */
146
+ defaultUserAgentProvider?: Provider<__UserAgent>;
147
+ /**
148
+ * Default credentials provider; Not available in browser runtime.
149
+ * @deprecated
150
+ * @internal
151
+ */
152
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
153
+ /**
154
+ * Value for how many times a request will be made at most in case of retry.
155
+ */
156
+ maxAttempts?: number | __Provider<number>;
157
+ /**
158
+ * Specifies which retry algorithm to use.
159
+ * @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
160
+ *
161
+ */
162
+ retryMode?: string | __Provider<string>;
163
+ /**
164
+ * Optional logger for logging debug/info/warn/error.
165
+ */
166
+ logger?: __Logger;
167
+ /**
168
+ * Optional extensions
169
+ */
170
+ extensions?: RuntimeExtension[];
171
+ /**
172
+ * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
173
+ */
174
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
175
+ }
176
+ /**
177
+ * @public
178
+ */
179
+ export type RTBFabricClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
180
+ /**
181
+ * @public
182
+ *
183
+ * The configuration interface of RTBFabricClient class constructor that set the region, credentials and other options.
184
+ */
185
+ export interface RTBFabricClientConfig extends RTBFabricClientConfigType {
186
+ }
187
+ /**
188
+ * @public
189
+ */
190
+ export type RTBFabricClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
191
+ /**
192
+ * @public
193
+ *
194
+ * The resolved configuration interface of RTBFabricClient class. This is resolved and normalized from the {@link RTBFabricClientConfig | constructor configuration interface}.
195
+ */
196
+ export interface RTBFabricClientResolvedConfig extends RTBFabricClientResolvedConfigType {
197
+ }
198
+ /**
199
+ * <p>Amazon Web Services RTB Fabric provides secure, low-latency infrastructure for connecting real-time bidding (RTB) applications. Rather than hosting applications directly, RTB Fabric acts as the connecting fabric that enables your applications to communicate efficiently over private networks instead of the public internet. You maintain complete control over your applications, data, and bidding decisions, while RTB Fabric provides the underlying infrastructure for secure, reliable connectivity.</p> <p>You can use these APIs to complete RTB Fabric tasks, such as setting up audit log ingestions or viewing user access. For more information about RTB Fabric, including the required permissions to use the service, see the <a href="https://docs.aws.amazon.com/rtb-fabric/latest/userguide/">Amazon Web Services RTB Fabric User Guide</a>.</p>
200
+ * @public
201
+ */
202
+ export declare class RTBFabricClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, RTBFabricClientResolvedConfig> {
203
+ /**
204
+ * The resolved configuration of RTBFabricClient class. This is resolved and normalized from the {@link RTBFabricClientConfig | constructor configuration interface}.
205
+ */
206
+ readonly config: RTBFabricClientResolvedConfig;
207
+ constructor(...[configuration]: __CheckOptionalClientConfig<RTBFabricClientConfig>);
208
+ /**
209
+ * Destroy underlying resources, like sockets. It's usually not necessary to do this.
210
+ * However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
211
+ * Otherwise, sockets might stay open for quite a long time before the server terminates them.
212
+ */
213
+ destroy(): void;
214
+ }
@@ -0,0 +1,29 @@
1
+ import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
2
+ import { RTBFabricHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
+ /**
4
+ * @internal
5
+ */
6
+ export interface HttpAuthExtensionConfiguration {
7
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
8
+ httpAuthSchemes(): HttpAuthScheme[];
9
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: RTBFabricHttpAuthSchemeProvider): void;
10
+ httpAuthSchemeProvider(): RTBFabricHttpAuthSchemeProvider;
11
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
12
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export type HttpAuthRuntimeConfig = Partial<{
18
+ httpAuthSchemes: HttpAuthScheme[];
19
+ httpAuthSchemeProvider: RTBFabricHttpAuthSchemeProvider;
20
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
21
+ }>;
22
+ /**
23
+ * @internal
24
+ */
25
+ export declare const getHttpAuthExtensionConfiguration: (runtimeConfig: HttpAuthRuntimeConfig) => HttpAuthExtensionConfiguration;
26
+ /**
27
+ * @internal
28
+ */
29
+ export declare const resolveHttpAuthRuntimeConfig: (config: HttpAuthExtensionConfiguration) => HttpAuthRuntimeConfig;
@@ -0,0 +1,75 @@
1
+ import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
2
+ import { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
3
+ import { RTBFabricClientResolvedConfig } from "../RTBFabricClient";
4
+ /**
5
+ * @internal
6
+ */
7
+ export interface RTBFabricHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
8
+ region?: string;
9
+ }
10
+ /**
11
+ * @internal
12
+ */
13
+ export interface RTBFabricHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<RTBFabricClientResolvedConfig, HandlerExecutionContext, RTBFabricHttpAuthSchemeParameters, object> {
14
+ }
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const defaultRTBFabricHttpAuthSchemeParametersProvider: (config: RTBFabricClientResolvedConfig, context: HandlerExecutionContext, input: object) => Promise<RTBFabricHttpAuthSchemeParameters>;
19
+ /**
20
+ * @internal
21
+ */
22
+ export interface RTBFabricHttpAuthSchemeProvider extends HttpAuthSchemeProvider<RTBFabricHttpAuthSchemeParameters> {
23
+ }
24
+ /**
25
+ * @internal
26
+ */
27
+ export declare const defaultRTBFabricHttpAuthSchemeProvider: RTBFabricHttpAuthSchemeProvider;
28
+ /**
29
+ * @internal
30
+ */
31
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
32
+ /**
33
+ * A comma-separated list of case-sensitive auth scheme names.
34
+ * An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
35
+ * For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
36
+ * @public
37
+ */
38
+ authSchemePreference?: string[] | Provider<string[]>;
39
+ /**
40
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
41
+ * @internal
42
+ */
43
+ httpAuthSchemes?: HttpAuthScheme[];
44
+ /**
45
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
46
+ * @internal
47
+ */
48
+ httpAuthSchemeProvider?: RTBFabricHttpAuthSchemeProvider;
49
+ }
50
+ /**
51
+ * @internal
52
+ */
53
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
54
+ /**
55
+ * A comma-separated list of case-sensitive auth scheme names.
56
+ * An auth scheme name is a fully qualified auth scheme ID with the namespace prefix trimmed.
57
+ * For example, the auth scheme with ID aws.auth#sigv4 is named sigv4.
58
+ * @public
59
+ */
60
+ readonly authSchemePreference: Provider<string[]>;
61
+ /**
62
+ * Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
63
+ * @internal
64
+ */
65
+ readonly httpAuthSchemes: HttpAuthScheme[];
66
+ /**
67
+ * Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
68
+ * @internal
69
+ */
70
+ readonly httpAuthSchemeProvider: RTBFabricHttpAuthSchemeProvider;
71
+ }
72
+ /**
73
+ * @internal
74
+ */
75
+ export declare const resolveHttpAuthSchemeConfig: <T>(config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved) => T & HttpAuthSchemeResolvedConfig;