@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,2011 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { RTBFabricServiceException as __BaseException } from "./RTBFabricServiceException";
3
+ /**
4
+ * @public
5
+ * @enum
6
+ */
7
+ export declare const ResponderErrorMaskingAction: {
8
+ readonly NO_BID: "NO_BID";
9
+ readonly PASSTHROUGH: "PASSTHROUGH";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type ResponderErrorMaskingAction = (typeof ResponderErrorMaskingAction)[keyof typeof ResponderErrorMaskingAction];
15
+ /**
16
+ * @public
17
+ * @enum
18
+ */
19
+ export declare const ResponderErrorMaskingLoggingType: {
20
+ readonly METRIC: "METRIC";
21
+ readonly NONE: "NONE";
22
+ readonly RESPONSE: "RESPONSE";
23
+ };
24
+ /**
25
+ * @public
26
+ */
27
+ export type ResponderErrorMaskingLoggingType = (typeof ResponderErrorMaskingLoggingType)[keyof typeof ResponderErrorMaskingLoggingType];
28
+ /**
29
+ * <p>Describes the masking for HTTP error codes.</p>
30
+ * @public
31
+ */
32
+ export interface ResponderErrorMaskingForHttpCode {
33
+ /**
34
+ * <p>The HTTP error code.</p>
35
+ * @public
36
+ */
37
+ httpCode: string | undefined;
38
+ /**
39
+ * <p>The action for the error..</p>
40
+ * @public
41
+ */
42
+ action: ResponderErrorMaskingAction | undefined;
43
+ /**
44
+ * <p>The error log type.</p>
45
+ * @public
46
+ */
47
+ loggingTypes: ResponderErrorMaskingLoggingType[] | undefined;
48
+ /**
49
+ * <p>The percentage of response logging.</p>
50
+ * @public
51
+ */
52
+ responseLoggingPercentage?: number | undefined;
53
+ }
54
+ /**
55
+ * <p>Describes the attributes of a link.</p>
56
+ * @public
57
+ */
58
+ export interface LinkAttributes {
59
+ /**
60
+ * <p>Describes the masking for HTTP error codes.</p>
61
+ * @public
62
+ */
63
+ responderErrorMasking?: ResponderErrorMaskingForHttpCode[] | undefined;
64
+ /**
65
+ * <p>The customer-provided unique identifier of the link.</p>
66
+ * @public
67
+ */
68
+ customerProvidedId?: string | undefined;
69
+ }
70
+ /**
71
+ * <p>Describes a link application log sample.</p>
72
+ * @public
73
+ */
74
+ export interface LinkApplicationLogSampling {
75
+ /**
76
+ * <p>An error log entry.</p>
77
+ * @public
78
+ */
79
+ errorLog: number | undefined;
80
+ /**
81
+ * <p>A filter log entry.</p>
82
+ * @public
83
+ */
84
+ filterLog: number | undefined;
85
+ }
86
+ /**
87
+ * <p>Describes the configuration of a link application log.</p>
88
+ * @public
89
+ */
90
+ export interface LinkApplicationLogConfiguration {
91
+ /**
92
+ * <p>Describes a link application log sample.</p>
93
+ * @public
94
+ */
95
+ sampling: LinkApplicationLogSampling | undefined;
96
+ }
97
+ /**
98
+ * <p>Describes the settings for a link log.</p>
99
+ * @public
100
+ */
101
+ export interface LinkLogSettings {
102
+ /**
103
+ * <p>Describes the configuration of a link application log.</p>
104
+ * @public
105
+ */
106
+ applicationLogs: LinkApplicationLogConfiguration | undefined;
107
+ }
108
+ /**
109
+ * @public
110
+ */
111
+ export interface AcceptLinkRequest {
112
+ /**
113
+ * <p>The unique identifier of the gateway.</p>
114
+ * @public
115
+ */
116
+ gatewayId: string | undefined;
117
+ /**
118
+ * <p>The unique identifier of the link.</p>
119
+ * @public
120
+ */
121
+ linkId: string | undefined;
122
+ /**
123
+ * <p>Attributes of the link.</p>
124
+ * @public
125
+ */
126
+ attributes?: LinkAttributes | undefined;
127
+ /**
128
+ * <p>Settings for the application logs.</p>
129
+ * @public
130
+ */
131
+ logSettings: LinkLogSettings | undefined;
132
+ }
133
+ /**
134
+ * @public
135
+ * @enum
136
+ */
137
+ export declare const LinkDirection: {
138
+ readonly REQUEST: "REQUEST";
139
+ readonly RESPONSE: "RESPONSE";
140
+ };
141
+ /**
142
+ * @public
143
+ */
144
+ export type LinkDirection = (typeof LinkDirection)[keyof typeof LinkDirection];
145
+ /**
146
+ * <p>Describes the parameters of a no bid module.</p>
147
+ * @public
148
+ */
149
+ export interface NoBidModuleParameters {
150
+ /**
151
+ * <p>The reason description.</p>
152
+ * @public
153
+ */
154
+ reason?: string | undefined;
155
+ /**
156
+ * <p>The reason code.</p>
157
+ * @public
158
+ */
159
+ reasonCode?: number | undefined;
160
+ /**
161
+ * <p>The pass through percentage.</p>
162
+ * @public
163
+ */
164
+ passThroughPercentage?: number | undefined;
165
+ }
166
+ /**
167
+ * <p>Describes the header tag for a bid action.</p>
168
+ * @public
169
+ */
170
+ export interface HeaderTagAction {
171
+ /**
172
+ * <p>The name of the bid action.</p>
173
+ * @public
174
+ */
175
+ name: string | undefined;
176
+ /**
177
+ * <p>The value of the bid action.</p>
178
+ * @public
179
+ */
180
+ value: string | undefined;
181
+ }
182
+ /**
183
+ * <p>Describes a no bid action.</p>
184
+ * @public
185
+ */
186
+ export interface NoBidAction {
187
+ /**
188
+ * <p>The reason code for the no bid action.</p>
189
+ * @public
190
+ */
191
+ noBidReasonCode?: number | undefined;
192
+ }
193
+ /**
194
+ * <p>Describes a bid action.</p>
195
+ * @public
196
+ */
197
+ export type Action = Action.HeaderTagMember | Action.NoBidMember | Action.$UnknownMember;
198
+ /**
199
+ * @public
200
+ */
201
+ export declare namespace Action {
202
+ /**
203
+ * <p>Describes a no bid action.</p>
204
+ * @public
205
+ */
206
+ interface NoBidMember {
207
+ noBid: NoBidAction;
208
+ headerTag?: never;
209
+ $unknown?: never;
210
+ }
211
+ /**
212
+ * <p>Describes the header tag for a bid action.</p>
213
+ * @public
214
+ */
215
+ interface HeaderTagMember {
216
+ noBid?: never;
217
+ headerTag: HeaderTagAction;
218
+ $unknown?: never;
219
+ }
220
+ /**
221
+ * @public
222
+ */
223
+ interface $UnknownMember {
224
+ noBid?: never;
225
+ headerTag?: never;
226
+ $unknown: [string, any];
227
+ }
228
+ interface Visitor<T> {
229
+ noBid: (value: NoBidAction) => T;
230
+ headerTag: (value: HeaderTagAction) => T;
231
+ _: (name: string, value: any) => T;
232
+ }
233
+ const visit: <T>(value: Action, visitor: Visitor<T>) => T;
234
+ }
235
+ /**
236
+ * <p>Describes the criteria for a filter.</p>
237
+ * @public
238
+ */
239
+ export interface FilterCriterion {
240
+ /**
241
+ * <p>The path to filter.</p>
242
+ * @public
243
+ */
244
+ path: string | undefined;
245
+ /**
246
+ * <p>The value to filter.</p>
247
+ * @public
248
+ */
249
+ values: string[] | undefined;
250
+ }
251
+ /**
252
+ * <p>Describes the configuration of a filter.</p>
253
+ * @public
254
+ */
255
+ export interface Filter {
256
+ /**
257
+ * <p>Describes the criteria for a filter.</p>
258
+ * @public
259
+ */
260
+ criteria: FilterCriterion[] | undefined;
261
+ }
262
+ /**
263
+ * @public
264
+ * @enum
265
+ */
266
+ export declare const FilterType: {
267
+ readonly EXCLUDE: "EXCLUDE";
268
+ readonly INCLUDE: "INCLUDE";
269
+ };
270
+ /**
271
+ * @public
272
+ */
273
+ export type FilterType = (typeof FilterType)[keyof typeof FilterType];
274
+ /**
275
+ * <p>Describes the parameters of an open RTB attribute module.</p>
276
+ * @public
277
+ */
278
+ export interface OpenRtbAttributeModuleParameters {
279
+ /**
280
+ * <p>The filter type.</p>
281
+ * @public
282
+ */
283
+ filterType: FilterType | undefined;
284
+ /**
285
+ * <p>Describes the configuration of a filter.</p>
286
+ * @public
287
+ */
288
+ filterConfiguration: Filter[] | undefined;
289
+ /**
290
+ * <p>Describes a bid action.</p>
291
+ * @public
292
+ */
293
+ action: Action | undefined;
294
+ /**
295
+ * <p>The hold back percentage.</p>
296
+ * @public
297
+ */
298
+ holdbackPercentage: number | undefined;
299
+ }
300
+ /**
301
+ * <p>Describes the parameters of a module.</p>
302
+ * @public
303
+ */
304
+ export type ModuleParameters = ModuleParameters.NoBidMember | ModuleParameters.OpenRtbAttributeMember | ModuleParameters.$UnknownMember;
305
+ /**
306
+ * @public
307
+ */
308
+ export declare namespace ModuleParameters {
309
+ /**
310
+ * <p>Describes the parameters of a no bid module.</p>
311
+ * @public
312
+ */
313
+ interface NoBidMember {
314
+ noBid: NoBidModuleParameters;
315
+ openRtbAttribute?: never;
316
+ $unknown?: never;
317
+ }
318
+ /**
319
+ * <p>Describes the parameters of an open RTB attribute module.</p>
320
+ * @public
321
+ */
322
+ interface OpenRtbAttributeMember {
323
+ noBid?: never;
324
+ openRtbAttribute: OpenRtbAttributeModuleParameters;
325
+ $unknown?: never;
326
+ }
327
+ /**
328
+ * @public
329
+ */
330
+ interface $UnknownMember {
331
+ noBid?: never;
332
+ openRtbAttribute?: never;
333
+ $unknown: [string, any];
334
+ }
335
+ interface Visitor<T> {
336
+ noBid: (value: NoBidModuleParameters) => T;
337
+ openRtbAttribute: (value: OpenRtbAttributeModuleParameters) => T;
338
+ _: (name: string, value: any) => T;
339
+ }
340
+ const visit: <T>(value: ModuleParameters, visitor: Visitor<T>) => T;
341
+ }
342
+ /**
343
+ * <p>Describes the configuration of a module.</p>
344
+ * @public
345
+ */
346
+ export interface ModuleConfiguration {
347
+ /**
348
+ * <p>The version of the module.</p>
349
+ * @public
350
+ */
351
+ version?: string | undefined;
352
+ /**
353
+ * <p>The name of the module.</p>
354
+ * @public
355
+ */
356
+ name: string | undefined;
357
+ /**
358
+ * <p>The dependencies of the module.</p>
359
+ * @public
360
+ */
361
+ dependsOn?: string[] | undefined;
362
+ /**
363
+ * <p>Describes the parameters of a module.</p>
364
+ * @public
365
+ */
366
+ moduleParameters?: ModuleParameters | undefined;
367
+ }
368
+ /**
369
+ * @public
370
+ * @enum
371
+ */
372
+ export declare const LinkStatus: {
373
+ readonly ACCEPTED: "ACCEPTED";
374
+ readonly ACTIVE: "ACTIVE";
375
+ readonly DELETED: "DELETED";
376
+ readonly FAILED: "FAILED";
377
+ readonly ISOLATED: "ISOLATED";
378
+ readonly PENDING_CREATION: "PENDING_CREATION";
379
+ readonly PENDING_DELETION: "PENDING_DELETION";
380
+ readonly PENDING_ISOLATION: "PENDING_ISOLATION";
381
+ readonly PENDING_REQUEST: "PENDING_REQUEST";
382
+ readonly PENDING_RESTORATION: "PENDING_RESTORATION";
383
+ readonly PENDING_UPDATE: "PENDING_UPDATE";
384
+ readonly REJECTED: "REJECTED";
385
+ readonly REQUESTED: "REQUESTED";
386
+ };
387
+ /**
388
+ * @public
389
+ */
390
+ export type LinkStatus = (typeof LinkStatus)[keyof typeof LinkStatus];
391
+ /**
392
+ * @public
393
+ */
394
+ export interface AcceptLinkResponse {
395
+ /**
396
+ * <p>The unique identifier of the gateway.</p>
397
+ * @public
398
+ */
399
+ gatewayId: string | undefined;
400
+ /**
401
+ * <p>The unique identifier of the peer gateway.</p>
402
+ * @public
403
+ */
404
+ peerGatewayId: string | undefined;
405
+ /**
406
+ * <p>The status of the link.</p>
407
+ * @public
408
+ */
409
+ status: LinkStatus | undefined;
410
+ /**
411
+ * <p>The timestamp of when the link was created.</p>
412
+ * @public
413
+ */
414
+ createdAt: Date | undefined;
415
+ /**
416
+ * <p>The timestamp of when the link was updated.</p>
417
+ * @public
418
+ */
419
+ updatedAt: Date | undefined;
420
+ /**
421
+ * <p>The direction of the link.</p>
422
+ * @public
423
+ */
424
+ direction?: LinkDirection | undefined;
425
+ /**
426
+ * <p>The configuration of flow modules.</p>
427
+ * @public
428
+ */
429
+ flowModules?: ModuleConfiguration[] | undefined;
430
+ /**
431
+ * <p>The configuration of pending flow modules.</p>
432
+ * @public
433
+ */
434
+ pendingFlowModules?: ModuleConfiguration[] | undefined;
435
+ /**
436
+ * <p>Attributes of the link.</p>
437
+ * @public
438
+ */
439
+ attributes?: LinkAttributes | undefined;
440
+ /**
441
+ * <p>The unique identifier of the link.</p>
442
+ * @public
443
+ */
444
+ linkId: string | undefined;
445
+ }
446
+ /**
447
+ * <p>The request could not be completed because you do not have sufficient access to perform this action.</p>
448
+ * @public
449
+ */
450
+ export declare class AccessDeniedException extends __BaseException {
451
+ readonly name: "AccessDeniedException";
452
+ readonly $fault: "client";
453
+ /**
454
+ * @internal
455
+ */
456
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
457
+ }
458
+ /**
459
+ * <p>The request could not be completed because of a conflict in the current state of the resource.</p>
460
+ * @public
461
+ */
462
+ export declare class ConflictException extends __BaseException {
463
+ readonly name: "ConflictException";
464
+ readonly $fault: "client";
465
+ /**
466
+ * @internal
467
+ */
468
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
469
+ }
470
+ /**
471
+ * <p>The request could not be completed because of an internal server error. Try your call again.</p>
472
+ * @public
473
+ */
474
+ export declare class InternalServerException extends __BaseException {
475
+ readonly name: "InternalServerException";
476
+ readonly $fault: "server";
477
+ $retryable: {};
478
+ /**
479
+ * @internal
480
+ */
481
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
482
+ }
483
+ /**
484
+ * <p>The request could not be completed because the resource does not exist.</p>
485
+ * @public
486
+ */
487
+ export declare class ResourceNotFoundException extends __BaseException {
488
+ readonly name: "ResourceNotFoundException";
489
+ readonly $fault: "client";
490
+ /**
491
+ * @internal
492
+ */
493
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
494
+ }
495
+ /**
496
+ * <p>The request was denied due to request throttling.</p>
497
+ * @public
498
+ */
499
+ export declare class ThrottlingException extends __BaseException {
500
+ readonly name: "ThrottlingException";
501
+ readonly $fault: "client";
502
+ $retryable: {};
503
+ /**
504
+ * @internal
505
+ */
506
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
507
+ }
508
+ /**
509
+ * <p>The request could not be completed because it fails satisfy the constraints specified by the service.</p>
510
+ * @public
511
+ */
512
+ export declare class ValidationException extends __BaseException {
513
+ readonly name: "ValidationException";
514
+ readonly $fault: "client";
515
+ /**
516
+ * @internal
517
+ */
518
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
519
+ }
520
+ /**
521
+ * <p>Describes the configuration of an auto scaling group.</p>
522
+ * @public
523
+ */
524
+ export interface AutoScalingGroupsConfiguration {
525
+ /**
526
+ * <p>The names of the auto scaling group.</p>
527
+ * @public
528
+ */
529
+ autoScalingGroupNames: string[] | undefined;
530
+ /**
531
+ * <p>The role ARN of the auto scaling group.</p>
532
+ * @public
533
+ */
534
+ roleArn: string | undefined;
535
+ }
536
+ /**
537
+ * @public
538
+ */
539
+ export interface CreateInboundExternalLinkRequest {
540
+ /**
541
+ * <p>The unique client token.</p>
542
+ * @public
543
+ */
544
+ clientToken?: string | undefined;
545
+ /**
546
+ * <p>The unique identifier of the gateway.</p>
547
+ * @public
548
+ */
549
+ gatewayId: string | undefined;
550
+ /**
551
+ * <p>Attributes of the link.</p>
552
+ * @public
553
+ */
554
+ attributes?: LinkAttributes | undefined;
555
+ /**
556
+ * <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
557
+ * @public
558
+ */
559
+ tags?: Record<string, string> | undefined;
560
+ }
561
+ /**
562
+ * @public
563
+ */
564
+ export interface CreateInboundExternalLinkResponse {
565
+ /**
566
+ * <p>The unique identifier of the gateway.</p>
567
+ * @public
568
+ */
569
+ gatewayId: string | undefined;
570
+ /**
571
+ * <p>The unique identifier of the link.</p>
572
+ * @public
573
+ */
574
+ linkId: string | undefined;
575
+ /**
576
+ * <p>The status of the request.</p>
577
+ * @public
578
+ */
579
+ status: LinkStatus | undefined;
580
+ /**
581
+ * <p>The domain name.</p>
582
+ * @public
583
+ */
584
+ domainName: string | undefined;
585
+ }
586
+ /**
587
+ * <p>The request could not be completed because you exceeded a service quota.</p>
588
+ * @public
589
+ */
590
+ export declare class ServiceQuotaExceededException extends __BaseException {
591
+ readonly name: "ServiceQuotaExceededException";
592
+ readonly $fault: "client";
593
+ /**
594
+ * @internal
595
+ */
596
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
597
+ }
598
+ /**
599
+ * @public
600
+ */
601
+ export interface CreateLinkRequest {
602
+ /**
603
+ * <p>The unique identifier of the gateway.</p>
604
+ * @public
605
+ */
606
+ gatewayId: string | undefined;
607
+ /**
608
+ * <p>The unique identifier of the peer gateway.</p>
609
+ * @public
610
+ */
611
+ peerGatewayId: string | undefined;
612
+ /**
613
+ * <p>Attributes of the link.</p>
614
+ * @public
615
+ */
616
+ attributes?: LinkAttributes | undefined;
617
+ /**
618
+ * <p>Boolean to specify if an HTTP responder is allowed.</p>
619
+ * @public
620
+ */
621
+ httpResponderAllowed?: boolean | undefined;
622
+ /**
623
+ * <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
624
+ * @public
625
+ */
626
+ tags?: Record<string, string> | undefined;
627
+ /**
628
+ * <p>Settings for the application logs.</p>
629
+ * @public
630
+ */
631
+ logSettings: LinkLogSettings | undefined;
632
+ }
633
+ /**
634
+ * @public
635
+ */
636
+ export interface CreateLinkResponse {
637
+ /**
638
+ * <p>The unique identifier of the gateway.</p>
639
+ * @public
640
+ */
641
+ gatewayId: string | undefined;
642
+ /**
643
+ * <p>The unique identifier of the peer gateway.</p>
644
+ * @public
645
+ */
646
+ peerGatewayId: string | undefined;
647
+ /**
648
+ * <p>The status of the request.</p>
649
+ * @public
650
+ */
651
+ status: LinkStatus | undefined;
652
+ /**
653
+ * <p>The timestamp of when the link was created.</p>
654
+ * @public
655
+ */
656
+ createdAt: Date | undefined;
657
+ /**
658
+ * <p>The timestamp of when the link was updated.</p>
659
+ * @public
660
+ */
661
+ updatedAt: Date | undefined;
662
+ /**
663
+ * <p>The direction of the link.</p>
664
+ * @public
665
+ */
666
+ direction?: LinkDirection | undefined;
667
+ /**
668
+ * <p>The configuration of flow modules.</p>
669
+ * @public
670
+ */
671
+ flowModules?: ModuleConfiguration[] | undefined;
672
+ /**
673
+ * <p>The configuration of pending flow modules.</p>
674
+ * @public
675
+ */
676
+ pendingFlowModules?: ModuleConfiguration[] | undefined;
677
+ /**
678
+ * <p>Attributes of the link.</p>
679
+ * @public
680
+ */
681
+ attributes?: LinkAttributes | undefined;
682
+ /**
683
+ * <p>The unique identifier of the link.</p>
684
+ * @public
685
+ */
686
+ linkId: string | undefined;
687
+ /**
688
+ * <p>The customer-provided unique identifier of the link.</p>
689
+ * @public
690
+ */
691
+ customerProvidedId?: string | undefined;
692
+ }
693
+ /**
694
+ * @public
695
+ */
696
+ export interface CreateOutboundExternalLinkRequest {
697
+ /**
698
+ * <p>The unique client token.</p>
699
+ * @public
700
+ */
701
+ clientToken?: string | undefined;
702
+ /**
703
+ * <p>The unique identifier of the gateway.</p>
704
+ * @public
705
+ */
706
+ gatewayId: string | undefined;
707
+ /**
708
+ * <p>The public endpoint of the link.</p>
709
+ * @public
710
+ */
711
+ publicEndpoint: string | undefined;
712
+ /**
713
+ * <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
714
+ * @public
715
+ */
716
+ tags?: Record<string, string> | undefined;
717
+ }
718
+ /**
719
+ * @public
720
+ */
721
+ export interface CreateOutboundExternalLinkResponse {
722
+ /**
723
+ * <p>The unique identifier of the gateway.</p>
724
+ * @public
725
+ */
726
+ gatewayId: string | undefined;
727
+ /**
728
+ * <p>The unique identifier of the link.</p>
729
+ * @public
730
+ */
731
+ linkId: string | undefined;
732
+ /**
733
+ * <p>The status of the request.</p>
734
+ * @public
735
+ */
736
+ status: LinkStatus | undefined;
737
+ }
738
+ /**
739
+ * @public
740
+ */
741
+ export interface CreateRequesterGatewayRequest {
742
+ /**
743
+ * <p>The unique identifier of the Virtual Private Cloud (VPC).</p>
744
+ * @public
745
+ */
746
+ vpcId: string | undefined;
747
+ /**
748
+ * <p>The unique identifiers of the subnets.</p>
749
+ * @public
750
+ */
751
+ subnetIds: string[] | undefined;
752
+ /**
753
+ * <p>The unique identifiers of the security groups.</p>
754
+ * @public
755
+ */
756
+ securityGroupIds: string[] | undefined;
757
+ /**
758
+ * <p>The unique client token.</p>
759
+ * @public
760
+ */
761
+ clientToken?: string | undefined;
762
+ /**
763
+ * <p>An optional description for the requester gateway.</p>
764
+ * @public
765
+ */
766
+ description?: string | undefined;
767
+ /**
768
+ * <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
769
+ * @public
770
+ */
771
+ tags?: Record<string, string> | undefined;
772
+ }
773
+ /**
774
+ * @public
775
+ * @enum
776
+ */
777
+ export declare const RequesterGatewayStatus: {
778
+ readonly ACTIVE: "ACTIVE";
779
+ readonly DELETED: "DELETED";
780
+ readonly ERROR: "ERROR";
781
+ readonly ISOLATED: "ISOLATED";
782
+ readonly PENDING_CREATION: "PENDING_CREATION";
783
+ readonly PENDING_DELETION: "PENDING_DELETION";
784
+ readonly PENDING_ISOLATION: "PENDING_ISOLATION";
785
+ readonly PENDING_RESTORATION: "PENDING_RESTORATION";
786
+ readonly PENDING_UPDATE: "PENDING_UPDATE";
787
+ };
788
+ /**
789
+ * @public
790
+ */
791
+ export type RequesterGatewayStatus = (typeof RequesterGatewayStatus)[keyof typeof RequesterGatewayStatus];
792
+ /**
793
+ * @public
794
+ */
795
+ export interface CreateRequesterGatewayResponse {
796
+ /**
797
+ * <p>The unique identifier of the gateway.</p>
798
+ * @public
799
+ */
800
+ gatewayId: string | undefined;
801
+ /**
802
+ * <p>The domain name of the requester gateway.</p>
803
+ * @public
804
+ */
805
+ domainName: string | undefined;
806
+ /**
807
+ * <p>The status of the request.</p>
808
+ * @public
809
+ */
810
+ status: RequesterGatewayStatus | undefined;
811
+ }
812
+ /**
813
+ * <p>Describes the configuration of an Amazon Elastic Kubernetes Service endpoint.</p>
814
+ * @public
815
+ */
816
+ export interface EksEndpointsConfiguration {
817
+ /**
818
+ * <p>The name of the endpoint resource.</p>
819
+ * @public
820
+ */
821
+ endpointsResourceName: string | undefined;
822
+ /**
823
+ * <p>The namespace of the endpoint resource.</p>
824
+ * @public
825
+ */
826
+ endpointsResourceNamespace: string | undefined;
827
+ /**
828
+ * <p>The URI of the cluster API server endpoint.</p>
829
+ * @public
830
+ */
831
+ clusterApiServerEndpointUri: string | undefined;
832
+ /**
833
+ * <p>The CA certificate chain of the cluster API server.</p>
834
+ * @public
835
+ */
836
+ clusterApiServerCaCertificateChain: string | undefined;
837
+ /**
838
+ * <p>The name of the cluster.</p>
839
+ * @public
840
+ */
841
+ clusterName: string | undefined;
842
+ /**
843
+ * <p>The role ARN for the cluster.</p>
844
+ * @public
845
+ */
846
+ roleArn: string | undefined;
847
+ }
848
+ /**
849
+ * <p>Describes the configuration of a managed endpoint.</p>
850
+ * @public
851
+ */
852
+ export type ManagedEndpointConfiguration = ManagedEndpointConfiguration.AutoScalingGroupsMember | ManagedEndpointConfiguration.EksEndpointsMember | ManagedEndpointConfiguration.$UnknownMember;
853
+ /**
854
+ * @public
855
+ */
856
+ export declare namespace ManagedEndpointConfiguration {
857
+ /**
858
+ * <p>Describes the configuration of an auto scaling group.</p>
859
+ * @public
860
+ */
861
+ interface AutoScalingGroupsMember {
862
+ autoScalingGroups: AutoScalingGroupsConfiguration;
863
+ eksEndpoints?: never;
864
+ $unknown?: never;
865
+ }
866
+ /**
867
+ * <p>Describes the configuration of an Amazon Elastic Kubernetes Service endpoint.</p>
868
+ * @public
869
+ */
870
+ interface EksEndpointsMember {
871
+ autoScalingGroups?: never;
872
+ eksEndpoints: EksEndpointsConfiguration;
873
+ $unknown?: never;
874
+ }
875
+ /**
876
+ * @public
877
+ */
878
+ interface $UnknownMember {
879
+ autoScalingGroups?: never;
880
+ eksEndpoints?: never;
881
+ $unknown: [string, any];
882
+ }
883
+ interface Visitor<T> {
884
+ autoScalingGroups: (value: AutoScalingGroupsConfiguration) => T;
885
+ eksEndpoints: (value: EksEndpointsConfiguration) => T;
886
+ _: (name: string, value: any) => T;
887
+ }
888
+ const visit: <T>(value: ManagedEndpointConfiguration, visitor: Visitor<T>) => T;
889
+ }
890
+ /**
891
+ * @public
892
+ * @enum
893
+ */
894
+ export declare const Protocol: {
895
+ readonly HTTP: "HTTP";
896
+ readonly HTTPS: "HTTPS";
897
+ };
898
+ /**
899
+ * @public
900
+ */
901
+ export type Protocol = (typeof Protocol)[keyof typeof Protocol];
902
+ /**
903
+ * <p>Describes the configuration of a trust store.</p>
904
+ * @public
905
+ */
906
+ export interface TrustStoreConfiguration {
907
+ /**
908
+ * <p>The certificate authority certificate.</p>
909
+ * @public
910
+ */
911
+ certificateAuthorityCertificates: string[] | undefined;
912
+ }
913
+ /**
914
+ * @public
915
+ */
916
+ export interface CreateResponderGatewayRequest {
917
+ /**
918
+ * <p>The unique identifier of the Virtual Private Cloud (VPC).</p>
919
+ * @public
920
+ */
921
+ vpcId: string | undefined;
922
+ /**
923
+ * <p>The unique identifiers of the subnets.</p>
924
+ * @public
925
+ */
926
+ subnetIds: string[] | undefined;
927
+ /**
928
+ * <p>The unique identifiers of the security groups.</p>
929
+ * @public
930
+ */
931
+ securityGroupIds: string[] | undefined;
932
+ /**
933
+ * <p>The domain name for the responder gateway.</p>
934
+ * @public
935
+ */
936
+ domainName?: string | undefined;
937
+ /**
938
+ * <p>The networking port to use.</p>
939
+ * @public
940
+ */
941
+ port: number | undefined;
942
+ /**
943
+ * <p>The networking protocol to use.</p>
944
+ * @public
945
+ */
946
+ protocol: Protocol | undefined;
947
+ /**
948
+ * <p>The configuration of the trust store.</p>
949
+ * @public
950
+ */
951
+ trustStoreConfiguration?: TrustStoreConfiguration | undefined;
952
+ /**
953
+ * <p>The configuration for the managed endpoint.</p>
954
+ * @public
955
+ */
956
+ managedEndpointConfiguration?: ManagedEndpointConfiguration | undefined;
957
+ /**
958
+ * <p>The unique client token.</p>
959
+ * @public
960
+ */
961
+ clientToken?: string | undefined;
962
+ /**
963
+ * <p>An optional description for the responder gateway.</p>
964
+ * @public
965
+ */
966
+ description?: string | undefined;
967
+ /**
968
+ * <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
969
+ * @public
970
+ */
971
+ tags?: Record<string, string> | undefined;
972
+ }
973
+ /**
974
+ * @public
975
+ * @enum
976
+ */
977
+ export declare const ResponderGatewayStatus: {
978
+ readonly ACTIVE: "ACTIVE";
979
+ readonly DELETED: "DELETED";
980
+ readonly ERROR: "ERROR";
981
+ readonly ISOLATED: "ISOLATED";
982
+ readonly PENDING_CREATION: "PENDING_CREATION";
983
+ readonly PENDING_DELETION: "PENDING_DELETION";
984
+ readonly PENDING_ISOLATION: "PENDING_ISOLATION";
985
+ readonly PENDING_RESTORATION: "PENDING_RESTORATION";
986
+ readonly PENDING_UPDATE: "PENDING_UPDATE";
987
+ };
988
+ /**
989
+ * @public
990
+ */
991
+ export type ResponderGatewayStatus = (typeof ResponderGatewayStatus)[keyof typeof ResponderGatewayStatus];
992
+ /**
993
+ * @public
994
+ */
995
+ export interface CreateResponderGatewayResponse {
996
+ /**
997
+ * <p>The unique identifier of the gateway.</p>
998
+ * @public
999
+ */
1000
+ gatewayId: string | undefined;
1001
+ /**
1002
+ * <p>The status of the request.</p>
1003
+ * @public
1004
+ */
1005
+ status: ResponderGatewayStatus | undefined;
1006
+ }
1007
+ /**
1008
+ * @public
1009
+ */
1010
+ export interface DeleteInboundExternalLinkRequest {
1011
+ /**
1012
+ * <p>The unique identifier of the gateway.</p>
1013
+ * @public
1014
+ */
1015
+ gatewayId: string | undefined;
1016
+ /**
1017
+ * <p>The unique identifier of the link.</p>
1018
+ * @public
1019
+ */
1020
+ linkId: string | undefined;
1021
+ }
1022
+ /**
1023
+ * @public
1024
+ */
1025
+ export interface DeleteInboundExternalLinkResponse {
1026
+ /**
1027
+ * <p>The unique identifier of the link.</p>
1028
+ * @public
1029
+ */
1030
+ linkId: string | undefined;
1031
+ /**
1032
+ * <p>The status of the request.</p>
1033
+ * @public
1034
+ */
1035
+ status: LinkStatus | undefined;
1036
+ }
1037
+ /**
1038
+ * @public
1039
+ */
1040
+ export interface DeleteLinkRequest {
1041
+ /**
1042
+ * <p>The unique identifier of the gateway.</p>
1043
+ * @public
1044
+ */
1045
+ gatewayId: string | undefined;
1046
+ /**
1047
+ * <p>The unique identifier of the link.</p>
1048
+ * @public
1049
+ */
1050
+ linkId: string | undefined;
1051
+ }
1052
+ /**
1053
+ * @public
1054
+ */
1055
+ export interface DeleteLinkResponse {
1056
+ /**
1057
+ * <p>The unique identifier of the link.</p>
1058
+ * @public
1059
+ */
1060
+ linkId: string | undefined;
1061
+ /**
1062
+ * <p>The status of the link.</p>
1063
+ * @public
1064
+ */
1065
+ status: LinkStatus | undefined;
1066
+ }
1067
+ /**
1068
+ * @public
1069
+ */
1070
+ export interface DeleteOutboundExternalLinkRequest {
1071
+ /**
1072
+ * <p>The unique identifier of the gateway.</p>
1073
+ * @public
1074
+ */
1075
+ gatewayId: string | undefined;
1076
+ /**
1077
+ * <p>The unique identifier of the link.</p>
1078
+ * @public
1079
+ */
1080
+ linkId: string | undefined;
1081
+ }
1082
+ /**
1083
+ * @public
1084
+ */
1085
+ export interface DeleteOutboundExternalLinkResponse {
1086
+ /**
1087
+ * <p>The unique identifier of the link.</p>
1088
+ * @public
1089
+ */
1090
+ linkId: string | undefined;
1091
+ /**
1092
+ * <p>The status of the request.</p>
1093
+ * @public
1094
+ */
1095
+ status: LinkStatus | undefined;
1096
+ }
1097
+ /**
1098
+ * @public
1099
+ */
1100
+ export interface DeleteRequesterGatewayRequest {
1101
+ /**
1102
+ * <p>The unique identifier of the gateway.</p>
1103
+ * @public
1104
+ */
1105
+ gatewayId: string | undefined;
1106
+ }
1107
+ /**
1108
+ * @public
1109
+ */
1110
+ export interface DeleteRequesterGatewayResponse {
1111
+ /**
1112
+ * <p>The unique identifier of the gateway.</p>
1113
+ * @public
1114
+ */
1115
+ gatewayId: string | undefined;
1116
+ /**
1117
+ * <p>The status of the request.</p>
1118
+ * @public
1119
+ */
1120
+ status: RequesterGatewayStatus | undefined;
1121
+ }
1122
+ /**
1123
+ * @public
1124
+ */
1125
+ export interface DeleteResponderGatewayRequest {
1126
+ /**
1127
+ * <p>The unique identifier of the gateway.</p>
1128
+ * @public
1129
+ */
1130
+ gatewayId: string | undefined;
1131
+ }
1132
+ /**
1133
+ * @public
1134
+ */
1135
+ export interface DeleteResponderGatewayResponse {
1136
+ /**
1137
+ * <p>The unique identifier of the gateway.</p>
1138
+ * @public
1139
+ */
1140
+ gatewayId: string | undefined;
1141
+ /**
1142
+ * <p>The status of the request.</p>
1143
+ * @public
1144
+ */
1145
+ status: ResponderGatewayStatus | undefined;
1146
+ }
1147
+ /**
1148
+ * @public
1149
+ */
1150
+ export interface GetLinkRequest {
1151
+ /**
1152
+ * <p>The unique identifier of the gateway.</p>
1153
+ * @public
1154
+ */
1155
+ gatewayId: string | undefined;
1156
+ /**
1157
+ * <p>The unique identifier of the link.</p>
1158
+ * @public
1159
+ */
1160
+ linkId: string | undefined;
1161
+ }
1162
+ /**
1163
+ * @public
1164
+ */
1165
+ export interface GetLinkResponse {
1166
+ /**
1167
+ * <p>The unique identifier of the gateway.</p>
1168
+ * @public
1169
+ */
1170
+ gatewayId: string | undefined;
1171
+ /**
1172
+ * <p>The unique identifier of the peer gateway.</p>
1173
+ * @public
1174
+ */
1175
+ peerGatewayId: string | undefined;
1176
+ /**
1177
+ * <p>The status of the link.</p>
1178
+ * @public
1179
+ */
1180
+ status: LinkStatus | undefined;
1181
+ /**
1182
+ * <p>The timestamp of when the link was created.</p>
1183
+ * @public
1184
+ */
1185
+ createdAt: Date | undefined;
1186
+ /**
1187
+ * <p>The timestamp of when the link was updated.</p>
1188
+ * @public
1189
+ */
1190
+ updatedAt: Date | undefined;
1191
+ /**
1192
+ * <p>The direction of the link.</p>
1193
+ * @public
1194
+ */
1195
+ direction?: LinkDirection | undefined;
1196
+ /**
1197
+ * <p>The configuration of flow modules.</p>
1198
+ * @public
1199
+ */
1200
+ flowModules?: ModuleConfiguration[] | undefined;
1201
+ /**
1202
+ * <p>The configuration of pending flow modules.</p>
1203
+ * @public
1204
+ */
1205
+ pendingFlowModules?: ModuleConfiguration[] | undefined;
1206
+ /**
1207
+ * <p>Attributes of the link.</p>
1208
+ * @public
1209
+ */
1210
+ attributes?: LinkAttributes | undefined;
1211
+ /**
1212
+ * <p>The unique identifier of the link.</p>
1213
+ * @public
1214
+ */
1215
+ linkId: string | undefined;
1216
+ /**
1217
+ * <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
1218
+ * @public
1219
+ */
1220
+ tags?: Record<string, string> | undefined;
1221
+ /**
1222
+ * <p>Settings for the application logs.</p>
1223
+ * @public
1224
+ */
1225
+ logSettings?: LinkLogSettings | undefined;
1226
+ }
1227
+ /**
1228
+ * @public
1229
+ */
1230
+ export interface ListLinksRequest {
1231
+ /**
1232
+ * <p>The unique identifier of the gateway.</p>
1233
+ * @public
1234
+ */
1235
+ gatewayId: string | undefined;
1236
+ /**
1237
+ * <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken error</i>.</p>
1238
+ * @public
1239
+ */
1240
+ nextToken?: string | undefined;
1241
+ /**
1242
+ * <p>The maximum number of results that are returned per call. You can use <code>nextToken</code> to obtain further pages of results.</p> <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
1243
+ * @public
1244
+ */
1245
+ maxResults?: number | undefined;
1246
+ }
1247
+ /**
1248
+ * <p>Describes a link.</p>
1249
+ * @public
1250
+ */
1251
+ export interface ListLinksResponseStructure {
1252
+ /**
1253
+ * <p>The unique identifier of the gateway.</p>
1254
+ * @public
1255
+ */
1256
+ gatewayId: string | undefined;
1257
+ /**
1258
+ * <p>The unique identifier of the peer gateway.</p>
1259
+ * @public
1260
+ */
1261
+ peerGatewayId: string | undefined;
1262
+ /**
1263
+ * <p>The status of the link.</p>
1264
+ * @public
1265
+ */
1266
+ status: LinkStatus | undefined;
1267
+ /**
1268
+ * <p>The timestamp of when the link was created.</p>
1269
+ * @public
1270
+ */
1271
+ createdAt: Date | undefined;
1272
+ /**
1273
+ * <p>The timestamp of when the link was updated.</p>
1274
+ * @public
1275
+ */
1276
+ updatedAt: Date | undefined;
1277
+ /**
1278
+ * <p>The direction of the link.</p>
1279
+ * @public
1280
+ */
1281
+ direction?: LinkDirection | undefined;
1282
+ /**
1283
+ * <p>Describes the configuration of flow modules.</p>
1284
+ * @public
1285
+ */
1286
+ flowModules?: ModuleConfiguration[] | undefined;
1287
+ /**
1288
+ * <p>Describes the configuration of pending flow modules.</p>
1289
+ * @public
1290
+ */
1291
+ pendingFlowModules?: ModuleConfiguration[] | undefined;
1292
+ /**
1293
+ * <p>Describes attributes of a link.</p>
1294
+ * @public
1295
+ */
1296
+ attributes?: LinkAttributes | undefined;
1297
+ /**
1298
+ * <p>The unique identifier of the link.</p>
1299
+ * @public
1300
+ */
1301
+ linkId: string | undefined;
1302
+ /**
1303
+ * <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
1304
+ * @public
1305
+ */
1306
+ tags?: Record<string, string> | undefined;
1307
+ }
1308
+ /**
1309
+ * @public
1310
+ */
1311
+ export interface ListLinksResponse {
1312
+ /**
1313
+ * <p>Information about created links.</p>
1314
+ * @public
1315
+ */
1316
+ links?: ListLinksResponseStructure[] | undefined;
1317
+ /**
1318
+ * <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken error</i>.</p>
1319
+ * @public
1320
+ */
1321
+ nextToken?: string | undefined;
1322
+ }
1323
+ /**
1324
+ * @public
1325
+ */
1326
+ export interface RejectLinkRequest {
1327
+ /**
1328
+ * <p>The unique identifier of the gateway.</p>
1329
+ * @public
1330
+ */
1331
+ gatewayId: string | undefined;
1332
+ /**
1333
+ * <p>The unique identifier of the link.</p>
1334
+ * @public
1335
+ */
1336
+ linkId: string | undefined;
1337
+ }
1338
+ /**
1339
+ * @public
1340
+ */
1341
+ export interface RejectLinkResponse {
1342
+ /**
1343
+ * <p>The unique identifier of the gateway.</p>
1344
+ * @public
1345
+ */
1346
+ gatewayId: string | undefined;
1347
+ /**
1348
+ * <p>The unique identifier of the peer gateway.</p>
1349
+ * @public
1350
+ */
1351
+ peerGatewayId: string | undefined;
1352
+ /**
1353
+ * <p>The status of the link.</p>
1354
+ * @public
1355
+ */
1356
+ status: LinkStatus | undefined;
1357
+ /**
1358
+ * <p>The timestamp of when the link was created.</p>
1359
+ * @public
1360
+ */
1361
+ createdAt: Date | undefined;
1362
+ /**
1363
+ * <p>The timestamp of when the link was updated.</p>
1364
+ * @public
1365
+ */
1366
+ updatedAt: Date | undefined;
1367
+ /**
1368
+ * <p>The direction of the link.</p>
1369
+ * @public
1370
+ */
1371
+ direction?: LinkDirection | undefined;
1372
+ /**
1373
+ * <p>The configuration of flow modules.</p>
1374
+ * @public
1375
+ */
1376
+ flowModules?: ModuleConfiguration[] | undefined;
1377
+ /**
1378
+ * <p>The configuration of pending flow modules.</p>
1379
+ * @public
1380
+ */
1381
+ pendingFlowModules?: ModuleConfiguration[] | undefined;
1382
+ /**
1383
+ * <p>Attributes of the link.</p>
1384
+ * @public
1385
+ */
1386
+ attributes?: LinkAttributes | undefined;
1387
+ /**
1388
+ * <p>The unique identifier of the link.</p>
1389
+ * @public
1390
+ */
1391
+ linkId: string | undefined;
1392
+ }
1393
+ /**
1394
+ * @public
1395
+ */
1396
+ export interface UpdateLinkRequest {
1397
+ /**
1398
+ * <p>The unique identifier of the gateway.</p>
1399
+ * @public
1400
+ */
1401
+ gatewayId: string | undefined;
1402
+ /**
1403
+ * <p>The unique identifier of the link.</p>
1404
+ * @public
1405
+ */
1406
+ linkId: string | undefined;
1407
+ /**
1408
+ * <p>Settings for the application logs.</p>
1409
+ * @public
1410
+ */
1411
+ logSettings?: LinkLogSettings | undefined;
1412
+ }
1413
+ /**
1414
+ * @public
1415
+ */
1416
+ export interface UpdateLinkResponse {
1417
+ /**
1418
+ * <p>The unique identifier of the link.</p>
1419
+ * @public
1420
+ */
1421
+ linkId: string | undefined;
1422
+ /**
1423
+ * <p>The status of the request.</p>
1424
+ * @public
1425
+ */
1426
+ status: LinkStatus | undefined;
1427
+ }
1428
+ /**
1429
+ * @public
1430
+ */
1431
+ export interface UpdateLinkModuleFlowRequest {
1432
+ /**
1433
+ * <p>The unique client token.</p>
1434
+ * @public
1435
+ */
1436
+ clientToken?: string | undefined;
1437
+ /**
1438
+ * <p>The unique identifier of the gateway.</p>
1439
+ * @public
1440
+ */
1441
+ gatewayId: string | undefined;
1442
+ /**
1443
+ * <p>The unique identifier of the link.</p>
1444
+ * @public
1445
+ */
1446
+ linkId: string | undefined;
1447
+ /**
1448
+ * <p>The configuration of a module.</p>
1449
+ * @public
1450
+ */
1451
+ modules: ModuleConfiguration[] | undefined;
1452
+ }
1453
+ /**
1454
+ * @public
1455
+ */
1456
+ export interface UpdateLinkModuleFlowResponse {
1457
+ /**
1458
+ * <p>The unique identifier of the gateway.</p>
1459
+ * @public
1460
+ */
1461
+ gatewayId: string | undefined;
1462
+ /**
1463
+ * <p>The unique identifier of the link.</p>
1464
+ * @public
1465
+ */
1466
+ linkId: string | undefined;
1467
+ /**
1468
+ * <p>The status of the request.</p>
1469
+ * @public
1470
+ */
1471
+ status: LinkStatus | undefined;
1472
+ }
1473
+ /**
1474
+ * @public
1475
+ */
1476
+ export interface GetInboundExternalLinkRequest {
1477
+ /**
1478
+ * <p>The unique identifier of the gateway.</p>
1479
+ * @public
1480
+ */
1481
+ gatewayId: string | undefined;
1482
+ /**
1483
+ * <p>The unique identifier of the link.</p>
1484
+ * @public
1485
+ */
1486
+ linkId: string | undefined;
1487
+ }
1488
+ /**
1489
+ * @public
1490
+ */
1491
+ export interface GetInboundExternalLinkResponse {
1492
+ /**
1493
+ * <p>The unique identifier of the gateway.</p>
1494
+ * @public
1495
+ */
1496
+ gatewayId: string | undefined;
1497
+ /**
1498
+ * <p>The unique identifier of the link.</p>
1499
+ * @public
1500
+ */
1501
+ linkId: string | undefined;
1502
+ /**
1503
+ * <p>The status of the request.</p>
1504
+ * @public
1505
+ */
1506
+ status: LinkStatus | undefined;
1507
+ /**
1508
+ * <p>The domain name.</p>
1509
+ * @public
1510
+ */
1511
+ domainName: string | undefined;
1512
+ /**
1513
+ * <p>The configuration of flow modules.</p>
1514
+ * @public
1515
+ */
1516
+ flowModules?: ModuleConfiguration[] | undefined;
1517
+ /**
1518
+ * <p>The configuration of pending flow modules.</p>
1519
+ * @public
1520
+ */
1521
+ pendingFlowModules?: ModuleConfiguration[] | undefined;
1522
+ /**
1523
+ * <p>Attributes of the link.</p>
1524
+ * @public
1525
+ */
1526
+ attributes?: LinkAttributes | undefined;
1527
+ /**
1528
+ * <p>The timestamp of when the inbound external link was created.</p>
1529
+ * @public
1530
+ */
1531
+ createdAt?: Date | undefined;
1532
+ /**
1533
+ * <p>The timestamp of when the inbound external link was updated.</p>
1534
+ * @public
1535
+ */
1536
+ updatedAt?: Date | undefined;
1537
+ /**
1538
+ * <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
1539
+ * @public
1540
+ */
1541
+ tags?: Record<string, string> | undefined;
1542
+ }
1543
+ /**
1544
+ * @public
1545
+ */
1546
+ export interface GetOutboundExternalLinkRequest {
1547
+ /**
1548
+ * <p>The unique identifier of the gateway.</p>
1549
+ * @public
1550
+ */
1551
+ gatewayId: string | undefined;
1552
+ /**
1553
+ * <p>The unique identifier of the link.</p>
1554
+ * @public
1555
+ */
1556
+ linkId: string | undefined;
1557
+ }
1558
+ /**
1559
+ * @public
1560
+ */
1561
+ export interface GetOutboundExternalLinkResponse {
1562
+ /**
1563
+ * <p>The unique identifier of the gateway.</p>
1564
+ * @public
1565
+ */
1566
+ gatewayId: string | undefined;
1567
+ /**
1568
+ * <p>The unique identifier of the link.</p>
1569
+ * @public
1570
+ */
1571
+ linkId: string | undefined;
1572
+ /**
1573
+ * <p>The status of the request.</p>
1574
+ * @public
1575
+ */
1576
+ status: LinkStatus | undefined;
1577
+ /**
1578
+ * <p>The public endpoint for the link.</p>
1579
+ * @public
1580
+ */
1581
+ publicEndpoint: string | undefined;
1582
+ /**
1583
+ * <p>The timestamp of when the outbound external link was created.</p>
1584
+ * @public
1585
+ */
1586
+ createdAt?: Date | undefined;
1587
+ /**
1588
+ * <p>The timestamp of when the outbound external link was updated.</p>
1589
+ * @public
1590
+ */
1591
+ updatedAt?: Date | undefined;
1592
+ /**
1593
+ * <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
1594
+ * @public
1595
+ */
1596
+ tags?: Record<string, string> | undefined;
1597
+ }
1598
+ /**
1599
+ * @public
1600
+ */
1601
+ export interface GetRequesterGatewayRequest {
1602
+ /**
1603
+ * <p>The unique identifier of the gateway.</p>
1604
+ * @public
1605
+ */
1606
+ gatewayId: string | undefined;
1607
+ }
1608
+ /**
1609
+ * @public
1610
+ */
1611
+ export interface GetRequesterGatewayResponse {
1612
+ /**
1613
+ * <p>The status of the request.</p>
1614
+ * @public
1615
+ */
1616
+ status: RequesterGatewayStatus | undefined;
1617
+ /**
1618
+ * <p>The domain name of the requester gateway.</p>
1619
+ * @public
1620
+ */
1621
+ domainName: string | undefined;
1622
+ /**
1623
+ * <p>The description of the requester gateway.</p>
1624
+ * @public
1625
+ */
1626
+ description?: string | undefined;
1627
+ /**
1628
+ * <p>The timestamp of when the requester gateway was created.</p>
1629
+ * @public
1630
+ */
1631
+ createdAt?: Date | undefined;
1632
+ /**
1633
+ * <p>The timestamp of when the requester gateway was updated.</p>
1634
+ * @public
1635
+ */
1636
+ updatedAt?: Date | undefined;
1637
+ /**
1638
+ * <p>The unique identifier of the Virtual Private Cloud (VPC).</p>
1639
+ * @public
1640
+ */
1641
+ vpcId: string | undefined;
1642
+ /**
1643
+ * <p>The unique identifiers of the subnets.</p>
1644
+ * @public
1645
+ */
1646
+ subnetIds: string[] | undefined;
1647
+ /**
1648
+ * <p>The unique identifiers of the security groups.</p>
1649
+ * @public
1650
+ */
1651
+ securityGroupIds: string[] | undefined;
1652
+ /**
1653
+ * <p>The unique identifier of the gateway.</p>
1654
+ * @public
1655
+ */
1656
+ gatewayId: string | undefined;
1657
+ /**
1658
+ * <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
1659
+ * @public
1660
+ */
1661
+ tags?: Record<string, string> | undefined;
1662
+ /**
1663
+ * <p>The count of active links for the requester gateway.</p>
1664
+ * @public
1665
+ */
1666
+ activeLinksCount?: number | undefined;
1667
+ /**
1668
+ * <p>The total count of links for the requester gateway.</p>
1669
+ * @public
1670
+ */
1671
+ totalLinksCount?: number | undefined;
1672
+ }
1673
+ /**
1674
+ * @public
1675
+ */
1676
+ export interface GetResponderGatewayRequest {
1677
+ /**
1678
+ * <p>The unique identifier of the gateway.</p>
1679
+ * @public
1680
+ */
1681
+ gatewayId: string | undefined;
1682
+ }
1683
+ /**
1684
+ * @public
1685
+ */
1686
+ export interface GetResponderGatewayResponse {
1687
+ /**
1688
+ * <p>The unique identifier of the Virtual Private Cloud (VPC).</p>
1689
+ * @public
1690
+ */
1691
+ vpcId: string | undefined;
1692
+ /**
1693
+ * <p>The unique identifiers of the subnets.</p>
1694
+ * @public
1695
+ */
1696
+ subnetIds: string[] | undefined;
1697
+ /**
1698
+ * <p>The unique identifiers of the security groups.</p>
1699
+ * @public
1700
+ */
1701
+ securityGroupIds: string[] | undefined;
1702
+ /**
1703
+ * <p>The status of the request.</p>
1704
+ * @public
1705
+ */
1706
+ status: ResponderGatewayStatus | undefined;
1707
+ /**
1708
+ * <p>The description of the responder gateway.</p>
1709
+ * @public
1710
+ */
1711
+ description?: string | undefined;
1712
+ /**
1713
+ * <p>The timestamp of when the responder gateway was created.</p>
1714
+ * @public
1715
+ */
1716
+ createdAt?: Date | undefined;
1717
+ /**
1718
+ * <p>The timestamp of when the responder gateway was updated.</p>
1719
+ * @public
1720
+ */
1721
+ updatedAt?: Date | undefined;
1722
+ /**
1723
+ * <p>The domain name of the responder gateway.</p>
1724
+ * @public
1725
+ */
1726
+ domainName?: string | undefined;
1727
+ /**
1728
+ * <p>The networking port.</p>
1729
+ * @public
1730
+ */
1731
+ port: number | undefined;
1732
+ /**
1733
+ * <p>The networking protocol.</p>
1734
+ * @public
1735
+ */
1736
+ protocol: Protocol | undefined;
1737
+ /**
1738
+ * <p>The configuration of the trust store.</p>
1739
+ * @public
1740
+ */
1741
+ trustStoreConfiguration?: TrustStoreConfiguration | undefined;
1742
+ /**
1743
+ * <p>The configuration of the managed endpoint.</p>
1744
+ * @public
1745
+ */
1746
+ managedEndpointConfiguration?: ManagedEndpointConfiguration | undefined;
1747
+ /**
1748
+ * <p>The unique identifier of the gateway.</p>
1749
+ * @public
1750
+ */
1751
+ gatewayId: string | undefined;
1752
+ /**
1753
+ * <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
1754
+ * @public
1755
+ */
1756
+ tags?: Record<string, string> | undefined;
1757
+ /**
1758
+ * <p>The count of active links for the responder gateway.</p>
1759
+ * @public
1760
+ */
1761
+ activeLinksCount?: number | undefined;
1762
+ /**
1763
+ * <p>The total count of links for the responder gateway.</p>
1764
+ * @public
1765
+ */
1766
+ totalLinksCount?: number | undefined;
1767
+ /**
1768
+ * <p>The count of inbound links for the responder gateway.</p>
1769
+ * @public
1770
+ */
1771
+ inboundLinksCount?: number | undefined;
1772
+ }
1773
+ /**
1774
+ * @public
1775
+ */
1776
+ export interface ListRequesterGatewaysRequest {
1777
+ /**
1778
+ * <p>The maximum number of results that are returned per call. You can use <code>nextToken</code> to obtain further pages of results.</p> <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
1779
+ * @public
1780
+ */
1781
+ maxResults?: number | undefined;
1782
+ /**
1783
+ * <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken error</i>.</p>
1784
+ * @public
1785
+ */
1786
+ nextToken?: string | undefined;
1787
+ }
1788
+ /**
1789
+ * @public
1790
+ */
1791
+ export interface ListRequesterGatewaysResponse {
1792
+ /**
1793
+ * <p>The unique identifier of the gateways.</p>
1794
+ * @public
1795
+ */
1796
+ gatewayIds?: string[] | undefined;
1797
+ /**
1798
+ * <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken error</i>.</p>
1799
+ * @public
1800
+ */
1801
+ nextToken?: string | undefined;
1802
+ }
1803
+ /**
1804
+ * @public
1805
+ */
1806
+ export interface ListResponderGatewaysRequest {
1807
+ /**
1808
+ * <p>The maximum number of results that are returned per call. You can use <code>nextToken</code> to obtain further pages of results.</p> <p>This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.</p>
1809
+ * @public
1810
+ */
1811
+ maxResults?: number | undefined;
1812
+ /**
1813
+ * <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken error</i>.</p>
1814
+ * @public
1815
+ */
1816
+ nextToken?: string | undefined;
1817
+ }
1818
+ /**
1819
+ * @public
1820
+ */
1821
+ export interface ListResponderGatewaysResponse {
1822
+ /**
1823
+ * <p>The unique identifier of the gateways.</p>
1824
+ * @public
1825
+ */
1826
+ gatewayIds?: string[] | undefined;
1827
+ /**
1828
+ * <p>If <code>nextToken</code> is returned, there are more results available. The value of <code>nextToken</code> is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an <i>HTTP 400 InvalidToken error</i>.</p>
1829
+ * @public
1830
+ */
1831
+ nextToken?: string | undefined;
1832
+ }
1833
+ /**
1834
+ * @public
1835
+ */
1836
+ export interface ListTagsForResourceRequest {
1837
+ /**
1838
+ * <p>The Amazon Resource Name (ARN) of the resource for which you want to retrieve tags.</p>
1839
+ * @public
1840
+ */
1841
+ resourceArn: string | undefined;
1842
+ }
1843
+ /**
1844
+ * @public
1845
+ */
1846
+ export interface ListTagsForResourceResponse {
1847
+ /**
1848
+ * <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
1849
+ * @public
1850
+ */
1851
+ tags?: Record<string, string> | undefined;
1852
+ }
1853
+ /**
1854
+ * @public
1855
+ */
1856
+ export interface UpdateRequesterGatewayRequest {
1857
+ /**
1858
+ * <p>The unique client token.</p>
1859
+ * @public
1860
+ */
1861
+ clientToken?: string | undefined;
1862
+ /**
1863
+ * <p>The unique identifier of the gateway.</p>
1864
+ * @public
1865
+ */
1866
+ gatewayId: string | undefined;
1867
+ /**
1868
+ * <p>An optional description for the requester gateway.</p>
1869
+ * @public
1870
+ */
1871
+ description?: string | undefined;
1872
+ }
1873
+ /**
1874
+ * @public
1875
+ */
1876
+ export interface UpdateRequesterGatewayResponse {
1877
+ /**
1878
+ * <p>The unique identifier of the gateway.</p>
1879
+ * @public
1880
+ */
1881
+ gatewayId: string | undefined;
1882
+ /**
1883
+ * <p>The status of the request.</p>
1884
+ * @public
1885
+ */
1886
+ status: RequesterGatewayStatus | undefined;
1887
+ }
1888
+ /**
1889
+ * @public
1890
+ */
1891
+ export interface UpdateResponderGatewayRequest {
1892
+ /**
1893
+ * <p>The domain name for the responder gateway.</p>
1894
+ * @public
1895
+ */
1896
+ domainName?: string | undefined;
1897
+ /**
1898
+ * <p>The networking port to use.</p>
1899
+ * @public
1900
+ */
1901
+ port: number | undefined;
1902
+ /**
1903
+ * <p>The networking protocol to use.</p>
1904
+ * @public
1905
+ */
1906
+ protocol: Protocol | undefined;
1907
+ /**
1908
+ * <p>The configuration of the trust store.</p>
1909
+ * @public
1910
+ */
1911
+ trustStoreConfiguration?: TrustStoreConfiguration | undefined;
1912
+ /**
1913
+ * <p>The configuration for the managed endpoint.</p>
1914
+ * @public
1915
+ */
1916
+ managedEndpointConfiguration?: ManagedEndpointConfiguration | undefined;
1917
+ /**
1918
+ * <p>The unique client token.</p>
1919
+ * @public
1920
+ */
1921
+ clientToken?: string | undefined;
1922
+ /**
1923
+ * <p>The unique identifier of the gateway.</p>
1924
+ * @public
1925
+ */
1926
+ gatewayId: string | undefined;
1927
+ /**
1928
+ * <p>An optional description for the responder gateway.</p>
1929
+ * @public
1930
+ */
1931
+ description?: string | undefined;
1932
+ }
1933
+ /**
1934
+ * @public
1935
+ */
1936
+ export interface UpdateResponderGatewayResponse {
1937
+ /**
1938
+ * <p>The unique identifier of the gateway.</p>
1939
+ * @public
1940
+ */
1941
+ gatewayId: string | undefined;
1942
+ /**
1943
+ * <p>The status of the request.</p>
1944
+ * @public
1945
+ */
1946
+ status: ResponderGatewayStatus | undefined;
1947
+ }
1948
+ /**
1949
+ * @public
1950
+ */
1951
+ export interface TagResourceRequest {
1952
+ /**
1953
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to tag.</p>
1954
+ * @public
1955
+ */
1956
+ resourceArn: string | undefined;
1957
+ /**
1958
+ * <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
1959
+ * @public
1960
+ */
1961
+ tags: Record<string, string> | undefined;
1962
+ }
1963
+ /**
1964
+ * @public
1965
+ */
1966
+ export interface TagResourceResponse {
1967
+ }
1968
+ /**
1969
+ * @public
1970
+ */
1971
+ export interface UntagResourceRequest {
1972
+ /**
1973
+ * <p>The Amazon Resource Name (ARN) of the resource that you want to untag.</p>
1974
+ * @public
1975
+ */
1976
+ resourceArn: string | undefined;
1977
+ /**
1978
+ * <p>The keys of the key-value pairs for the tag or tags you want to remove from the specified resource.</p>
1979
+ * @public
1980
+ */
1981
+ tagKeys: string[] | undefined;
1982
+ }
1983
+ /**
1984
+ * @public
1985
+ */
1986
+ export interface UntagResourceResponse {
1987
+ }
1988
+ /**
1989
+ * @internal
1990
+ */
1991
+ export declare const EksEndpointsConfigurationFilterSensitiveLog: (obj: EksEndpointsConfiguration) => any;
1992
+ /**
1993
+ * @internal
1994
+ */
1995
+ export declare const ManagedEndpointConfigurationFilterSensitiveLog: (obj: ManagedEndpointConfiguration) => any;
1996
+ /**
1997
+ * @internal
1998
+ */
1999
+ export declare const TrustStoreConfigurationFilterSensitiveLog: (obj: TrustStoreConfiguration) => any;
2000
+ /**
2001
+ * @internal
2002
+ */
2003
+ export declare const CreateResponderGatewayRequestFilterSensitiveLog: (obj: CreateResponderGatewayRequest) => any;
2004
+ /**
2005
+ * @internal
2006
+ */
2007
+ export declare const GetResponderGatewayResponseFilterSensitiveLog: (obj: GetResponderGatewayResponse) => any;
2008
+ /**
2009
+ * @internal
2010
+ */
2011
+ export declare const UpdateResponderGatewayRequestFilterSensitiveLog: (obj: UpdateResponderGatewayRequest) => any;