@aws-sdk/client-rtbfabric 3.1075.0 → 3.1077.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.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultRTBFabricHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AcceptLink$, AssociateCertificate$, CreateInboundExternalLink$, CreateLink$, CreateLinkRoutingRule$, CreateOutboundExternalLink$, CreateRequesterGateway$, CreateResponderGateway$, DeleteInboundExternalLink$, DeleteLink$, DeleteLinkRoutingRule$, DeleteOutboundExternalLink$, DeleteRequesterGateway$, DeleteResponderGateway$, DisassociateCertificate$, GetCertificateAssociation$, GetInboundExternalLink$, GetLink$, GetLinkRoutingRule$, GetOutboundExternalLink$, GetRequesterGateway$, GetResponderGateway$, ListCertificateAssociations$, ListLinkRoutingRules$, ListLinks$, ListRequesterGateways$, ListResponderGateways$, ListTagsForResource$, RejectLink$, TagResource$, UntagResource$, UpdateLink$, UpdateLinkModuleFlow$, UpdateLinkRoutingRule$, UpdateRequesterGateway$, UpdateResponderGateway$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { RTBFabricServiceException } = require("./models/RTBFabricServiceException");
18
- exports.RTBFabricServiceException = RTBFabricServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultRTBFabricHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "rtbfabric",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultRTBFabricHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1163 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://rtbfabric-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://rtbfabric-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://rtbfabric.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://rtbfabric.{Region}.{PartitionResult#dnsSuffix}", i],
99
+ [a, "Invalid Configuration: Missing Region"]
100
+ ]
101
+ };
102
+ const root = 2;
103
+ const r = 100_000_000;
104
+ const nodes = new Int32Array([
105
+ -1, 1, -1,
106
+ 0, 12, 3,
107
+ 1, 4, r + 11,
108
+ 2, 5, r + 11,
109
+ 3, 8, 6,
110
+ 4, 7, r + 10,
111
+ 5, r + 8, r + 9,
112
+ 4, 10, 9,
113
+ 6, r + 6, r + 7,
114
+ 5, 11, r + 5,
115
+ 6, r + 4, r + 5,
116
+ 3, r + 1, 13,
117
+ 4, r + 2, r + 3,
118
+ ]);
119
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
120
+
121
+ const cache = new EndpointCache({
122
+ size: 50,
123
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
124
+ });
125
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
126
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
127
+ endpointParams: endpointParams,
128
+ logger: context.logger,
129
+ }));
130
+ };
131
+ customEndpointFunctions.aws = awsEndpointFunctions;
132
+
133
+ class RTBFabricServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, RTBFabricServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccessDeniedException extends RTBFabricServiceException {
141
+ name = "AccessDeniedException";
142
+ $fault = "client";
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ }
151
+ }
152
+ class ConflictException extends RTBFabricServiceException {
153
+ name = "ConflictException";
154
+ $fault = "client";
155
+ constructor(opts) {
156
+ super({
157
+ name: "ConflictException",
158
+ $fault: "client",
159
+ ...opts,
160
+ });
161
+ Object.setPrototypeOf(this, ConflictException.prototype);
162
+ }
163
+ }
164
+ class InternalServerException extends RTBFabricServiceException {
165
+ name = "InternalServerException";
166
+ $fault = "server";
167
+ $retryable = {};
168
+ constructor(opts) {
169
+ super({
170
+ name: "InternalServerException",
171
+ $fault: "server",
172
+ ...opts,
173
+ });
174
+ Object.setPrototypeOf(this, InternalServerException.prototype);
175
+ }
176
+ }
177
+ class ResourceNotFoundException extends RTBFabricServiceException {
178
+ name = "ResourceNotFoundException";
179
+ $fault = "client";
180
+ constructor(opts) {
181
+ super({
182
+ name: "ResourceNotFoundException",
183
+ $fault: "client",
184
+ ...opts,
185
+ });
186
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
187
+ }
188
+ }
189
+ class ThrottlingException extends RTBFabricServiceException {
190
+ name = "ThrottlingException";
191
+ $fault = "client";
192
+ $retryable = {};
193
+ constructor(opts) {
194
+ super({
195
+ name: "ThrottlingException",
196
+ $fault: "client",
197
+ ...opts,
198
+ });
199
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
200
+ }
201
+ }
202
+ class ValidationException extends RTBFabricServiceException {
203
+ name = "ValidationException";
204
+ $fault = "client";
205
+ constructor(opts) {
206
+ super({
207
+ name: "ValidationException",
208
+ $fault: "client",
209
+ ...opts,
210
+ });
211
+ Object.setPrototypeOf(this, ValidationException.prototype);
212
+ }
213
+ }
214
+ class ServiceQuotaExceededException extends RTBFabricServiceException {
215
+ name = "ServiceQuotaExceededException";
216
+ $fault = "client";
217
+ constructor(opts) {
218
+ super({
219
+ name: "ServiceQuotaExceededException",
220
+ $fault: "client",
221
+ ...opts,
222
+ });
223
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
224
+ }
225
+ }
226
+
227
+ const _A = "Action";
228
+ const _AC = "AssociateCertificate";
229
+ const _ACR = "AssociateCertificateRequest";
230
+ const _ACRs = "AssociateCertificateResponse";
231
+ const _ADE = "AccessDeniedException";
232
+ const _AL = "AcceptLink";
233
+ const _ALR = "AcceptLinkRequest";
234
+ const _ALRc = "AcceptLinkResponse";
235
+ const _ASGC = "AutoScalingGroupsConfiguration";
236
+ const _BECC = "Base64EncodedCertificateChain";
237
+ const _CAC = "CertificateAuthorityCertificates";
238
+ const _CAS = "CertificateAssociationSummary";
239
+ const _CASL = "CertificateAssociationSummaryList";
240
+ const _CE = "ConflictException";
241
+ const _CIEL = "CreateInboundExternalLink";
242
+ const _CIELR = "CreateInboundExternalLinkRequest";
243
+ const _CIELRr = "CreateInboundExternalLinkResponse";
244
+ const _CL = "CreateLink";
245
+ const _CLR = "CreateLinkRequest";
246
+ const _CLRR = "CreateLinkRoutingRule";
247
+ const _CLRRR = "CreateLinkRoutingRuleRequest";
248
+ const _CLRRRr = "CreateLinkRoutingRuleResponse";
249
+ const _CLRr = "CreateLinkResponse";
250
+ const _COEL = "CreateOutboundExternalLink";
251
+ const _COELR = "CreateOutboundExternalLinkRequest";
252
+ const _COELRr = "CreateOutboundExternalLinkResponse";
253
+ const _CRG = "CreateRequesterGateway";
254
+ const _CRGR = "CreateRequesterGatewayRequest";
255
+ const _CRGRr = "CreateRequesterGatewayResponse";
256
+ const _CRGRre = "CreateResponderGatewayRequest";
257
+ const _CRGRrea = "CreateResponderGatewayResponse";
258
+ const _CRGr = "CreateResponderGateway";
259
+ const _DC = "DisassociateCertificate";
260
+ const _DCR = "DisassociateCertificateRequest";
261
+ const _DCRi = "DisassociateCertificateResponse";
262
+ const _DIEL = "DeleteInboundExternalLink";
263
+ const _DIELR = "DeleteInboundExternalLinkRequest";
264
+ const _DIELRe = "DeleteInboundExternalLinkResponse";
265
+ const _DL = "DeleteLink";
266
+ const _DLR = "DeleteLinkRequest";
267
+ const _DLRR = "DeleteLinkRoutingRule";
268
+ const _DLRRR = "DeleteLinkRoutingRuleRequest";
269
+ const _DLRRRe = "DeleteLinkRoutingRuleResponse";
270
+ const _DLRe = "DeleteLinkResponse";
271
+ const _DOEL = "DeleteOutboundExternalLink";
272
+ const _DOELR = "DeleteOutboundExternalLinkRequest";
273
+ const _DOELRe = "DeleteOutboundExternalLinkResponse";
274
+ const _DRG = "DeleteRequesterGateway";
275
+ const _DRGR = "DeleteRequesterGatewayRequest";
276
+ const _DRGRe = "DeleteRequesterGatewayResponse";
277
+ const _DRGRel = "DeleteResponderGatewayRequest";
278
+ const _DRGRele = "DeleteResponderGatewayResponse";
279
+ const _DRGe = "DeleteResponderGateway";
280
+ const _EEC = "EksEndpointsConfiguration";
281
+ const _F = "Filter";
282
+ const _FC = "FilterCriterion";
283
+ const _FCi = "FilterConfiguration";
284
+ const _FCil = "FilterCriteria";
285
+ const _GCA = "GetCertificateAssociation";
286
+ const _GCAR = "GetCertificateAssociationRequest";
287
+ const _GCARe = "GetCertificateAssociationResponse";
288
+ const _GIEL = "GetInboundExternalLink";
289
+ const _GIELR = "GetInboundExternalLinkRequest";
290
+ const _GIELRe = "GetInboundExternalLinkResponse";
291
+ const _GL = "GetLink";
292
+ const _GLR = "GetLinkRequest";
293
+ const _GLRR = "GetLinkRoutingRule";
294
+ const _GLRRR = "GetLinkRoutingRuleRequest";
295
+ const _GLRRRe = "GetLinkRoutingRuleResponse";
296
+ const _GLRe = "GetLinkResponse";
297
+ const _GOEL = "GetOutboundExternalLink";
298
+ const _GOELR = "GetOutboundExternalLinkRequest";
299
+ const _GOELRe = "GetOutboundExternalLinkResponse";
300
+ const _GRG = "GetRequesterGateway";
301
+ const _GRGR = "GetRequesterGatewayRequest";
302
+ const _GRGRe = "GetRequesterGatewayResponse";
303
+ const _GRGRet = "GetResponderGatewayRequest";
304
+ const _GRGRete = "GetResponderGatewayResponse";
305
+ const _GRGe = "GetResponderGateway";
306
+ const _HCC = "HealthCheckConfig";
307
+ const _HTA = "HeaderTagAction";
308
+ const _ISE = "InternalServerException";
309
+ const _LA = "LinkAttributes";
310
+ const _LALC = "LinkApplicationLogConfiguration";
311
+ const _LALS = "LinkApplicationLogSampling";
312
+ const _LC = "ListenerConfig";
313
+ const _LCA = "ListCertificateAssociations";
314
+ const _LCAR = "ListCertificateAssociationsRequest";
315
+ const _LCARi = "ListCertificateAssociationsResponse";
316
+ const _LL = "LinkList";
317
+ const _LLR = "ListLinksRequest";
318
+ const _LLRR = "ListLinkRoutingRules";
319
+ const _LLRRR = "ListLinkRoutingRulesRequest";
320
+ const _LLRRRi = "ListLinkRoutingRulesResponse";
321
+ const _LLRS = "ListLinksResponseStructure";
322
+ const _LLRi = "ListLinksResponse";
323
+ const _LLS = "LinkLogSettings";
324
+ const _LLi = "ListLinks";
325
+ const _LRG = "ListRequesterGateways";
326
+ const _LRGR = "ListRequesterGatewaysRequest";
327
+ const _LRGRi = "ListRequesterGatewaysResponse";
328
+ const _LRGRis = "ListResponderGatewaysRequest";
329
+ const _LRGRist = "ListResponderGatewaysResponse";
330
+ const _LRGi = "ListResponderGateways";
331
+ const _LRRL = "LinkRoutingRuleList";
332
+ const _LRRS = "LinkRoutingRuleSummary";
333
+ const _LTFR = "ListTagsForResource";
334
+ const _LTFRR = "ListTagsForResourceRequest";
335
+ const _LTFRRi = "ListTagsForResourceResponse";
336
+ const _MC = "ModuleConfiguration";
337
+ const _MCL = "ModuleConfigurationList";
338
+ const _MEC = "ManagedEndpointConfiguration";
339
+ const _MP = "ModuleParameters";
340
+ const _NBA = "NoBidAction";
341
+ const _NBMP = "NoBidModuleParameters";
342
+ const _ORAMP = "OpenRtbAttributeModuleParameters";
343
+ const _QSKVP = "QueryStringKeyValuePair";
344
+ const _RC = "RuleCondition";
345
+ const _REM = "ResponderErrorMasking";
346
+ const _REMFHC = "ResponderErrorMaskingForHttpCode";
347
+ const _RL = "RejectLink";
348
+ const _RLMP = "RateLimiterModuleParameters";
349
+ const _RLR = "RejectLinkRequest";
350
+ const _RLRe = "RejectLinkResponse";
351
+ const _RNFE = "ResourceNotFoundException";
352
+ const _SQEE = "ServiceQuotaExceededException";
353
+ const _TE = "ThrottlingException";
354
+ const _TR = "TagResource";
355
+ const _TRR = "TagResourceRequest";
356
+ const _TRRa = "TagResourceResponse";
357
+ const _TSC = "TrustStoreConfiguration";
358
+ const _UL = "UpdateLink";
359
+ const _ULMF = "UpdateLinkModuleFlow";
360
+ const _ULMFR = "UpdateLinkModuleFlowRequest";
361
+ const _ULMFRp = "UpdateLinkModuleFlowResponse";
362
+ const _ULR = "UpdateLinkRequest";
363
+ const _ULRR = "UpdateLinkRoutingRule";
364
+ const _ULRRR = "UpdateLinkRoutingRuleRequest";
365
+ const _ULRRRp = "UpdateLinkRoutingRuleResponse";
366
+ const _ULRp = "UpdateLinkResponse";
367
+ const _UR = "UntagResource";
368
+ const _URG = "UpdateRequesterGateway";
369
+ const _URGR = "UpdateRequesterGatewayRequest";
370
+ const _URGRp = "UpdateRequesterGatewayResponse";
371
+ const _URGRpd = "UpdateResponderGatewayRequest";
372
+ const _URGRpda = "UpdateResponderGatewayResponse";
373
+ const _URGp = "UpdateResponderGateway";
374
+ const _URR = "UntagResourceRequest";
375
+ const _URRn = "UntagResourceResponse";
376
+ const _VE = "ValidationException";
377
+ const _a = "attributes";
378
+ const _aA = "associatedAt";
379
+ const _aCA = "acmCertificateArn";
380
+ const _aL = "applicationLogs";
381
+ const _aLC = "activeLinksCount";
382
+ const _aSG = "autoScalingGroups";
383
+ const _aSGN = "autoScalingGroupNames";
384
+ const _ac = "action";
385
+ const _c = "client";
386
+ const _cA = "createdAt";
387
+ const _cAC = "certificateAuthorityCertificates";
388
+ const _cASCCC = "clusterApiServerCaCertificateChain";
389
+ const _cASEU = "clusterApiServerEndpointUri";
390
+ const _cAe = "certificateAssociations";
391
+ const _cN = "clusterName";
392
+ const _cPI = "customerProvidedId";
393
+ const _cT = "connectivityType";
394
+ const _cTl = "clientToken";
395
+ const _co = "conditions";
396
+ const _cr = "criteria";
397
+ const _d = "direction";
398
+ const _dN = "domainName";
399
+ const _dO = "dependsOn";
400
+ const _de = "description";
401
+ const _e = "error";
402
+ const _eE = "eksEndpoints";
403
+ const _eIE = "externalInboundEndpoint";
404
+ const _eL = "errorLog";
405
+ const _eRN = "endpointsResourceName";
406
+ const _eRNn = "endpointsResourceNamespace";
407
+ const _fC = "filterConfiguration";
408
+ const _fL = "filterLog";
409
+ const _fM = "flowModules";
410
+ const _fT = "filterType";
411
+ const _gI = "gatewayId";
412
+ const _gIa = "gatewayIds";
413
+ const _gT = "gatewayType";
414
+ const _h = "http";
415
+ const _hC = "httpCode";
416
+ const _hCC = "healthCheckConfig";
417
+ const _hE = "httpError";
418
+ const _hH = "hostHeader";
419
+ const _hHW = "hostHeaderWildcard";
420
+ const _hP = "holdbackPercentage";
421
+ const _hQ = "httpQuery";
422
+ const _hRA = "httpResponderAllowed";
423
+ const _hT = "headerTag";
424
+ const _hTC = "healthyThresholdCount";
425
+ const _iLC = "inboundLinksCount";
426
+ const _iS = "intervalSeconds";
427
+ const _k = "key";
428
+ const _l = "links";
429
+ const _lC = "listenerConfig";
430
+ const _lI = "linkId";
431
+ const _lRC = "linksRequestedCount";
432
+ const _lS = "logSettings";
433
+ const _lT = "loggingTypes";
434
+ const _m = "message";
435
+ const _mEC = "managedEndpointConfiguration";
436
+ const _mP = "moduleParameters";
437
+ const _mR = "maxResults";
438
+ const _mo = "modules";
439
+ const _n = "name";
440
+ const _nB = "noBid";
441
+ const _nBRC = "noBidReasonCode";
442
+ const _nT = "nextToken";
443
+ const _oRA = "openRtbAttribute";
444
+ const _p = "priority";
445
+ const _pE = "publicEndpoint";
446
+ const _pEa = "pathExact";
447
+ const _pFM = "pendingFlowModules";
448
+ const _pGI = "peerGatewayId";
449
+ const _pP = "pathPrefix";
450
+ const _pTP = "passThroughPercentage";
451
+ const _pa = "path";
452
+ const _po = "port";
453
+ const _pr = "protocol";
454
+ const _pro = "protocols";
455
+ const _qSE = "queryStringEquals";
456
+ const _qSEu = "queryStringExists";
457
+ const _r = "rules";
458
+ const _rA = "roleArn";
459
+ const _rAe = "resourceArn";
460
+ const _rC = "reasonCode";
461
+ const _rEM = "responderErrorMasking";
462
+ const _rI = "ruleId";
463
+ const _rL = "rateLimiter";
464
+ const _rLP = "responseLoggingPercentage";
465
+ const _re = "reason";
466
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.rtbfabric";
467
+ const _sCM = "statusCodeMatcher";
468
+ const _sGI = "securityGroupIds";
469
+ const _sI = "subnetIds";
470
+ const _sa = "sampling";
471
+ const _se = "server";
472
+ const _st = "status";
473
+ const _t = "tags";
474
+ const _tIM = "timeoutInMillis";
475
+ const _tK = "tagKeys";
476
+ const _tLC = "totalLinksCount";
477
+ const _tM = "timeoutMs";
478
+ const _tSC = "trustStoreConfiguration";
479
+ const _tp = "tps";
480
+ const _uA = "updatedAt";
481
+ const _uTC = "unhealthyThresholdCount";
482
+ const _v = "values";
483
+ const _vI = "vpcId";
484
+ const _va = "value";
485
+ const _ve = "version";
486
+ const n0 = "com.amazonaws.rtbfabric";
487
+ const _s_registry = TypeRegistry.for(_s);
488
+ var RTBFabricServiceException$ = [-3, _s, "RTBFabricServiceException", 0, [], []];
489
+ _s_registry.registerError(RTBFabricServiceException$, RTBFabricServiceException);
490
+ const n0_registry = TypeRegistry.for(n0);
491
+ var AccessDeniedException$ = [-3, n0, _ADE,
492
+ { [_e]: _c, [_hE]: 403 },
493
+ [_m],
494
+ [0], 1
495
+ ];
496
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
497
+ var ConflictException$ = [-3, n0, _CE,
498
+ { [_e]: _c, [_hE]: 409 },
499
+ [_m],
500
+ [0], 1
501
+ ];
502
+ n0_registry.registerError(ConflictException$, ConflictException);
503
+ var InternalServerException$ = [-3, n0, _ISE,
504
+ { [_e]: _se, [_hE]: 500 },
505
+ [_m],
506
+ [0], 1
507
+ ];
508
+ n0_registry.registerError(InternalServerException$, InternalServerException);
509
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
510
+ { [_e]: _c, [_hE]: 404 },
511
+ [_m],
512
+ [0], 1
513
+ ];
514
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
515
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
516
+ { [_e]: _c, [_hE]: 402 },
517
+ [_m],
518
+ [0], 1
519
+ ];
520
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
521
+ var ThrottlingException$ = [-3, n0, _TE,
522
+ { [_e]: _c, [_hE]: 429 },
523
+ [_m],
524
+ [0], 1
525
+ ];
526
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
527
+ var ValidationException$ = [-3, n0, _VE,
528
+ { [_e]: _c, [_hE]: 400 },
529
+ [_m],
530
+ [0], 1
531
+ ];
532
+ n0_registry.registerError(ValidationException$, ValidationException);
533
+ const errorTypeRegistries = [
534
+ _s_registry,
535
+ n0_registry,
536
+ ];
537
+ var Base64EncodedCertificateChain = [0, n0, _BECC, 8, 0];
538
+ var AcceptLinkRequest$ = [3, n0, _ALR,
539
+ 0,
540
+ [_gI, _lI, _lS, _a, _tIM],
541
+ [[0, 1], [0, 1], () => LinkLogSettings$, () => LinkAttributes$, 1], 3
542
+ ];
543
+ var AcceptLinkResponse$ = [3, n0, _ALRc,
544
+ 0,
545
+ [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT],
546
+ [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0], 6
547
+ ];
548
+ var AssociateCertificateRequest$ = [3, n0, _ACR,
549
+ 0,
550
+ [_gI, _aCA, _cTl],
551
+ [[0, 1], 0, [0, 4]], 2
552
+ ];
553
+ var AssociateCertificateResponse$ = [3, n0, _ACRs,
554
+ 0,
555
+ [_gI, _aCA, _st],
556
+ [0, 0, 0], 3
557
+ ];
558
+ var AutoScalingGroupsConfiguration$ = [3, n0, _ASGC,
559
+ 0,
560
+ [_aSGN, _rA, _hCC],
561
+ [64 | 0, 0, () => HealthCheckConfig$], 2
562
+ ];
563
+ var CertificateAssociationSummary$ = [3, n0, _CAS,
564
+ 0,
565
+ [_aCA, _st, _aA, _uA],
566
+ [0, 0, 4, 4], 2
567
+ ];
568
+ var CreateInboundExternalLinkRequest$ = [3, n0, _CIELR,
569
+ 0,
570
+ [_gI, _lS, _cTl, _a, _t],
571
+ [[0, 1], () => LinkLogSettings$, [0, 4], () => LinkAttributes$, 128 | 0], 2
572
+ ];
573
+ var CreateInboundExternalLinkResponse$ = [3, n0, _CIELRr,
574
+ 0,
575
+ [_gI, _lI, _st, _dN],
576
+ [0, 0, 0, 0], 4
577
+ ];
578
+ var CreateLinkRequest$ = [3, n0, _CLR,
579
+ 0,
580
+ [_gI, _pGI, _lS, _a, _hRA, _t, _tIM],
581
+ [[0, 1], 0, () => LinkLogSettings$, () => LinkAttributes$, 2, 128 | 0, 1], 3
582
+ ];
583
+ var CreateLinkResponse$ = [3, n0, _CLRr,
584
+ 0,
585
+ [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _cPI],
586
+ [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0, 0], 6
587
+ ];
588
+ var CreateLinkRoutingRuleRequest$ = [3, n0, _CLRRR,
589
+ 0,
590
+ [_gI, _lI, _p, _co, _cTl, _t],
591
+ [[0, 1], [0, 1], 1, () => RuleCondition$, [0, 4], 128 | 0], 4
592
+ ];
593
+ var CreateLinkRoutingRuleResponse$ = [3, n0, _CLRRRr,
594
+ 0,
595
+ [_rI, _st, _cA],
596
+ [0, 0, 4], 3
597
+ ];
598
+ var CreateOutboundExternalLinkRequest$ = [3, n0, _COELR,
599
+ 0,
600
+ [_gI, _pE, _lS, _cTl, _a, _t],
601
+ [[0, 1], 0, () => LinkLogSettings$, [0, 4], () => LinkAttributes$, 128 | 0], 3
602
+ ];
603
+ var CreateOutboundExternalLinkResponse$ = [3, n0, _COELRr,
604
+ 0,
605
+ [_gI, _lI, _st],
606
+ [0, 0, 0], 3
607
+ ];
608
+ var CreateRequesterGatewayRequest$ = [3, n0, _CRGR,
609
+ 0,
610
+ [_vI, _sI, _sGI, _cTl, _de, _t],
611
+ [0, 64 | 0, 64 | 0, [0, 4], 0, 128 | 0], 3
612
+ ];
613
+ var CreateRequesterGatewayResponse$ = [3, n0, _CRGRr,
614
+ 0,
615
+ [_gI, _dN, _st],
616
+ [0, 0, 0], 3
617
+ ];
618
+ var CreateResponderGatewayRequest$ = [3, n0, _CRGRre,
619
+ 0,
620
+ [_vI, _sI, _sGI, _po, _pr, _dN, _lC, _tSC, _mEC, _cTl, _de, _t, _gT],
621
+ [0, 64 | 0, 64 | 0, 1, 0, 0, () => ListenerConfig$, [() => TrustStoreConfiguration$, 0], [() => ManagedEndpointConfiguration$, 0], [0, 4], 0, 128 | 0, 0], 5
622
+ ];
623
+ var CreateResponderGatewayResponse$ = [3, n0, _CRGRrea,
624
+ 0,
625
+ [_gI, _st, _lC, _eIE],
626
+ [0, 0, () => ListenerConfig$, 0], 2
627
+ ];
628
+ var DeleteInboundExternalLinkRequest$ = [3, n0, _DIELR,
629
+ 0,
630
+ [_gI, _lI],
631
+ [[0, 1], [0, 1]], 2
632
+ ];
633
+ var DeleteInboundExternalLinkResponse$ = [3, n0, _DIELRe,
634
+ 0,
635
+ [_lI, _st],
636
+ [0, 0], 2
637
+ ];
638
+ var DeleteLinkRequest$ = [3, n0, _DLR,
639
+ 0,
640
+ [_gI, _lI],
641
+ [[0, 1], [0, 1]], 2
642
+ ];
643
+ var DeleteLinkResponse$ = [3, n0, _DLRe,
644
+ 0,
645
+ [_lI, _st],
646
+ [0, 0], 2
647
+ ];
648
+ var DeleteLinkRoutingRuleRequest$ = [3, n0, _DLRRR,
649
+ 0,
650
+ [_gI, _lI, _rI],
651
+ [[0, 1], [0, 1], [0, 1]], 3
652
+ ];
653
+ var DeleteLinkRoutingRuleResponse$ = [3, n0, _DLRRRe,
654
+ 0,
655
+ [_rI, _st],
656
+ [0, 0], 2
657
+ ];
658
+ var DeleteOutboundExternalLinkRequest$ = [3, n0, _DOELR,
659
+ 0,
660
+ [_gI, _lI],
661
+ [[0, 1], [0, 1]], 2
662
+ ];
663
+ var DeleteOutboundExternalLinkResponse$ = [3, n0, _DOELRe,
664
+ 0,
665
+ [_lI, _st],
666
+ [0, 0], 2
667
+ ];
668
+ var DeleteRequesterGatewayRequest$ = [3, n0, _DRGR,
669
+ 0,
670
+ [_gI],
671
+ [[0, 1]], 1
672
+ ];
673
+ var DeleteRequesterGatewayResponse$ = [3, n0, _DRGRe,
674
+ 0,
675
+ [_gI, _st],
676
+ [0, 0], 2
677
+ ];
678
+ var DeleteResponderGatewayRequest$ = [3, n0, _DRGRel,
679
+ 0,
680
+ [_gI],
681
+ [[0, 1]], 1
682
+ ];
683
+ var DeleteResponderGatewayResponse$ = [3, n0, _DRGRele,
684
+ 0,
685
+ [_gI, _st],
686
+ [0, 0], 2
687
+ ];
688
+ var DisassociateCertificateRequest$ = [3, n0, _DCR,
689
+ 0,
690
+ [_gI, _aCA],
691
+ [[0, 1], [0, { [_hQ]: _aCA }]], 2
692
+ ];
693
+ var DisassociateCertificateResponse$ = [3, n0, _DCRi,
694
+ 0,
695
+ [_gI, _aCA, _st],
696
+ [0, 0, 0], 3
697
+ ];
698
+ var EksEndpointsConfiguration$ = [3, n0, _EEC,
699
+ 0,
700
+ [_eRN, _eRNn, _cASEU, _cASCCC, _cN, _rA],
701
+ [0, 0, 0, [() => Base64EncodedCertificateChain, 0], 0, 0], 6
702
+ ];
703
+ var Filter$ = [3, n0, _F,
704
+ 0,
705
+ [_cr],
706
+ [() => FilterCriteria], 1
707
+ ];
708
+ var FilterCriterion$ = [3, n0, _FC,
709
+ 0,
710
+ [_pa, _v],
711
+ [0, 64 | 0], 2
712
+ ];
713
+ var GetCertificateAssociationRequest$ = [3, n0, _GCAR,
714
+ 0,
715
+ [_gI, _aCA],
716
+ [[0, 1], [0, { [_hQ]: _aCA }]], 2
717
+ ];
718
+ var GetCertificateAssociationResponse$ = [3, n0, _GCARe,
719
+ 0,
720
+ [_gI, _aCA, _st, _aA, _uA],
721
+ [0, 0, 0, 4, 4], 3
722
+ ];
723
+ var GetInboundExternalLinkRequest$ = [3, n0, _GIELR,
724
+ 0,
725
+ [_gI, _lI],
726
+ [[0, 1], [0, 1]], 2
727
+ ];
728
+ var GetInboundExternalLinkResponse$ = [3, n0, _GIELRe,
729
+ 0,
730
+ [_gI, _lI, _st, _dN, _fM, _pFM, _a, _cA, _uA, _t, _lS, _cT],
731
+ [0, 0, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, 4, 4, 128 | 0, () => LinkLogSettings$, 0], 4
732
+ ];
733
+ var GetLinkRequest$ = [3, n0, _GLR,
734
+ 0,
735
+ [_gI, _lI],
736
+ [[0, 1], [0, 1]], 2
737
+ ];
738
+ var GetLinkResponse$ = [3, n0, _GLRe,
739
+ 0,
740
+ [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _t, _hRA, _tIM],
741
+ [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0, 128 | 0, 2, 1], 6
742
+ ];
743
+ var GetLinkRoutingRuleRequest$ = [3, n0, _GLRRR,
744
+ 0,
745
+ [_gI, _lI, _rI],
746
+ [[0, 1], [0, 1], [0, 1]], 3
747
+ ];
748
+ var GetLinkRoutingRuleResponse$ = [3, n0, _GLRRRe,
749
+ 0,
750
+ [_gI, _lI, _rI, _p, _co, _st, _cA, _uA, _t],
751
+ [0, 0, 0, 1, () => RuleCondition$, 0, 4, 4, 128 | 0], 8
752
+ ];
753
+ var GetOutboundExternalLinkRequest$ = [3, n0, _GOELR,
754
+ 0,
755
+ [_gI, _lI],
756
+ [[0, 1], [0, 1]], 2
757
+ ];
758
+ var GetOutboundExternalLinkResponse$ = [3, n0, _GOELRe,
759
+ 0,
760
+ [_gI, _lI, _st, _pE, _fM, _pFM, _a, _cA, _uA, _t, _lS, _cT],
761
+ [0, 0, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, 4, 4, 128 | 0, () => LinkLogSettings$, 0], 4
762
+ ];
763
+ var GetRequesterGatewayRequest$ = [3, n0, _GRGR,
764
+ 0,
765
+ [_gI],
766
+ [[0, 1]], 1
767
+ ];
768
+ var GetRequesterGatewayResponse$ = [3, n0, _GRGRe,
769
+ 0,
770
+ [_st, _dN, _vI, _sI, _sGI, _gI, _de, _cA, _uA, _t, _aLC, _tLC],
771
+ [0, 0, 0, 64 | 0, 64 | 0, 0, 0, 4, 4, 128 | 0, 1, 1], 6
772
+ ];
773
+ var GetResponderGatewayRequest$ = [3, n0, _GRGRet,
774
+ 0,
775
+ [_gI],
776
+ [[0, 1]], 1
777
+ ];
778
+ var GetResponderGatewayResponse$ = [3, n0, _GRGRete,
779
+ 0,
780
+ [_vI, _sI, _sGI, _st, _po, _pr, _gI, _de, _cA, _uA, _dN, _lC, _tSC, _mEC, _t, _aLC, _tLC, _iLC, _lRC, _gT, _eIE],
781
+ [0, 64 | 0, 64 | 0, 0, 1, 0, 0, 0, 4, 4, 0, () => ListenerConfig$, [() => TrustStoreConfiguration$, 0], [() => ManagedEndpointConfiguration$, 0], 128 | 0, 1, 1, 1, 1, 0, 0], 7
782
+ ];
783
+ var HeaderTagAction$ = [3, n0, _HTA,
784
+ 0,
785
+ [_n, _va],
786
+ [0, 0], 2
787
+ ];
788
+ var HealthCheckConfig$ = [3, n0, _HCC,
789
+ 0,
790
+ [_po, _pa, _pr, _tM, _iS, _sCM, _hTC, _uTC],
791
+ [1, 0, 0, 1, 1, 0, 1, 1], 2
792
+ ];
793
+ var LinkApplicationLogConfiguration$ = [3, n0, _LALC,
794
+ 0,
795
+ [_sa],
796
+ [() => LinkApplicationLogSampling$], 1
797
+ ];
798
+ var LinkApplicationLogSampling$ = [3, n0, _LALS,
799
+ 0,
800
+ [_eL, _fL],
801
+ [1, 1], 2
802
+ ];
803
+ var LinkAttributes$ = [3, n0, _LA,
804
+ 0,
805
+ [_rEM, _cPI],
806
+ [() => ResponderErrorMasking, 0]
807
+ ];
808
+ var LinkLogSettings$ = [3, n0, _LLS,
809
+ 0,
810
+ [_aL],
811
+ [() => LinkApplicationLogConfiguration$], 1
812
+ ];
813
+ var LinkRoutingRuleSummary$ = [3, n0, _LRRS,
814
+ 0,
815
+ [_rI, _p, _co, _st, _cA, _uA],
816
+ [0, 1, () => RuleCondition$, 0, 4, 4], 6
817
+ ];
818
+ var ListCertificateAssociationsRequest$ = [3, n0, _LCAR,
819
+ 0,
820
+ [_gI, _nT, _mR],
821
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
822
+ ];
823
+ var ListCertificateAssociationsResponse$ = [3, n0, _LCARi,
824
+ 0,
825
+ [_cAe, _nT],
826
+ [() => CertificateAssociationSummaryList, 0], 1
827
+ ];
828
+ var ListenerConfig$ = [3, n0, _LC,
829
+ 0,
830
+ [_pro],
831
+ [64 | 0], 1
832
+ ];
833
+ var ListLinkRoutingRulesRequest$ = [3, n0, _LLRRR,
834
+ 0,
835
+ [_gI, _lI, _nT, _mR],
836
+ [[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
837
+ ];
838
+ var ListLinkRoutingRulesResponse$ = [3, n0, _LLRRRi,
839
+ 0,
840
+ [_r, _nT],
841
+ [() => LinkRoutingRuleList, 0]
842
+ ];
843
+ var ListLinksRequest$ = [3, n0, _LLR,
844
+ 0,
845
+ [_gI, _nT, _mR],
846
+ [[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
847
+ ];
848
+ var ListLinksResponse$ = [3, n0, _LLRi,
849
+ 0,
850
+ [_l, _nT],
851
+ [() => LinkList, 0]
852
+ ];
853
+ var ListLinksResponseStructure$ = [3, n0, _LLRS,
854
+ 0,
855
+ [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT, _t, _pE],
856
+ [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0, 128 | 0, 0], 6
857
+ ];
858
+ var ListRequesterGatewaysRequest$ = [3, n0, _LRGR,
859
+ 0,
860
+ [_mR, _nT],
861
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
862
+ ];
863
+ var ListRequesterGatewaysResponse$ = [3, n0, _LRGRi,
864
+ 0,
865
+ [_gIa, _nT],
866
+ [64 | 0, 0]
867
+ ];
868
+ var ListResponderGatewaysRequest$ = [3, n0, _LRGRis,
869
+ 0,
870
+ [_mR, _nT],
871
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
872
+ ];
873
+ var ListResponderGatewaysResponse$ = [3, n0, _LRGRist,
874
+ 0,
875
+ [_gIa, _nT],
876
+ [64 | 0, 0]
877
+ ];
878
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
879
+ 0,
880
+ [_rAe],
881
+ [[0, 1]], 1
882
+ ];
883
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
884
+ 0,
885
+ [_t],
886
+ [128 | 0]
887
+ ];
888
+ var ModuleConfiguration$ = [3, n0, _MC,
889
+ 0,
890
+ [_n, _ve, _dO, _mP],
891
+ [0, 0, 64 | 0, () => ModuleParameters$], 1
892
+ ];
893
+ var NoBidAction$ = [3, n0, _NBA,
894
+ 0,
895
+ [_nBRC],
896
+ [1]
897
+ ];
898
+ var NoBidModuleParameters$ = [3, n0, _NBMP,
899
+ 0,
900
+ [_re, _rC, _pTP],
901
+ [0, 1, 1]
902
+ ];
903
+ var OpenRtbAttributeModuleParameters$ = [3, n0, _ORAMP,
904
+ 0,
905
+ [_fT, _fC, _ac, _hP],
906
+ [0, () => FilterConfiguration, () => Action$, 1], 4
907
+ ];
908
+ var QueryStringKeyValuePair$ = [3, n0, _QSKVP,
909
+ 0,
910
+ [_k, _va],
911
+ [0, 0], 2
912
+ ];
913
+ var RateLimiterModuleParameters$ = [3, n0, _RLMP,
914
+ 0,
915
+ [_tp],
916
+ [1]
917
+ ];
918
+ var RejectLinkRequest$ = [3, n0, _RLR,
919
+ 0,
920
+ [_gI, _lI],
921
+ [[0, 1], [0, 1]], 2
922
+ ];
923
+ var RejectLinkResponse$ = [3, n0, _RLRe,
924
+ 0,
925
+ [_gI, _pGI, _st, _cA, _uA, _lI, _d, _fM, _pFM, _a, _lS, _cT],
926
+ [0, 0, 0, 4, 4, 0, 0, () => ModuleConfigurationList, () => ModuleConfigurationList, () => LinkAttributes$, () => LinkLogSettings$, 0], 6
927
+ ];
928
+ var ResponderErrorMaskingForHttpCode$ = [3, n0, _REMFHC,
929
+ 0,
930
+ [_hC, _ac, _lT, _rLP],
931
+ [0, 0, 64 | 0, 1], 3
932
+ ];
933
+ var RuleCondition$ = [3, n0, _RC,
934
+ 0,
935
+ [_hH, _hHW, _pP, _pEa, _qSE, _qSEu],
936
+ [0, 0, 0, 0, () => QueryStringKeyValuePair$, 0]
937
+ ];
938
+ var TagResourceRequest$ = [3, n0, _TRR,
939
+ 0,
940
+ [_rAe, _t],
941
+ [[0, 1], 128 | 0], 2
942
+ ];
943
+ var TagResourceResponse$ = [3, n0, _TRRa,
944
+ 0,
945
+ [],
946
+ []
947
+ ];
948
+ var TrustStoreConfiguration$ = [3, n0, _TSC,
949
+ 0,
950
+ [_cAC],
951
+ [[() => CertificateAuthorityCertificates, 0]], 1
952
+ ];
953
+ var UntagResourceRequest$ = [3, n0, _URR,
954
+ 0,
955
+ [_rAe, _tK],
956
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
957
+ ];
958
+ var UntagResourceResponse$ = [3, n0, _URRn,
959
+ 0,
960
+ [],
961
+ []
962
+ ];
963
+ var UpdateLinkModuleFlowRequest$ = [3, n0, _ULMFR,
964
+ 0,
965
+ [_gI, _lI, _mo, _cTl],
966
+ [[0, 1], [0, 1], () => ModuleConfigurationList, [0, 4]], 3
967
+ ];
968
+ var UpdateLinkModuleFlowResponse$ = [3, n0, _ULMFRp,
969
+ 0,
970
+ [_gI, _lI, _st],
971
+ [0, 0, 0], 3
972
+ ];
973
+ var UpdateLinkRequest$ = [3, n0, _ULR,
974
+ 0,
975
+ [_gI, _lI, _lS, _tIM],
976
+ [[0, 1], [0, 1], () => LinkLogSettings$, 1], 2
977
+ ];
978
+ var UpdateLinkResponse$ = [3, n0, _ULRp,
979
+ 0,
980
+ [_lI, _st],
981
+ [0, 0], 2
982
+ ];
983
+ var UpdateLinkRoutingRuleRequest$ = [3, n0, _ULRRR,
984
+ 0,
985
+ [_gI, _lI, _rI, _p, _co],
986
+ [[0, 1], [0, 1], [0, 1], 1, () => RuleCondition$], 5
987
+ ];
988
+ var UpdateLinkRoutingRuleResponse$ = [3, n0, _ULRRRp,
989
+ 0,
990
+ [_rI, _st, _uA],
991
+ [0, 0, 4], 3
992
+ ];
993
+ var UpdateRequesterGatewayRequest$ = [3, n0, _URGR,
994
+ 0,
995
+ [_gI, _cTl, _de],
996
+ [[0, 1], [0, 4], 0], 1
997
+ ];
998
+ var UpdateRequesterGatewayResponse$ = [3, n0, _URGRp,
999
+ 0,
1000
+ [_gI, _st],
1001
+ [0, 0], 2
1002
+ ];
1003
+ var UpdateResponderGatewayRequest$ = [3, n0, _URGRpd,
1004
+ 0,
1005
+ [_po, _pr, _gI, _dN, _lC, _tSC, _mEC, _cTl, _de],
1006
+ [1, 0, [0, 1], 0, () => ListenerConfig$, [() => TrustStoreConfiguration$, 0], [() => ManagedEndpointConfiguration$, 0], [0, 4], 0], 3
1007
+ ];
1008
+ var UpdateResponderGatewayResponse$ = [3, n0, _URGRpda,
1009
+ 0,
1010
+ [_gI, _st],
1011
+ [0, 0], 2
1012
+ ];
1013
+ var CertificateAssociationSummaryList = [1, n0, _CASL,
1014
+ 0, () => CertificateAssociationSummary$
1015
+ ];
1016
+ var CertificateAuthorityCertificates = [1, n0, _CAC,
1017
+ 0, [() => Base64EncodedCertificateChain,
1018
+ 0]
1019
+ ];
1020
+ var FilterConfiguration = [1, n0, _FCi,
1021
+ 0, () => Filter$
1022
+ ];
1023
+ var FilterCriteria = [1, n0, _FCil,
1024
+ 0, () => FilterCriterion$
1025
+ ];
1026
+ var LinkList = [1, n0, _LL,
1027
+ 0, () => ListLinksResponseStructure$
1028
+ ];
1029
+ var LinkRoutingRuleList = [1, n0, _LRRL,
1030
+ 0, () => LinkRoutingRuleSummary$
1031
+ ];
1032
+ var ModuleConfigurationList = [1, n0, _MCL,
1033
+ 0, () => ModuleConfiguration$
1034
+ ];
1035
+ var ResponderErrorMasking = [1, n0, _REM,
1036
+ 0, () => ResponderErrorMaskingForHttpCode$
1037
+ ];
1038
+ var Action$ = [4, n0, _A,
1039
+ 0,
1040
+ [_nB, _hT],
1041
+ [() => NoBidAction$, () => HeaderTagAction$]
1042
+ ];
1043
+ var ManagedEndpointConfiguration$ = [4, n0, _MEC,
1044
+ 0,
1045
+ [_aSG, _eE],
1046
+ [() => AutoScalingGroupsConfiguration$, [() => EksEndpointsConfiguration$, 0]]
1047
+ ];
1048
+ var ModuleParameters$ = [4, n0, _MP,
1049
+ 0,
1050
+ [_nB, _oRA, _rL],
1051
+ [() => NoBidModuleParameters$, () => OpenRtbAttributeModuleParameters$, () => RateLimiterModuleParameters$]
1052
+ ];
1053
+ var AcceptLink$ = [9, n0, _AL,
1054
+ { [_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/accept", 200] }, () => AcceptLinkRequest$, () => AcceptLinkResponse$
1055
+ ];
1056
+ var AssociateCertificate$ = [9, n0, _AC,
1057
+ { [_h]: ["POST", "/responder-gateway/{gatewayId}/certificate", 200] }, () => AssociateCertificateRequest$, () => AssociateCertificateResponse$
1058
+ ];
1059
+ var CreateInboundExternalLink$ = [9, n0, _CIEL,
1060
+ { [_h]: ["POST", "/responder-gateway/{gatewayId}/inbound-external-link", 200] }, () => CreateInboundExternalLinkRequest$, () => CreateInboundExternalLinkResponse$
1061
+ ];
1062
+ var CreateLink$ = [9, n0, _CL,
1063
+ { [_h]: ["POST", "/gateway/{gatewayId}/create-link", 200] }, () => CreateLinkRequest$, () => CreateLinkResponse$
1064
+ ];
1065
+ var CreateLinkRoutingRule$ = [9, n0, _CLRR,
1066
+ { [_h]: ["POST", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule", 200] }, () => CreateLinkRoutingRuleRequest$, () => CreateLinkRoutingRuleResponse$
1067
+ ];
1068
+ var CreateOutboundExternalLink$ = [9, n0, _COEL,
1069
+ { [_h]: ["POST", "/requester-gateway/{gatewayId}/outbound-external-link", 200] }, () => CreateOutboundExternalLinkRequest$, () => CreateOutboundExternalLinkResponse$
1070
+ ];
1071
+ var CreateRequesterGateway$ = [9, n0, _CRG,
1072
+ { [_h]: ["POST", "/requester-gateway", 200] }, () => CreateRequesterGatewayRequest$, () => CreateRequesterGatewayResponse$
1073
+ ];
1074
+ var CreateResponderGateway$ = [9, n0, _CRGr,
1075
+ { [_h]: ["POST", "/responder-gateway", 200] }, () => CreateResponderGatewayRequest$, () => CreateResponderGatewayResponse$
1076
+ ];
1077
+ var DeleteInboundExternalLink$ = [9, n0, _DIEL,
1078
+ { [_h]: ["DELETE", "/responder-gateway/{gatewayId}/inbound-external-link/{linkId}", 200] }, () => DeleteInboundExternalLinkRequest$, () => DeleteInboundExternalLinkResponse$
1079
+ ];
1080
+ var DeleteLink$ = [9, n0, _DL,
1081
+ { [_h]: ["DELETE", "/gateway/{gatewayId}/link/{linkId}", 200] }, () => DeleteLinkRequest$, () => DeleteLinkResponse$
1082
+ ];
1083
+ var DeleteLinkRoutingRule$ = [9, n0, _DLRR,
1084
+ { [_h]: ["DELETE", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => DeleteLinkRoutingRuleRequest$, () => DeleteLinkRoutingRuleResponse$
1085
+ ];
1086
+ var DeleteOutboundExternalLink$ = [9, n0, _DOEL,
1087
+ { [_h]: ["DELETE", "/requester-gateway/{gatewayId}/outbound-external-link/{linkId}", 200] }, () => DeleteOutboundExternalLinkRequest$, () => DeleteOutboundExternalLinkResponse$
1088
+ ];
1089
+ var DeleteRequesterGateway$ = [9, n0, _DRG,
1090
+ { [_h]: ["DELETE", "/requester-gateway/{gatewayId}", 200] }, () => DeleteRequesterGatewayRequest$, () => DeleteRequesterGatewayResponse$
1091
+ ];
1092
+ var DeleteResponderGateway$ = [9, n0, _DRGe,
1093
+ { [_h]: ["DELETE", "/responder-gateway/{gatewayId}", 200] }, () => DeleteResponderGatewayRequest$, () => DeleteResponderGatewayResponse$
1094
+ ];
1095
+ var DisassociateCertificate$ = [9, n0, _DC,
1096
+ { [_h]: ["DELETE", "/responder-gateway/{gatewayId}/certificate", 200] }, () => DisassociateCertificateRequest$, () => DisassociateCertificateResponse$
1097
+ ];
1098
+ var GetCertificateAssociation$ = [9, n0, _GCA,
1099
+ { [_h]: ["GET", "/responder-gateway/{gatewayId}/certificate", 200] }, () => GetCertificateAssociationRequest$, () => GetCertificateAssociationResponse$
1100
+ ];
1101
+ var GetInboundExternalLink$ = [9, n0, _GIEL,
1102
+ { [_h]: ["GET", "/responder-gateway/{gatewayId}/inbound-external-link/{linkId}", 200] }, () => GetInboundExternalLinkRequest$, () => GetInboundExternalLinkResponse$
1103
+ ];
1104
+ var GetLink$ = [9, n0, _GL,
1105
+ { [_h]: ["GET", "/gateway/{gatewayId}/link/{linkId}", 200] }, () => GetLinkRequest$, () => GetLinkResponse$
1106
+ ];
1107
+ var GetLinkRoutingRule$ = [9, n0, _GLRR,
1108
+ { [_h]: ["GET", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => GetLinkRoutingRuleRequest$, () => GetLinkRoutingRuleResponse$
1109
+ ];
1110
+ var GetOutboundExternalLink$ = [9, n0, _GOEL,
1111
+ { [_h]: ["GET", "/requester-gateway/{gatewayId}/outbound-external-link/{linkId}", 200] }, () => GetOutboundExternalLinkRequest$, () => GetOutboundExternalLinkResponse$
1112
+ ];
1113
+ var GetRequesterGateway$ = [9, n0, _GRG,
1114
+ { [_h]: ["GET", "/requester-gateway/{gatewayId}", 200] }, () => GetRequesterGatewayRequest$, () => GetRequesterGatewayResponse$
1115
+ ];
1116
+ var GetResponderGateway$ = [9, n0, _GRGe,
1117
+ { [_h]: ["GET", "/responder-gateway/{gatewayId}", 200] }, () => GetResponderGatewayRequest$, () => GetResponderGatewayResponse$
1118
+ ];
1119
+ var ListCertificateAssociations$ = [9, n0, _LCA,
1120
+ { [_h]: ["GET", "/responder-gateway/{gatewayId}/certificates", 200] }, () => ListCertificateAssociationsRequest$, () => ListCertificateAssociationsResponse$
1121
+ ];
1122
+ var ListLinkRoutingRules$ = [9, n0, _LLRR,
1123
+ { [_h]: ["GET", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rules", 200] }, () => ListLinkRoutingRulesRequest$, () => ListLinkRoutingRulesResponse$
1124
+ ];
1125
+ var ListLinks$ = [9, n0, _LLi,
1126
+ { [_h]: ["GET", "/gateway/{gatewayId}/links/", 200] }, () => ListLinksRequest$, () => ListLinksResponse$
1127
+ ];
1128
+ var ListRequesterGateways$ = [9, n0, _LRG,
1129
+ { [_h]: ["GET", "/requester-gateways", 200] }, () => ListRequesterGatewaysRequest$, () => ListRequesterGatewaysResponse$
1130
+ ];
1131
+ var ListResponderGateways$ = [9, n0, _LRGi,
1132
+ { [_h]: ["GET", "/responder-gateways", 200] }, () => ListResponderGatewaysRequest$, () => ListResponderGatewaysResponse$
1133
+ ];
1134
+ var ListTagsForResource$ = [9, n0, _LTFR,
1135
+ { [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1136
+ ];
1137
+ var RejectLink$ = [9, n0, _RL,
1138
+ { [_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/reject", 200] }, () => RejectLinkRequest$, () => RejectLinkResponse$
1139
+ ];
1140
+ var TagResource$ = [9, n0, _TR,
1141
+ { [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
1142
+ ];
1143
+ var UntagResource$ = [9, n0, _UR,
1144
+ { [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1145
+ ];
1146
+ var UpdateLink$ = [9, n0, _UL,
1147
+ { [_h]: ["PATCH", "/gateway/{gatewayId}/link/{linkId}", 200] }, () => UpdateLinkRequest$, () => UpdateLinkResponse$
1148
+ ];
1149
+ var UpdateLinkModuleFlow$ = [9, n0, _ULMF,
1150
+ { [_h]: ["POST", "/gateway/{gatewayId}/link/{linkId}/module-flow", 200] }, () => UpdateLinkModuleFlowRequest$, () => UpdateLinkModuleFlowResponse$
1151
+ ];
1152
+ var UpdateLinkRoutingRule$ = [9, n0, _ULRR,
1153
+ { [_h]: ["PUT", "/responder-gateway/{gatewayId}/link/{linkId}/routing-rule/{ruleId}", 200] }, () => UpdateLinkRoutingRuleRequest$, () => UpdateLinkRoutingRuleResponse$
1154
+ ];
1155
+ var UpdateRequesterGateway$ = [9, n0, _URG,
1156
+ { [_h]: ["POST", "/requester-gateway/{gatewayId}/update", 200] }, () => UpdateRequesterGatewayRequest$, () => UpdateRequesterGatewayResponse$
1157
+ ];
1158
+ var UpdateResponderGateway$ = [9, n0, _URGp,
1159
+ { [_h]: ["POST", "/responder-gateway/{gatewayId}/update", 200] }, () => UpdateResponderGatewayRequest$, () => UpdateResponderGatewayResponse$
1160
+ ];
1161
+
1162
+ const getRuntimeConfig$1 = (config) => {
1163
+ return {
1164
+ apiVersion: "2023-05-15",
1165
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1166
+ base64Encoder: config?.base64Encoder ?? toBase64,
1167
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1168
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1169
+ extensions: config?.extensions ?? [],
1170
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultRTBFabricHttpAuthSchemeProvider,
1171
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1172
+ {
1173
+ schemeId: "aws.auth#sigv4",
1174
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1175
+ signer: new AwsSdkSigV4Signer(),
1176
+ },
1177
+ ],
1178
+ logger: config?.logger ?? new NoOpLogger(),
1179
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1180
+ protocolSettings: config?.protocolSettings ?? {
1181
+ defaultNamespace: "com.amazonaws.rtbfabric",
1182
+ errorTypeRegistries,
1183
+ version: "2023-05-15",
1184
+ serviceTarget: "RTBFabric",
1185
+ },
1186
+ serviceId: config?.serviceId ?? "RTBFabric",
1187
+ sha256: config?.sha256 ?? Sha256,
1188
+ urlParser: config?.urlParser ?? parseUrl,
1189
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1190
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1191
+ };
1192
+ };
1193
+
1194
+ const getRuntimeConfig = (config) => {
1195
+ emitWarningIfUnsupportedVersion(process.version);
1196
+ const defaultsMode = resolveDefaultsModeConfig(config);
1197
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1198
+ const clientSharedValues = getRuntimeConfig$1(config);
1199
+ emitWarningIfUnsupportedVersion$1(process.version);
1200
+ const loaderConfig = {
1201
+ profile: config?.profile,
1202
+ logger: clientSharedValues.logger,
1203
+ };
1204
+ return {
1205
+ ...clientSharedValues,
1206
+ ...config,
1207
+ runtime: "node",
1208
+ defaultsMode,
1209
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1210
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1211
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1212
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1213
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1214
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1215
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1216
+ retryMode: config?.retryMode ??
1217
+ loadConfig({
1218
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1219
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1220
+ }, config),
1221
+ streamCollector: config?.streamCollector ?? streamCollector,
1222
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1223
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1224
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1225
+ };
1226
+ };
1227
+
34
1228
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1229
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1230
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1474,56 +2668,207 @@ const ResponderGatewayStatus = {
1474
2668
  PENDING_UPDATE: "PENDING_UPDATE",
1475
2669
  };
1476
2670
 
2671
+ exports.AcceptLink$ = AcceptLink$;
1477
2672
  exports.AcceptLinkCommand = AcceptLinkCommand;
2673
+ exports.AcceptLinkRequest$ = AcceptLinkRequest$;
2674
+ exports.AcceptLinkResponse$ = AcceptLinkResponse$;
2675
+ exports.AccessDeniedException = AccessDeniedException;
2676
+ exports.AccessDeniedException$ = AccessDeniedException$;
2677
+ exports.Action$ = Action$;
2678
+ exports.AssociateCertificate$ = AssociateCertificate$;
1478
2679
  exports.AssociateCertificateCommand = AssociateCertificateCommand;
2680
+ exports.AssociateCertificateRequest$ = AssociateCertificateRequest$;
2681
+ exports.AssociateCertificateResponse$ = AssociateCertificateResponse$;
2682
+ exports.AutoScalingGroupsConfiguration$ = AutoScalingGroupsConfiguration$;
1479
2683
  exports.CertificateAssociationStatus = CertificateAssociationStatus;
2684
+ exports.CertificateAssociationSummary$ = CertificateAssociationSummary$;
2685
+ exports.ConflictException = ConflictException;
2686
+ exports.ConflictException$ = ConflictException$;
1480
2687
  exports.ConnectivityType = ConnectivityType;
2688
+ exports.CreateInboundExternalLink$ = CreateInboundExternalLink$;
1481
2689
  exports.CreateInboundExternalLinkCommand = CreateInboundExternalLinkCommand;
2690
+ exports.CreateInboundExternalLinkRequest$ = CreateInboundExternalLinkRequest$;
2691
+ exports.CreateInboundExternalLinkResponse$ = CreateInboundExternalLinkResponse$;
2692
+ exports.CreateLink$ = CreateLink$;
1482
2693
  exports.CreateLinkCommand = CreateLinkCommand;
2694
+ exports.CreateLinkRequest$ = CreateLinkRequest$;
2695
+ exports.CreateLinkResponse$ = CreateLinkResponse$;
2696
+ exports.CreateLinkRoutingRule$ = CreateLinkRoutingRule$;
1483
2697
  exports.CreateLinkRoutingRuleCommand = CreateLinkRoutingRuleCommand;
2698
+ exports.CreateLinkRoutingRuleRequest$ = CreateLinkRoutingRuleRequest$;
2699
+ exports.CreateLinkRoutingRuleResponse$ = CreateLinkRoutingRuleResponse$;
2700
+ exports.CreateOutboundExternalLink$ = CreateOutboundExternalLink$;
1484
2701
  exports.CreateOutboundExternalLinkCommand = CreateOutboundExternalLinkCommand;
2702
+ exports.CreateOutboundExternalLinkRequest$ = CreateOutboundExternalLinkRequest$;
2703
+ exports.CreateOutboundExternalLinkResponse$ = CreateOutboundExternalLinkResponse$;
2704
+ exports.CreateRequesterGateway$ = CreateRequesterGateway$;
1485
2705
  exports.CreateRequesterGatewayCommand = CreateRequesterGatewayCommand;
2706
+ exports.CreateRequesterGatewayRequest$ = CreateRequesterGatewayRequest$;
2707
+ exports.CreateRequesterGatewayResponse$ = CreateRequesterGatewayResponse$;
2708
+ exports.CreateResponderGateway$ = CreateResponderGateway$;
1486
2709
  exports.CreateResponderGatewayCommand = CreateResponderGatewayCommand;
2710
+ exports.CreateResponderGatewayRequest$ = CreateResponderGatewayRequest$;
2711
+ exports.CreateResponderGatewayResponse$ = CreateResponderGatewayResponse$;
2712
+ exports.DeleteInboundExternalLink$ = DeleteInboundExternalLink$;
1487
2713
  exports.DeleteInboundExternalLinkCommand = DeleteInboundExternalLinkCommand;
2714
+ exports.DeleteInboundExternalLinkRequest$ = DeleteInboundExternalLinkRequest$;
2715
+ exports.DeleteInboundExternalLinkResponse$ = DeleteInboundExternalLinkResponse$;
2716
+ exports.DeleteLink$ = DeleteLink$;
1488
2717
  exports.DeleteLinkCommand = DeleteLinkCommand;
2718
+ exports.DeleteLinkRequest$ = DeleteLinkRequest$;
2719
+ exports.DeleteLinkResponse$ = DeleteLinkResponse$;
2720
+ exports.DeleteLinkRoutingRule$ = DeleteLinkRoutingRule$;
1489
2721
  exports.DeleteLinkRoutingRuleCommand = DeleteLinkRoutingRuleCommand;
2722
+ exports.DeleteLinkRoutingRuleRequest$ = DeleteLinkRoutingRuleRequest$;
2723
+ exports.DeleteLinkRoutingRuleResponse$ = DeleteLinkRoutingRuleResponse$;
2724
+ exports.DeleteOutboundExternalLink$ = DeleteOutboundExternalLink$;
1490
2725
  exports.DeleteOutboundExternalLinkCommand = DeleteOutboundExternalLinkCommand;
2726
+ exports.DeleteOutboundExternalLinkRequest$ = DeleteOutboundExternalLinkRequest$;
2727
+ exports.DeleteOutboundExternalLinkResponse$ = DeleteOutboundExternalLinkResponse$;
2728
+ exports.DeleteRequesterGateway$ = DeleteRequesterGateway$;
1491
2729
  exports.DeleteRequesterGatewayCommand = DeleteRequesterGatewayCommand;
2730
+ exports.DeleteRequesterGatewayRequest$ = DeleteRequesterGatewayRequest$;
2731
+ exports.DeleteRequesterGatewayResponse$ = DeleteRequesterGatewayResponse$;
2732
+ exports.DeleteResponderGateway$ = DeleteResponderGateway$;
1492
2733
  exports.DeleteResponderGatewayCommand = DeleteResponderGatewayCommand;
2734
+ exports.DeleteResponderGatewayRequest$ = DeleteResponderGatewayRequest$;
2735
+ exports.DeleteResponderGatewayResponse$ = DeleteResponderGatewayResponse$;
2736
+ exports.DisassociateCertificate$ = DisassociateCertificate$;
1493
2737
  exports.DisassociateCertificateCommand = DisassociateCertificateCommand;
2738
+ exports.DisassociateCertificateRequest$ = DisassociateCertificateRequest$;
2739
+ exports.DisassociateCertificateResponse$ = DisassociateCertificateResponse$;
2740
+ exports.EksEndpointsConfiguration$ = EksEndpointsConfiguration$;
2741
+ exports.Filter$ = Filter$;
2742
+ exports.FilterCriterion$ = FilterCriterion$;
1494
2743
  exports.FilterType = FilterType;
1495
2744
  exports.GatewayType = GatewayType;
2745
+ exports.GetCertificateAssociation$ = GetCertificateAssociation$;
1496
2746
  exports.GetCertificateAssociationCommand = GetCertificateAssociationCommand;
2747
+ exports.GetCertificateAssociationRequest$ = GetCertificateAssociationRequest$;
2748
+ exports.GetCertificateAssociationResponse$ = GetCertificateAssociationResponse$;
2749
+ exports.GetInboundExternalLink$ = GetInboundExternalLink$;
1497
2750
  exports.GetInboundExternalLinkCommand = GetInboundExternalLinkCommand;
2751
+ exports.GetInboundExternalLinkRequest$ = GetInboundExternalLinkRequest$;
2752
+ exports.GetInboundExternalLinkResponse$ = GetInboundExternalLinkResponse$;
2753
+ exports.GetLink$ = GetLink$;
1498
2754
  exports.GetLinkCommand = GetLinkCommand;
2755
+ exports.GetLinkRequest$ = GetLinkRequest$;
2756
+ exports.GetLinkResponse$ = GetLinkResponse$;
2757
+ exports.GetLinkRoutingRule$ = GetLinkRoutingRule$;
1499
2758
  exports.GetLinkRoutingRuleCommand = GetLinkRoutingRuleCommand;
2759
+ exports.GetLinkRoutingRuleRequest$ = GetLinkRoutingRuleRequest$;
2760
+ exports.GetLinkRoutingRuleResponse$ = GetLinkRoutingRuleResponse$;
2761
+ exports.GetOutboundExternalLink$ = GetOutboundExternalLink$;
1500
2762
  exports.GetOutboundExternalLinkCommand = GetOutboundExternalLinkCommand;
2763
+ exports.GetOutboundExternalLinkRequest$ = GetOutboundExternalLinkRequest$;
2764
+ exports.GetOutboundExternalLinkResponse$ = GetOutboundExternalLinkResponse$;
2765
+ exports.GetRequesterGateway$ = GetRequesterGateway$;
1501
2766
  exports.GetRequesterGatewayCommand = GetRequesterGatewayCommand;
2767
+ exports.GetRequesterGatewayRequest$ = GetRequesterGatewayRequest$;
2768
+ exports.GetRequesterGatewayResponse$ = GetRequesterGatewayResponse$;
2769
+ exports.GetResponderGateway$ = GetResponderGateway$;
1502
2770
  exports.GetResponderGatewayCommand = GetResponderGatewayCommand;
2771
+ exports.GetResponderGatewayRequest$ = GetResponderGatewayRequest$;
2772
+ exports.GetResponderGatewayResponse$ = GetResponderGatewayResponse$;
2773
+ exports.HeaderTagAction$ = HeaderTagAction$;
2774
+ exports.HealthCheckConfig$ = HealthCheckConfig$;
2775
+ exports.InternalServerException = InternalServerException;
2776
+ exports.InternalServerException$ = InternalServerException$;
2777
+ exports.LinkApplicationLogConfiguration$ = LinkApplicationLogConfiguration$;
2778
+ exports.LinkApplicationLogSampling$ = LinkApplicationLogSampling$;
2779
+ exports.LinkAttributes$ = LinkAttributes$;
1503
2780
  exports.LinkDirection = LinkDirection;
2781
+ exports.LinkLogSettings$ = LinkLogSettings$;
2782
+ exports.LinkRoutingRuleSummary$ = LinkRoutingRuleSummary$;
1504
2783
  exports.LinkStatus = LinkStatus;
2784
+ exports.ListCertificateAssociations$ = ListCertificateAssociations$;
1505
2785
  exports.ListCertificateAssociationsCommand = ListCertificateAssociationsCommand;
2786
+ exports.ListCertificateAssociationsRequest$ = ListCertificateAssociationsRequest$;
2787
+ exports.ListCertificateAssociationsResponse$ = ListCertificateAssociationsResponse$;
2788
+ exports.ListLinkRoutingRules$ = ListLinkRoutingRules$;
1506
2789
  exports.ListLinkRoutingRulesCommand = ListLinkRoutingRulesCommand;
2790
+ exports.ListLinkRoutingRulesRequest$ = ListLinkRoutingRulesRequest$;
2791
+ exports.ListLinkRoutingRulesResponse$ = ListLinkRoutingRulesResponse$;
2792
+ exports.ListLinks$ = ListLinks$;
1507
2793
  exports.ListLinksCommand = ListLinksCommand;
2794
+ exports.ListLinksRequest$ = ListLinksRequest$;
2795
+ exports.ListLinksResponse$ = ListLinksResponse$;
2796
+ exports.ListLinksResponseStructure$ = ListLinksResponseStructure$;
2797
+ exports.ListRequesterGateways$ = ListRequesterGateways$;
1508
2798
  exports.ListRequesterGatewaysCommand = ListRequesterGatewaysCommand;
2799
+ exports.ListRequesterGatewaysRequest$ = ListRequesterGatewaysRequest$;
2800
+ exports.ListRequesterGatewaysResponse$ = ListRequesterGatewaysResponse$;
2801
+ exports.ListResponderGateways$ = ListResponderGateways$;
1509
2802
  exports.ListResponderGatewaysCommand = ListResponderGatewaysCommand;
2803
+ exports.ListResponderGatewaysRequest$ = ListResponderGatewaysRequest$;
2804
+ exports.ListResponderGatewaysResponse$ = ListResponderGatewaysResponse$;
2805
+ exports.ListTagsForResource$ = ListTagsForResource$;
1510
2806
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2807
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2808
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2809
+ exports.ListenerConfig$ = ListenerConfig$;
2810
+ exports.ManagedEndpointConfiguration$ = ManagedEndpointConfiguration$;
2811
+ exports.ModuleConfiguration$ = ModuleConfiguration$;
2812
+ exports.ModuleParameters$ = ModuleParameters$;
2813
+ exports.NoBidAction$ = NoBidAction$;
2814
+ exports.NoBidModuleParameters$ = NoBidModuleParameters$;
2815
+ exports.OpenRtbAttributeModuleParameters$ = OpenRtbAttributeModuleParameters$;
1511
2816
  exports.Protocol = Protocol;
2817
+ exports.QueryStringKeyValuePair$ = QueryStringKeyValuePair$;
1512
2818
  exports.RTBFabric = RTBFabric;
1513
2819
  exports.RTBFabricClient = RTBFabricClient;
2820
+ exports.RTBFabricServiceException = RTBFabricServiceException;
2821
+ exports.RTBFabricServiceException$ = RTBFabricServiceException$;
2822
+ exports.RateLimiterModuleParameters$ = RateLimiterModuleParameters$;
2823
+ exports.RejectLink$ = RejectLink$;
1514
2824
  exports.RejectLinkCommand = RejectLinkCommand;
2825
+ exports.RejectLinkRequest$ = RejectLinkRequest$;
2826
+ exports.RejectLinkResponse$ = RejectLinkResponse$;
1515
2827
  exports.RequesterGatewayStatus = RequesterGatewayStatus;
2828
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2829
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1516
2830
  exports.ResponderErrorMaskingAction = ResponderErrorMaskingAction;
2831
+ exports.ResponderErrorMaskingForHttpCode$ = ResponderErrorMaskingForHttpCode$;
1517
2832
  exports.ResponderErrorMaskingLoggingType = ResponderErrorMaskingLoggingType;
1518
2833
  exports.ResponderGatewayStatus = ResponderGatewayStatus;
2834
+ exports.RuleCondition$ = RuleCondition$;
1519
2835
  exports.RuleStatus = RuleStatus;
2836
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2837
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2838
+ exports.TagResource$ = TagResource$;
1520
2839
  exports.TagResourceCommand = TagResourceCommand;
2840
+ exports.TagResourceRequest$ = TagResourceRequest$;
2841
+ exports.TagResourceResponse$ = TagResourceResponse$;
2842
+ exports.ThrottlingException = ThrottlingException;
2843
+ exports.ThrottlingException$ = ThrottlingException$;
2844
+ exports.TrustStoreConfiguration$ = TrustStoreConfiguration$;
2845
+ exports.UntagResource$ = UntagResource$;
1521
2846
  exports.UntagResourceCommand = UntagResourceCommand;
2847
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2848
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2849
+ exports.UpdateLink$ = UpdateLink$;
1522
2850
  exports.UpdateLinkCommand = UpdateLinkCommand;
2851
+ exports.UpdateLinkModuleFlow$ = UpdateLinkModuleFlow$;
1523
2852
  exports.UpdateLinkModuleFlowCommand = UpdateLinkModuleFlowCommand;
2853
+ exports.UpdateLinkModuleFlowRequest$ = UpdateLinkModuleFlowRequest$;
2854
+ exports.UpdateLinkModuleFlowResponse$ = UpdateLinkModuleFlowResponse$;
2855
+ exports.UpdateLinkRequest$ = UpdateLinkRequest$;
2856
+ exports.UpdateLinkResponse$ = UpdateLinkResponse$;
2857
+ exports.UpdateLinkRoutingRule$ = UpdateLinkRoutingRule$;
1524
2858
  exports.UpdateLinkRoutingRuleCommand = UpdateLinkRoutingRuleCommand;
2859
+ exports.UpdateLinkRoutingRuleRequest$ = UpdateLinkRoutingRuleRequest$;
2860
+ exports.UpdateLinkRoutingRuleResponse$ = UpdateLinkRoutingRuleResponse$;
2861
+ exports.UpdateRequesterGateway$ = UpdateRequesterGateway$;
1525
2862
  exports.UpdateRequesterGatewayCommand = UpdateRequesterGatewayCommand;
2863
+ exports.UpdateRequesterGatewayRequest$ = UpdateRequesterGatewayRequest$;
2864
+ exports.UpdateRequesterGatewayResponse$ = UpdateRequesterGatewayResponse$;
2865
+ exports.UpdateResponderGateway$ = UpdateResponderGateway$;
1526
2866
  exports.UpdateResponderGatewayCommand = UpdateResponderGatewayCommand;
2867
+ exports.UpdateResponderGatewayRequest$ = UpdateResponderGatewayRequest$;
2868
+ exports.UpdateResponderGatewayResponse$ = UpdateResponderGatewayResponse$;
2869
+ exports.ValidationException = ValidationException;
2870
+ exports.ValidationException$ = ValidationException$;
2871
+ exports.errorTypeRegistries = errorTypeRegistries;
1527
2872
  exports.paginateListCertificateAssociations = paginateListCertificateAssociations;
1528
2873
  exports.paginateListLinkRoutingRules = paginateListLinkRoutingRules;
1529
2874
  exports.paginateListLinks = paginateListLinks;