@aws-sdk/client-rtbfabric 3.1037.0 → 3.1039.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 (28) hide show
  1. package/dist-cjs/index.js +2 -2
  2. package/dist-es/waiters/waitForRequesterGatewayDeleted.js +1 -1
  3. package/dist-es/waiters/waitForResponderGatewayDeleted.js +1 -1
  4. package/dist-types/RTBFabric.d.ts +12 -11
  5. package/dist-types/ts3.4/RTBFabric.d.ts +16 -11
  6. package/dist-types/ts3.4/waiters/waitForInboundExternalLinkActive.d.ts +9 -3
  7. package/dist-types/ts3.4/waiters/waitForInboundExternalLinkDeleted.d.ts +9 -3
  8. package/dist-types/ts3.4/waiters/waitForLinkAccepted.d.ts +7 -3
  9. package/dist-types/ts3.4/waiters/waitForLinkActive.d.ts +7 -3
  10. package/dist-types/ts3.4/waiters/waitForLinkDeleted.d.ts +7 -3
  11. package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkActive.d.ts +9 -3
  12. package/dist-types/ts3.4/waiters/waitForOutboundExternalLinkDeleted.d.ts +9 -3
  13. package/dist-types/ts3.4/waiters/waitForRequesterGatewayActive.d.ts +9 -3
  14. package/dist-types/ts3.4/waiters/waitForRequesterGatewayDeleted.d.ts +12 -3
  15. package/dist-types/ts3.4/waiters/waitForResponderGatewayActive.d.ts +9 -3
  16. package/dist-types/ts3.4/waiters/waitForResponderGatewayDeleted.d.ts +12 -3
  17. package/dist-types/waiters/waitForInboundExternalLinkActive.d.ts +4 -3
  18. package/dist-types/waiters/waitForInboundExternalLinkDeleted.d.ts +4 -3
  19. package/dist-types/waiters/waitForLinkAccepted.d.ts +4 -3
  20. package/dist-types/waiters/waitForLinkActive.d.ts +4 -3
  21. package/dist-types/waiters/waitForLinkDeleted.d.ts +4 -3
  22. package/dist-types/waiters/waitForOutboundExternalLinkActive.d.ts +4 -3
  23. package/dist-types/waiters/waitForOutboundExternalLinkDeleted.d.ts +4 -3
  24. package/dist-types/waiters/waitForRequesterGatewayActive.d.ts +4 -3
  25. package/dist-types/waiters/waitForRequesterGatewayDeleted.d.ts +5 -3
  26. package/dist-types/waiters/waitForResponderGatewayActive.d.ts +4 -3
  27. package/dist-types/waiters/waitForResponderGatewayDeleted.d.ts +5 -3
  28. package/package.json +8 -8
package/dist-cjs/index.js CHANGED
@@ -908,7 +908,7 @@ const checkState$2 = async (client, input) => {
908
908
  }
909
909
  catch (exception) {
910
910
  reason = exception;
911
- if (exception.name && exception.name == "ResourceNotFoundException") {
911
+ if (exception.name === "ResourceNotFoundException") {
912
912
  return { state: utilWaiter.WaiterState.SUCCESS, reason };
913
913
  }
914
914
  }
@@ -998,7 +998,7 @@ const checkState = async (client, input) => {
998
998
  }
999
999
  catch (exception) {
1000
1000
  reason = exception;
1001
- if (exception.name && exception.name == "ResourceNotFoundException") {
1001
+ if (exception.name === "ResourceNotFoundException") {
1002
1002
  return { state: utilWaiter.WaiterState.SUCCESS, reason };
1003
1003
  }
1004
1004
  }
@@ -26,7 +26,7 @@ const checkState = async (client, input) => {
26
26
  }
27
27
  catch (exception) {
28
28
  reason = exception;
29
- if (exception.name && exception.name == "ResourceNotFoundException") {
29
+ if (exception.name === "ResourceNotFoundException") {
30
30
  return { state: WaiterState.SUCCESS, reason };
31
31
  }
32
32
  }
@@ -26,7 +26,7 @@ const checkState = async (client, input) => {
26
26
  }
27
27
  catch (exception) {
28
28
  reason = exception;
29
- if (exception.name && exception.name == "ResourceNotFoundException") {
29
+ if (exception.name === "ResourceNotFoundException") {
30
30
  return { state: WaiterState.SUCCESS, reason };
31
31
  }
32
32
  }
@@ -27,6 +27,7 @@ import { type UpdateLinkCommandInput, type UpdateLinkCommandOutput } from "./com
27
27
  import { type UpdateLinkModuleFlowCommandInput, type UpdateLinkModuleFlowCommandOutput } from "./commands/UpdateLinkModuleFlowCommand";
28
28
  import { type UpdateRequesterGatewayCommandInput, type UpdateRequesterGatewayCommandOutput } from "./commands/UpdateRequesterGatewayCommand";
29
29
  import { type UpdateResponderGatewayCommandInput, type UpdateResponderGatewayCommandOutput } from "./commands/UpdateResponderGatewayCommand";
30
+ import type { ResourceNotFoundException } from "./models/errors";
30
31
  import { RTBFabricClient } from "./RTBFabricClient";
31
32
  export interface RTBFabric {
32
33
  /**
@@ -219,67 +220,67 @@ export interface RTBFabric {
219
220
  * @param args - command input.
220
221
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
221
222
  */
222
- waitUntilInboundExternalLinkActive(args: GetInboundExternalLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
223
+ waitUntilInboundExternalLinkActive(args: GetInboundExternalLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult<GetInboundExternalLinkCommandOutput>>;
223
224
  /**
224
225
  * @see {@link GetInboundExternalLinkCommand}
225
226
  * @param args - command input.
226
227
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
227
228
  */
228
- waitUntilInboundExternalLinkDeleted(args: GetInboundExternalLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
229
+ waitUntilInboundExternalLinkDeleted(args: GetInboundExternalLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult<GetInboundExternalLinkCommandOutput>>;
229
230
  /**
230
231
  * @see {@link GetLinkCommand}
231
232
  * @param args - command input.
232
233
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
233
234
  */
234
- waitUntilLinkAccepted(args: GetLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
235
+ waitUntilLinkAccepted(args: GetLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult<GetLinkCommandOutput>>;
235
236
  /**
236
237
  * @see {@link GetLinkCommand}
237
238
  * @param args - command input.
238
239
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
239
240
  */
240
- waitUntilLinkActive(args: GetLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
241
+ waitUntilLinkActive(args: GetLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult<GetLinkCommandOutput>>;
241
242
  /**
242
243
  * @see {@link GetLinkCommand}
243
244
  * @param args - command input.
244
245
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
245
246
  */
246
- waitUntilLinkDeleted(args: GetLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
247
+ waitUntilLinkDeleted(args: GetLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult<GetLinkCommandOutput>>;
247
248
  /**
248
249
  * @see {@link GetOutboundExternalLinkCommand}
249
250
  * @param args - command input.
250
251
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
251
252
  */
252
- waitUntilOutboundExternalLinkActive(args: GetOutboundExternalLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
253
+ waitUntilOutboundExternalLinkActive(args: GetOutboundExternalLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult<GetOutboundExternalLinkCommandOutput>>;
253
254
  /**
254
255
  * @see {@link GetOutboundExternalLinkCommand}
255
256
  * @param args - command input.
256
257
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
257
258
  */
258
- waitUntilOutboundExternalLinkDeleted(args: GetOutboundExternalLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
259
+ waitUntilOutboundExternalLinkDeleted(args: GetOutboundExternalLinkCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult<GetOutboundExternalLinkCommandOutput>>;
259
260
  /**
260
261
  * @see {@link GetRequesterGatewayCommand}
261
262
  * @param args - command input.
262
263
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
263
264
  */
264
- waitUntilRequesterGatewayActive(args: GetRequesterGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
265
+ waitUntilRequesterGatewayActive(args: GetRequesterGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult<GetRequesterGatewayCommandOutput>>;
265
266
  /**
266
267
  * @see {@link GetRequesterGatewayCommand}
267
268
  * @param args - command input.
268
269
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
269
270
  */
270
- waitUntilRequesterGatewayDeleted(args: GetRequesterGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
271
+ waitUntilRequesterGatewayDeleted(args: GetRequesterGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult<GetRequesterGatewayCommandOutput | ResourceNotFoundException>>;
271
272
  /**
272
273
  * @see {@link GetResponderGatewayCommand}
273
274
  * @param args - command input.
274
275
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
275
276
  */
276
- waitUntilResponderGatewayActive(args: GetResponderGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
277
+ waitUntilResponderGatewayActive(args: GetResponderGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult<GetResponderGatewayCommandOutput>>;
277
278
  /**
278
279
  * @see {@link GetResponderGatewayCommand}
279
280
  * @param args - command input.
280
281
  * @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
281
282
  */
282
- waitUntilResponderGatewayDeleted(args: GetResponderGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult>;
283
+ waitUntilResponderGatewayDeleted(args: GetResponderGatewayCommandInput, waiterConfig: number | Omit<WaiterConfiguration<RTBFabric>, "client">): Promise<WaiterResult<GetResponderGatewayCommandOutput | ResourceNotFoundException>>;
283
284
  }
284
285
  /**
285
286
  * <p>Amazon Web Services RTB Fabric provides secure, low-latency infrastructure for connecting real-time bidding (RTB) applications. Rather than hosting applications directly, RTB Fabric acts as the connecting fabric that enables your applications to communicate efficiently over private networks instead of the public internet. You maintain complete control over your applications, data, and bidding decisions, while RTB Fabric provides the underlying infrastructure for secure, reliable connectivity.</p> <p>You can use these APIs to complete RTB Fabric tasks, such as setting up audit log ingestions or viewing user access. For more information about RTB Fabric, including the required permissions to use the service, see the <a href="https://docs.aws.amazon.com/rtb-fabric/latest/userguide/">Amazon Web Services RTB Fabric User Guide</a>.</p>
@@ -113,6 +113,7 @@ import {
113
113
  UpdateResponderGatewayCommandInput,
114
114
  UpdateResponderGatewayCommandOutput,
115
115
  } from "./commands/UpdateResponderGatewayCommand";
116
+ import { ResourceNotFoundException } from "./models/errors";
116
117
  import { RTBFabricClient } from "./RTBFabricClient";
117
118
  export interface RTBFabric {
118
119
  acceptLink(
@@ -497,7 +498,7 @@ export interface RTBFabric {
497
498
  WaiterConfiguration<RTBFabric>,
498
499
  Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
499
500
  >
500
- ): Promise<WaiterResult>;
501
+ ): Promise<WaiterResult<GetInboundExternalLinkCommandOutput>>;
501
502
  waitUntilInboundExternalLinkDeleted(
502
503
  args: GetInboundExternalLinkCommandInput,
503
504
  waiterConfig:
@@ -506,7 +507,7 @@ export interface RTBFabric {
506
507
  WaiterConfiguration<RTBFabric>,
507
508
  Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
508
509
  >
509
- ): Promise<WaiterResult>;
510
+ ): Promise<WaiterResult<GetInboundExternalLinkCommandOutput>>;
510
511
  waitUntilLinkAccepted(
511
512
  args: GetLinkCommandInput,
512
513
  waiterConfig:
@@ -515,7 +516,7 @@ export interface RTBFabric {
515
516
  WaiterConfiguration<RTBFabric>,
516
517
  Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
517
518
  >
518
- ): Promise<WaiterResult>;
519
+ ): Promise<WaiterResult<GetLinkCommandOutput>>;
519
520
  waitUntilLinkActive(
520
521
  args: GetLinkCommandInput,
521
522
  waiterConfig:
@@ -524,7 +525,7 @@ export interface RTBFabric {
524
525
  WaiterConfiguration<RTBFabric>,
525
526
  Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
526
527
  >
527
- ): Promise<WaiterResult>;
528
+ ): Promise<WaiterResult<GetLinkCommandOutput>>;
528
529
  waitUntilLinkDeleted(
529
530
  args: GetLinkCommandInput,
530
531
  waiterConfig:
@@ -533,7 +534,7 @@ export interface RTBFabric {
533
534
  WaiterConfiguration<RTBFabric>,
534
535
  Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
535
536
  >
536
- ): Promise<WaiterResult>;
537
+ ): Promise<WaiterResult<GetLinkCommandOutput>>;
537
538
  waitUntilOutboundExternalLinkActive(
538
539
  args: GetOutboundExternalLinkCommandInput,
539
540
  waiterConfig:
@@ -542,7 +543,7 @@ export interface RTBFabric {
542
543
  WaiterConfiguration<RTBFabric>,
543
544
  Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
544
545
  >
545
- ): Promise<WaiterResult>;
546
+ ): Promise<WaiterResult<GetOutboundExternalLinkCommandOutput>>;
546
547
  waitUntilOutboundExternalLinkDeleted(
547
548
  args: GetOutboundExternalLinkCommandInput,
548
549
  waiterConfig:
@@ -551,7 +552,7 @@ export interface RTBFabric {
551
552
  WaiterConfiguration<RTBFabric>,
552
553
  Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
553
554
  >
554
- ): Promise<WaiterResult>;
555
+ ): Promise<WaiterResult<GetOutboundExternalLinkCommandOutput>>;
555
556
  waitUntilRequesterGatewayActive(
556
557
  args: GetRequesterGatewayCommandInput,
557
558
  waiterConfig:
@@ -560,7 +561,7 @@ export interface RTBFabric {
560
561
  WaiterConfiguration<RTBFabric>,
561
562
  Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
562
563
  >
563
- ): Promise<WaiterResult>;
564
+ ): Promise<WaiterResult<GetRequesterGatewayCommandOutput>>;
564
565
  waitUntilRequesterGatewayDeleted(
565
566
  args: GetRequesterGatewayCommandInput,
566
567
  waiterConfig:
@@ -569,7 +570,9 @@ export interface RTBFabric {
569
570
  WaiterConfiguration<RTBFabric>,
570
571
  Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
571
572
  >
572
- ): Promise<WaiterResult>;
573
+ ): Promise<
574
+ WaiterResult<GetRequesterGatewayCommandOutput | ResourceNotFoundException>
575
+ >;
573
576
  waitUntilResponderGatewayActive(
574
577
  args: GetResponderGatewayCommandInput,
575
578
  waiterConfig:
@@ -578,7 +581,7 @@ export interface RTBFabric {
578
581
  WaiterConfiguration<RTBFabric>,
579
582
  Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
580
583
  >
581
- ): Promise<WaiterResult>;
584
+ ): Promise<WaiterResult<GetResponderGatewayCommandOutput>>;
582
585
  waitUntilResponderGatewayDeleted(
583
586
  args: GetResponderGatewayCommandInput,
584
587
  waiterConfig:
@@ -587,6 +590,8 @@ export interface RTBFabric {
587
590
  WaiterConfiguration<RTBFabric>,
588
591
  Exclude<keyof WaiterConfiguration<RTBFabric>, "client">
589
592
  >
590
- ): Promise<WaiterResult>;
593
+ ): Promise<
594
+ WaiterResult<GetResponderGatewayCommandOutput | ResourceNotFoundException>
595
+ >;
591
596
  }
592
597
  export declare class RTBFabric extends RTBFabricClient implements RTBFabric {}
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { GetInboundExternalLinkCommandInput } from "../commands/GetInboundExternalLinkCommand";
2
+ import {
3
+ GetInboundExternalLinkCommandInput,
4
+ GetInboundExternalLinkCommandOutput,
5
+ } from "../commands/GetInboundExternalLinkCommand";
6
+ import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
7
  import { RTBFabricClient } from "../RTBFabricClient";
4
8
  export declare const waitForInboundExternalLinkActive: (
5
9
  params: WaiterConfiguration<RTBFabricClient>,
6
10
  input: GetInboundExternalLinkCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<GetInboundExternalLinkCommandOutput | RTBFabricServiceException>
13
+ >;
8
14
  export declare const waitUntilInboundExternalLinkActive: (
9
15
  params: WaiterConfiguration<RTBFabricClient>,
10
16
  input: GetInboundExternalLinkCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<GetInboundExternalLinkCommandOutput>>;
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { GetInboundExternalLinkCommandInput } from "../commands/GetInboundExternalLinkCommand";
2
+ import {
3
+ GetInboundExternalLinkCommandInput,
4
+ GetInboundExternalLinkCommandOutput,
5
+ } from "../commands/GetInboundExternalLinkCommand";
6
+ import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
7
  import { RTBFabricClient } from "../RTBFabricClient";
4
8
  export declare const waitForInboundExternalLinkDeleted: (
5
9
  params: WaiterConfiguration<RTBFabricClient>,
6
10
  input: GetInboundExternalLinkCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<GetInboundExternalLinkCommandOutput | RTBFabricServiceException>
13
+ >;
8
14
  export declare const waitUntilInboundExternalLinkDeleted: (
9
15
  params: WaiterConfiguration<RTBFabricClient>,
10
16
  input: GetInboundExternalLinkCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<GetInboundExternalLinkCommandOutput>>;
@@ -1,11 +1,15 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { GetLinkCommandInput } from "../commands/GetLinkCommand";
2
+ import {
3
+ GetLinkCommandInput,
4
+ GetLinkCommandOutput,
5
+ } from "../commands/GetLinkCommand";
6
+ import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
7
  import { RTBFabricClient } from "../RTBFabricClient";
4
8
  export declare const waitForLinkAccepted: (
5
9
  params: WaiterConfiguration<RTBFabricClient>,
6
10
  input: GetLinkCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<WaiterResult<GetLinkCommandOutput | RTBFabricServiceException>>;
8
12
  export declare const waitUntilLinkAccepted: (
9
13
  params: WaiterConfiguration<RTBFabricClient>,
10
14
  input: GetLinkCommandInput
11
- ) => Promise<WaiterResult>;
15
+ ) => Promise<WaiterResult<GetLinkCommandOutput>>;
@@ -1,11 +1,15 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { GetLinkCommandInput } from "../commands/GetLinkCommand";
2
+ import {
3
+ GetLinkCommandInput,
4
+ GetLinkCommandOutput,
5
+ } from "../commands/GetLinkCommand";
6
+ import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
7
  import { RTBFabricClient } from "../RTBFabricClient";
4
8
  export declare const waitForLinkActive: (
5
9
  params: WaiterConfiguration<RTBFabricClient>,
6
10
  input: GetLinkCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<WaiterResult<GetLinkCommandOutput | RTBFabricServiceException>>;
8
12
  export declare const waitUntilLinkActive: (
9
13
  params: WaiterConfiguration<RTBFabricClient>,
10
14
  input: GetLinkCommandInput
11
- ) => Promise<WaiterResult>;
15
+ ) => Promise<WaiterResult<GetLinkCommandOutput>>;
@@ -1,11 +1,15 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { GetLinkCommandInput } from "../commands/GetLinkCommand";
2
+ import {
3
+ GetLinkCommandInput,
4
+ GetLinkCommandOutput,
5
+ } from "../commands/GetLinkCommand";
6
+ import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
7
  import { RTBFabricClient } from "../RTBFabricClient";
4
8
  export declare const waitForLinkDeleted: (
5
9
  params: WaiterConfiguration<RTBFabricClient>,
6
10
  input: GetLinkCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<WaiterResult<GetLinkCommandOutput | RTBFabricServiceException>>;
8
12
  export declare const waitUntilLinkDeleted: (
9
13
  params: WaiterConfiguration<RTBFabricClient>,
10
14
  input: GetLinkCommandInput
11
- ) => Promise<WaiterResult>;
15
+ ) => Promise<WaiterResult<GetLinkCommandOutput>>;
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { GetOutboundExternalLinkCommandInput } from "../commands/GetOutboundExternalLinkCommand";
2
+ import {
3
+ GetOutboundExternalLinkCommandInput,
4
+ GetOutboundExternalLinkCommandOutput,
5
+ } from "../commands/GetOutboundExternalLinkCommand";
6
+ import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
7
  import { RTBFabricClient } from "../RTBFabricClient";
4
8
  export declare const waitForOutboundExternalLinkActive: (
5
9
  params: WaiterConfiguration<RTBFabricClient>,
6
10
  input: GetOutboundExternalLinkCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<GetOutboundExternalLinkCommandOutput | RTBFabricServiceException>
13
+ >;
8
14
  export declare const waitUntilOutboundExternalLinkActive: (
9
15
  params: WaiterConfiguration<RTBFabricClient>,
10
16
  input: GetOutboundExternalLinkCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<GetOutboundExternalLinkCommandOutput>>;
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { GetOutboundExternalLinkCommandInput } from "../commands/GetOutboundExternalLinkCommand";
2
+ import {
3
+ GetOutboundExternalLinkCommandInput,
4
+ GetOutboundExternalLinkCommandOutput,
5
+ } from "../commands/GetOutboundExternalLinkCommand";
6
+ import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
7
  import { RTBFabricClient } from "../RTBFabricClient";
4
8
  export declare const waitForOutboundExternalLinkDeleted: (
5
9
  params: WaiterConfiguration<RTBFabricClient>,
6
10
  input: GetOutboundExternalLinkCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<GetOutboundExternalLinkCommandOutput | RTBFabricServiceException>
13
+ >;
8
14
  export declare const waitUntilOutboundExternalLinkDeleted: (
9
15
  params: WaiterConfiguration<RTBFabricClient>,
10
16
  input: GetOutboundExternalLinkCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<GetOutboundExternalLinkCommandOutput>>;
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { GetRequesterGatewayCommandInput } from "../commands/GetRequesterGatewayCommand";
2
+ import {
3
+ GetRequesterGatewayCommandInput,
4
+ GetRequesterGatewayCommandOutput,
5
+ } from "../commands/GetRequesterGatewayCommand";
6
+ import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
7
  import { RTBFabricClient } from "../RTBFabricClient";
4
8
  export declare const waitForRequesterGatewayActive: (
5
9
  params: WaiterConfiguration<RTBFabricClient>,
6
10
  input: GetRequesterGatewayCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<GetRequesterGatewayCommandOutput | RTBFabricServiceException>
13
+ >;
8
14
  export declare const waitUntilRequesterGatewayActive: (
9
15
  params: WaiterConfiguration<RTBFabricClient>,
10
16
  input: GetRequesterGatewayCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<GetRequesterGatewayCommandOutput>>;
@@ -1,11 +1,20 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { GetRequesterGatewayCommandInput } from "../commands/GetRequesterGatewayCommand";
2
+ import {
3
+ GetRequesterGatewayCommandInput,
4
+ GetRequesterGatewayCommandOutput,
5
+ } from "../commands/GetRequesterGatewayCommand";
6
+ import { ResourceNotFoundException } from "../models/errors";
7
+ import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
8
  import { RTBFabricClient } from "../RTBFabricClient";
4
9
  export declare const waitForRequesterGatewayDeleted: (
5
10
  params: WaiterConfiguration<RTBFabricClient>,
6
11
  input: GetRequesterGatewayCommandInput
7
- ) => Promise<WaiterResult>;
12
+ ) => Promise<
13
+ WaiterResult<GetRequesterGatewayCommandOutput | RTBFabricServiceException>
14
+ >;
8
15
  export declare const waitUntilRequesterGatewayDeleted: (
9
16
  params: WaiterConfiguration<RTBFabricClient>,
10
17
  input: GetRequesterGatewayCommandInput
11
- ) => Promise<WaiterResult>;
18
+ ) => Promise<
19
+ WaiterResult<GetRequesterGatewayCommandOutput | ResourceNotFoundException>
20
+ >;
@@ -1,11 +1,17 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { GetResponderGatewayCommandInput } from "../commands/GetResponderGatewayCommand";
2
+ import {
3
+ GetResponderGatewayCommandInput,
4
+ GetResponderGatewayCommandOutput,
5
+ } from "../commands/GetResponderGatewayCommand";
6
+ import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
7
  import { RTBFabricClient } from "../RTBFabricClient";
4
8
  export declare const waitForResponderGatewayActive: (
5
9
  params: WaiterConfiguration<RTBFabricClient>,
6
10
  input: GetResponderGatewayCommandInput
7
- ) => Promise<WaiterResult>;
11
+ ) => Promise<
12
+ WaiterResult<GetResponderGatewayCommandOutput | RTBFabricServiceException>
13
+ >;
8
14
  export declare const waitUntilResponderGatewayActive: (
9
15
  params: WaiterConfiguration<RTBFabricClient>,
10
16
  input: GetResponderGatewayCommandInput
11
- ) => Promise<WaiterResult>;
17
+ ) => Promise<WaiterResult<GetResponderGatewayCommandOutput>>;
@@ -1,11 +1,20 @@
1
1
  import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
- import { GetResponderGatewayCommandInput } from "../commands/GetResponderGatewayCommand";
2
+ import {
3
+ GetResponderGatewayCommandInput,
4
+ GetResponderGatewayCommandOutput,
5
+ } from "../commands/GetResponderGatewayCommand";
6
+ import { ResourceNotFoundException } from "../models/errors";
7
+ import { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
8
  import { RTBFabricClient } from "../RTBFabricClient";
4
9
  export declare const waitForResponderGatewayDeleted: (
5
10
  params: WaiterConfiguration<RTBFabricClient>,
6
11
  input: GetResponderGatewayCommandInput
7
- ) => Promise<WaiterResult>;
12
+ ) => Promise<
13
+ WaiterResult<GetResponderGatewayCommandOutput | RTBFabricServiceException>
14
+ >;
8
15
  export declare const waitUntilResponderGatewayDeleted: (
9
16
  params: WaiterConfiguration<RTBFabricClient>,
10
17
  input: GetResponderGatewayCommandInput
11
- ) => Promise<WaiterResult>;
18
+ ) => Promise<
19
+ WaiterResult<GetResponderGatewayCommandOutput | ResourceNotFoundException>
20
+ >;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
- import { type GetInboundExternalLinkCommandInput } from "../commands/GetInboundExternalLinkCommand";
2
+ import { type GetInboundExternalLinkCommandInput, type GetInboundExternalLinkCommandOutput } from "../commands/GetInboundExternalLinkCommand";
3
+ import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
4
  import type { RTBFabricClient } from "../RTBFabricClient";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilInboundExternalLinkActive instead. waitForInboundExternalLinkActive does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForInboundExternalLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetInboundExternalLinkCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForInboundExternalLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetInboundExternalLinkCommandInput) => Promise<WaiterResult<GetInboundExternalLinkCommandOutput | RTBFabricServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetInboundExternalLinkCommand for polling.
13
14
  */
14
- export declare const waitUntilInboundExternalLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetInboundExternalLinkCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilInboundExternalLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetInboundExternalLinkCommandInput) => Promise<WaiterResult<GetInboundExternalLinkCommandOutput>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
- import { type GetInboundExternalLinkCommandInput } from "../commands/GetInboundExternalLinkCommand";
2
+ import { type GetInboundExternalLinkCommandInput, type GetInboundExternalLinkCommandOutput } from "../commands/GetInboundExternalLinkCommand";
3
+ import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
4
  import type { RTBFabricClient } from "../RTBFabricClient";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilInboundExternalLinkDeleted instead. waitForInboundExternalLinkDeleted does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForInboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetInboundExternalLinkCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForInboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetInboundExternalLinkCommandInput) => Promise<WaiterResult<GetInboundExternalLinkCommandOutput | RTBFabricServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetInboundExternalLinkCommand for polling.
13
14
  */
14
- export declare const waitUntilInboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetInboundExternalLinkCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilInboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetInboundExternalLinkCommandInput) => Promise<WaiterResult<GetInboundExternalLinkCommandOutput>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
- import { type GetLinkCommandInput } from "../commands/GetLinkCommand";
2
+ import { type GetLinkCommandInput, type GetLinkCommandOutput } from "../commands/GetLinkCommand";
3
+ import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
4
  import type { RTBFabricClient } from "../RTBFabricClient";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilLinkAccepted instead. waitForLinkAccepted does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForLinkAccepted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForLinkAccepted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult<GetLinkCommandOutput | RTBFabricServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetLinkCommand for polling.
13
14
  */
14
- export declare const waitUntilLinkAccepted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilLinkAccepted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult<GetLinkCommandOutput>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
- import { type GetLinkCommandInput } from "../commands/GetLinkCommand";
2
+ import { type GetLinkCommandInput, type GetLinkCommandOutput } from "../commands/GetLinkCommand";
3
+ import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
4
  import type { RTBFabricClient } from "../RTBFabricClient";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilLinkActive instead. waitForLinkActive does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult<GetLinkCommandOutput | RTBFabricServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetLinkCommand for polling.
13
14
  */
14
- export declare const waitUntilLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult<GetLinkCommandOutput>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
- import { type GetLinkCommandInput } from "../commands/GetLinkCommand";
2
+ import { type GetLinkCommandInput, type GetLinkCommandOutput } from "../commands/GetLinkCommand";
3
+ import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
4
  import type { RTBFabricClient } from "../RTBFabricClient";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilLinkDeleted instead. waitForLinkDeleted does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult<GetLinkCommandOutput | RTBFabricServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetLinkCommand for polling.
13
14
  */
14
- export declare const waitUntilLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetLinkCommandInput) => Promise<WaiterResult<GetLinkCommandOutput>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
- import { type GetOutboundExternalLinkCommandInput } from "../commands/GetOutboundExternalLinkCommand";
2
+ import { type GetOutboundExternalLinkCommandInput, type GetOutboundExternalLinkCommandOutput } from "../commands/GetOutboundExternalLinkCommand";
3
+ import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
4
  import type { RTBFabricClient } from "../RTBFabricClient";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilOutboundExternalLinkActive instead. waitForOutboundExternalLinkActive does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForOutboundExternalLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetOutboundExternalLinkCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForOutboundExternalLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetOutboundExternalLinkCommandInput) => Promise<WaiterResult<GetOutboundExternalLinkCommandOutput | RTBFabricServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetOutboundExternalLinkCommand for polling.
13
14
  */
14
- export declare const waitUntilOutboundExternalLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetOutboundExternalLinkCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilOutboundExternalLinkActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetOutboundExternalLinkCommandInput) => Promise<WaiterResult<GetOutboundExternalLinkCommandOutput>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
- import { type GetOutboundExternalLinkCommandInput } from "../commands/GetOutboundExternalLinkCommand";
2
+ import { type GetOutboundExternalLinkCommandInput, type GetOutboundExternalLinkCommandOutput } from "../commands/GetOutboundExternalLinkCommand";
3
+ import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
4
  import type { RTBFabricClient } from "../RTBFabricClient";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilOutboundExternalLinkDeleted instead. waitForOutboundExternalLinkDeleted does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForOutboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetOutboundExternalLinkCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForOutboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetOutboundExternalLinkCommandInput) => Promise<WaiterResult<GetOutboundExternalLinkCommandOutput | RTBFabricServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetOutboundExternalLinkCommand for polling.
13
14
  */
14
- export declare const waitUntilOutboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetOutboundExternalLinkCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilOutboundExternalLinkDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetOutboundExternalLinkCommandInput) => Promise<WaiterResult<GetOutboundExternalLinkCommandOutput>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
- import { type GetRequesterGatewayCommandInput } from "../commands/GetRequesterGatewayCommand";
2
+ import { type GetRequesterGatewayCommandInput, type GetRequesterGatewayCommandOutput } from "../commands/GetRequesterGatewayCommand";
3
+ import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
4
  import type { RTBFabricClient } from "../RTBFabricClient";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilRequesterGatewayActive instead. waitForRequesterGatewayActive does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForRequesterGatewayActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetRequesterGatewayCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForRequesterGatewayActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetRequesterGatewayCommandInput) => Promise<WaiterResult<GetRequesterGatewayCommandOutput | RTBFabricServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetRequesterGatewayCommand for polling.
13
14
  */
14
- export declare const waitUntilRequesterGatewayActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetRequesterGatewayCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilRequesterGatewayActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetRequesterGatewayCommandInput) => Promise<WaiterResult<GetRequesterGatewayCommandOutput>>;
@@ -1,14 +1,16 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
- import { type GetRequesterGatewayCommandInput } from "../commands/GetRequesterGatewayCommand";
2
+ import { type GetRequesterGatewayCommandInput, type GetRequesterGatewayCommandOutput } from "../commands/GetRequesterGatewayCommand";
3
+ import type { ResourceNotFoundException } from "../models/errors";
4
+ import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
5
  import type { RTBFabricClient } from "../RTBFabricClient";
4
6
  /**
5
7
  *
6
8
  * @deprecated Use waitUntilRequesterGatewayDeleted instead. waitForRequesterGatewayDeleted does not throw error in non-success cases.
7
9
  */
8
- export declare const waitForRequesterGatewayDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetRequesterGatewayCommandInput) => Promise<WaiterResult>;
10
+ export declare const waitForRequesterGatewayDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetRequesterGatewayCommandInput) => Promise<WaiterResult<GetRequesterGatewayCommandOutput | RTBFabricServiceException>>;
9
11
  /**
10
12
  *
11
13
  * @param params - Waiter configuration options.
12
14
  * @param input - The input to GetRequesterGatewayCommand for polling.
13
15
  */
14
- export declare const waitUntilRequesterGatewayDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetRequesterGatewayCommandInput) => Promise<WaiterResult>;
16
+ export declare const waitUntilRequesterGatewayDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetRequesterGatewayCommandInput) => Promise<WaiterResult<GetRequesterGatewayCommandOutput | ResourceNotFoundException>>;
@@ -1,14 +1,15 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
- import { type GetResponderGatewayCommandInput } from "../commands/GetResponderGatewayCommand";
2
+ import { type GetResponderGatewayCommandInput, type GetResponderGatewayCommandOutput } from "../commands/GetResponderGatewayCommand";
3
+ import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
4
  import type { RTBFabricClient } from "../RTBFabricClient";
4
5
  /**
5
6
  *
6
7
  * @deprecated Use waitUntilResponderGatewayActive instead. waitForResponderGatewayActive does not throw error in non-success cases.
7
8
  */
8
- export declare const waitForResponderGatewayActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetResponderGatewayCommandInput) => Promise<WaiterResult>;
9
+ export declare const waitForResponderGatewayActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetResponderGatewayCommandInput) => Promise<WaiterResult<GetResponderGatewayCommandOutput | RTBFabricServiceException>>;
9
10
  /**
10
11
  *
11
12
  * @param params - Waiter configuration options.
12
13
  * @param input - The input to GetResponderGatewayCommand for polling.
13
14
  */
14
- export declare const waitUntilResponderGatewayActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetResponderGatewayCommandInput) => Promise<WaiterResult>;
15
+ export declare const waitUntilResponderGatewayActive: (params: WaiterConfiguration<RTBFabricClient>, input: GetResponderGatewayCommandInput) => Promise<WaiterResult<GetResponderGatewayCommandOutput>>;
@@ -1,14 +1,16 @@
1
1
  import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
2
- import { type GetResponderGatewayCommandInput } from "../commands/GetResponderGatewayCommand";
2
+ import { type GetResponderGatewayCommandInput, type GetResponderGatewayCommandOutput } from "../commands/GetResponderGatewayCommand";
3
+ import type { ResourceNotFoundException } from "../models/errors";
4
+ import type { RTBFabricServiceException } from "../models/RTBFabricServiceException";
3
5
  import type { RTBFabricClient } from "../RTBFabricClient";
4
6
  /**
5
7
  *
6
8
  * @deprecated Use waitUntilResponderGatewayDeleted instead. waitForResponderGatewayDeleted does not throw error in non-success cases.
7
9
  */
8
- export declare const waitForResponderGatewayDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetResponderGatewayCommandInput) => Promise<WaiterResult>;
10
+ export declare const waitForResponderGatewayDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetResponderGatewayCommandInput) => Promise<WaiterResult<GetResponderGatewayCommandOutput | RTBFabricServiceException>>;
9
11
  /**
10
12
  *
11
13
  * @param params - Waiter configuration options.
12
14
  * @param input - The input to GetResponderGatewayCommand for polling.
13
15
  */
14
- export declare const waitUntilResponderGatewayDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetResponderGatewayCommandInput) => Promise<WaiterResult>;
16
+ export declare const waitUntilResponderGatewayDeleted: (params: WaiterConfiguration<RTBFabricClient>, input: GetResponderGatewayCommandInput) => Promise<WaiterResult<GetResponderGatewayCommandOutput | ResourceNotFoundException>>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rtbfabric",
3
3
  "description": "AWS SDK for JavaScript Rtbfabric Client for Node.js, Browser and React Native",
4
- "version": "3.1037.0",
4
+ "version": "3.1039.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-rtbfabric",
@@ -21,17 +21,17 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.5",
25
- "@aws-sdk/credential-provider-node": "^3.972.36",
24
+ "@aws-sdk/core": "^3.974.7",
25
+ "@aws-sdk/credential-provider-node": "^3.972.38",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.10",
27
27
  "@aws-sdk/middleware-logger": "^3.972.10",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.11",
29
- "@aws-sdk/middleware-user-agent": "^3.972.35",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.37",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.13",
31
31
  "@aws-sdk/types": "^3.973.8",
32
32
  "@aws-sdk/util-endpoints": "^3.996.8",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.10",
34
- "@aws-sdk/util-user-agent-node": "^3.973.21",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.23",
35
35
  "@smithy/config-resolver": "^4.4.17",
36
36
  "@smithy/core": "^3.23.17",
37
37
  "@smithy/fetch-http-handler": "^5.3.17",
@@ -39,7 +39,7 @@
39
39
  "@smithy/invalid-dependency": "^4.2.14",
40
40
  "@smithy/middleware-content-length": "^4.2.14",
41
41
  "@smithy/middleware-endpoint": "^4.4.32",
42
- "@smithy/middleware-retry": "^4.5.5",
42
+ "@smithy/middleware-retry": "^4.5.7",
43
43
  "@smithy/middleware-serde": "^4.2.20",
44
44
  "@smithy/middleware-stack": "^4.2.14",
45
45
  "@smithy/node-config-provider": "^4.3.14",
@@ -55,9 +55,9 @@
55
55
  "@smithy/util-defaults-mode-node": "^4.2.54",
56
56
  "@smithy/util-endpoints": "^3.4.2",
57
57
  "@smithy/util-middleware": "^4.2.14",
58
- "@smithy/util-retry": "^4.3.4",
58
+ "@smithy/util-retry": "^4.3.6",
59
59
  "@smithy/util-utf8": "^4.2.2",
60
- "@smithy/util-waiter": "^4.2.16",
60
+ "@smithy/util-waiter": "^4.3.0",
61
61
  "tslib": "^2.6.2"
62
62
  },
63
63
  "devDependencies": {