aws-sdk-rtbfabric 1.0.0 → 1.2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rtbfabric/client.rb +37 -21
- data/lib/aws-sdk-rtbfabric/client_api.rb +7 -0
- data/lib/aws-sdk-rtbfabric/types.rb +20 -0
- data/lib/aws-sdk-rtbfabric.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/types.rbs +8 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 33e6c8273c23deb7f6c91431cce7b1489efd00e2f14410bd3f8c5a8a5d820f7d
|
|
4
|
+
data.tar.gz: 97b9e090db3f9c61f87594622ef97e3bdbccab2d5c4aa42bedbae910da169a36
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d65dab2e9b568b586540d6034e096042290dd2fa52792197d619a2227893a11ead643b1fc38875ed1f9e5106ec0f2fd8f62a1b378e96e9348ad4ce6ca3614f28
|
|
7
|
+
data.tar.gz: 64c1c9f86164a86299af7ac4258dcb0e387b1b0531bcb8731b6401fe263d6bcfc073bcedd237aead8222f58fb1be50a7321c320fc8506b3de8c17338bb537ca3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.2.0 (2025-10-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - RTB Fabric documentation update.
|
|
8
|
+
|
|
9
|
+
1.1.0 (2025-10-24)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Add support for custom rate limits.
|
|
13
|
+
|
|
4
14
|
1.0.0 (2025-10-22)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.2.0
|
|
@@ -476,11 +476,11 @@ module Aws::RTBFabric
|
|
|
476
476
|
|
|
477
477
|
# @!group API Operations
|
|
478
478
|
|
|
479
|
-
# Accepts a link request between
|
|
479
|
+
# Accepts a link request between gateways.
|
|
480
480
|
#
|
|
481
|
-
# When a requester
|
|
482
|
-
#
|
|
483
|
-
#
|
|
481
|
+
# When a requester gateway requests to link with a responder gateway,
|
|
482
|
+
# the responder can use this operation to accept the link request and
|
|
483
|
+
# establish the connection.
|
|
484
484
|
#
|
|
485
485
|
# @option params [required, String] :gateway_id
|
|
486
486
|
# The unique identifier of the gateway.
|
|
@@ -587,6 +587,7 @@ module Aws::RTBFabric
|
|
|
587
587
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
588
588
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
589
589
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
590
|
+
# resp.flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
590
591
|
# resp.pending_flow_modules #=> Array
|
|
591
592
|
# resp.pending_flow_modules[0].version #=> String
|
|
592
593
|
# resp.pending_flow_modules[0].name #=> String
|
|
@@ -605,6 +606,7 @@ module Aws::RTBFabric
|
|
|
605
606
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
606
607
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
607
608
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
609
|
+
# resp.pending_flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
608
610
|
# resp.attributes.responder_error_masking #=> Array
|
|
609
611
|
# resp.attributes.responder_error_masking[0].http_code #=> String
|
|
610
612
|
# resp.attributes.responder_error_masking[0].action #=> String, one of "NO_BID", "PASSTHROUGH"
|
|
@@ -703,10 +705,10 @@ module Aws::RTBFabric
|
|
|
703
705
|
req.send_request(options)
|
|
704
706
|
end
|
|
705
707
|
|
|
706
|
-
# Creates a new link between
|
|
708
|
+
# Creates a new link between gateways.
|
|
707
709
|
#
|
|
708
|
-
# Establishes a connection that allows
|
|
709
|
-
#
|
|
710
|
+
# Establishes a connection that allows gateways to communicate and
|
|
711
|
+
# exchange bid requests and responses.
|
|
710
712
|
#
|
|
711
713
|
# @option params [required, String] :gateway_id
|
|
712
714
|
# The unique identifier of the gateway.
|
|
@@ -825,6 +827,7 @@ module Aws::RTBFabric
|
|
|
825
827
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
826
828
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
827
829
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
830
|
+
# resp.flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
828
831
|
# resp.pending_flow_modules #=> Array
|
|
829
832
|
# resp.pending_flow_modules[0].version #=> String
|
|
830
833
|
# resp.pending_flow_modules[0].name #=> String
|
|
@@ -843,6 +846,7 @@ module Aws::RTBFabric
|
|
|
843
846
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
844
847
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
845
848
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
849
|
+
# resp.pending_flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
846
850
|
# resp.attributes.responder_error_masking #=> Array
|
|
847
851
|
# resp.attributes.responder_error_masking[0].http_code #=> String
|
|
848
852
|
# resp.attributes.responder_error_masking[0].action #=> String, one of "NO_BID", "PASSTHROUGH"
|
|
@@ -1015,6 +1019,8 @@ module Aws::RTBFabric
|
|
|
1015
1019
|
|
|
1016
1020
|
# Creates a responder gateway.
|
|
1017
1021
|
#
|
|
1022
|
+
# A domain name or managed endpoint is required.
|
|
1023
|
+
#
|
|
1018
1024
|
# @option params [required, String] :vpc_id
|
|
1019
1025
|
# The unique identifier of the Virtual Private Cloud (VPC).
|
|
1020
1026
|
#
|
|
@@ -1180,10 +1186,10 @@ module Aws::RTBFabric
|
|
|
1180
1186
|
req.send_request(options)
|
|
1181
1187
|
end
|
|
1182
1188
|
|
|
1183
|
-
# Deletes a link between
|
|
1189
|
+
# Deletes a link between gateways.
|
|
1184
1190
|
#
|
|
1185
|
-
# Permanently removes the connection between
|
|
1186
|
-
#
|
|
1191
|
+
# Permanently removes the connection between gateways. This action
|
|
1192
|
+
# cannot be undone.
|
|
1187
1193
|
#
|
|
1188
1194
|
# @option params [required, String] :gateway_id
|
|
1189
1195
|
# The unique identifier of the gateway.
|
|
@@ -1445,6 +1451,7 @@ module Aws::RTBFabric
|
|
|
1445
1451
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
1446
1452
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
1447
1453
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
1454
|
+
# resp.flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
1448
1455
|
# resp.pending_flow_modules #=> Array
|
|
1449
1456
|
# resp.pending_flow_modules[0].version #=> String
|
|
1450
1457
|
# resp.pending_flow_modules[0].name #=> String
|
|
@@ -1463,6 +1470,7 @@ module Aws::RTBFabric
|
|
|
1463
1470
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
1464
1471
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
1465
1472
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
1473
|
+
# resp.pending_flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
1466
1474
|
# resp.attributes.responder_error_masking #=> Array
|
|
1467
1475
|
# resp.attributes.responder_error_masking[0].http_code #=> String
|
|
1468
1476
|
# resp.attributes.responder_error_masking[0].action #=> String, one of "NO_BID", "PASSTHROUGH"
|
|
@@ -1489,10 +1497,10 @@ module Aws::RTBFabric
|
|
|
1489
1497
|
req.send_request(options)
|
|
1490
1498
|
end
|
|
1491
1499
|
|
|
1492
|
-
# Retrieves information about a link between
|
|
1500
|
+
# Retrieves information about a link between gateways.
|
|
1493
1501
|
#
|
|
1494
1502
|
# Returns detailed information about the link configuration, status, and
|
|
1495
|
-
# associated
|
|
1503
|
+
# associated gateways.
|
|
1496
1504
|
#
|
|
1497
1505
|
# @option params [required, String] :gateway_id
|
|
1498
1506
|
# The unique identifier of the gateway.
|
|
@@ -1568,6 +1576,7 @@ module Aws::RTBFabric
|
|
|
1568
1576
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
1569
1577
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
1570
1578
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
1579
|
+
# resp.flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
1571
1580
|
# resp.pending_flow_modules #=> Array
|
|
1572
1581
|
# resp.pending_flow_modules[0].version #=> String
|
|
1573
1582
|
# resp.pending_flow_modules[0].name #=> String
|
|
@@ -1586,6 +1595,7 @@ module Aws::RTBFabric
|
|
|
1586
1595
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
1587
1596
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
1588
1597
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
1598
|
+
# resp.pending_flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
1589
1599
|
# resp.attributes.responder_error_masking #=> Array
|
|
1590
1600
|
# resp.attributes.responder_error_masking[0].http_code #=> String
|
|
1591
1601
|
# resp.attributes.responder_error_masking[0].action #=> String, one of "NO_BID", "PASSTHROUGH"
|
|
@@ -1881,10 +1891,10 @@ module Aws::RTBFabric
|
|
|
1881
1891
|
req.send_request(options)
|
|
1882
1892
|
end
|
|
1883
1893
|
|
|
1884
|
-
# Lists links associated with
|
|
1894
|
+
# Lists links associated with gateways.
|
|
1885
1895
|
#
|
|
1886
|
-
# Returns a list of all links for the specified
|
|
1887
|
-
#
|
|
1896
|
+
# Returns a list of all links for the specified gateways, including
|
|
1897
|
+
# their status and configuration details.
|
|
1888
1898
|
#
|
|
1889
1899
|
# @option params [required, String] :gateway_id
|
|
1890
1900
|
# The unique identifier of the gateway.
|
|
@@ -1970,6 +1980,7 @@ module Aws::RTBFabric
|
|
|
1970
1980
|
# resp.links[0].flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
1971
1981
|
# resp.links[0].flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
1972
1982
|
# resp.links[0].flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
1983
|
+
# resp.links[0].flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
1973
1984
|
# resp.links[0].pending_flow_modules #=> Array
|
|
1974
1985
|
# resp.links[0].pending_flow_modules[0].version #=> String
|
|
1975
1986
|
# resp.links[0].pending_flow_modules[0].name #=> String
|
|
@@ -1988,6 +1999,7 @@ module Aws::RTBFabric
|
|
|
1988
1999
|
# resp.links[0].pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
1989
2000
|
# resp.links[0].pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
1990
2001
|
# resp.links[0].pending_flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
2002
|
+
# resp.links[0].pending_flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
1991
2003
|
# resp.links[0].attributes.responder_error_masking #=> Array
|
|
1992
2004
|
# resp.links[0].attributes.responder_error_masking[0].http_code #=> String
|
|
1993
2005
|
# resp.links[0].attributes.responder_error_masking[0].action #=> String, one of "NO_BID", "PASSTHROUGH"
|
|
@@ -2218,11 +2230,10 @@ module Aws::RTBFabric
|
|
|
2218
2230
|
req.send_request(options)
|
|
2219
2231
|
end
|
|
2220
2232
|
|
|
2221
|
-
# Rejects a link request between
|
|
2233
|
+
# Rejects a link request between gateways.
|
|
2222
2234
|
#
|
|
2223
|
-
# When a requester
|
|
2224
|
-
#
|
|
2225
|
-
# request.
|
|
2235
|
+
# When a requester gateway requests to link with a responder gateway,
|
|
2236
|
+
# the responder can use this operation to decline the link request.
|
|
2226
2237
|
#
|
|
2227
2238
|
# @option params [required, String] :gateway_id
|
|
2228
2239
|
# The unique identifier of the gateway.
|
|
@@ -2296,6 +2307,7 @@ module Aws::RTBFabric
|
|
|
2296
2307
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
2297
2308
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
2298
2309
|
# resp.flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
2310
|
+
# resp.flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
2299
2311
|
# resp.pending_flow_modules #=> Array
|
|
2300
2312
|
# resp.pending_flow_modules[0].version #=> String
|
|
2301
2313
|
# resp.pending_flow_modules[0].name #=> String
|
|
@@ -2314,6 +2326,7 @@ module Aws::RTBFabric
|
|
|
2314
2326
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.name #=> String
|
|
2315
2327
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.action.header_tag.value #=> String
|
|
2316
2328
|
# resp.pending_flow_modules[0].module_parameters.open_rtb_attribute.holdback_percentage #=> Float
|
|
2329
|
+
# resp.pending_flow_modules[0].module_parameters.rate_limiter.tps #=> Float
|
|
2317
2330
|
# resp.attributes.responder_error_masking #=> Array
|
|
2318
2331
|
# resp.attributes.responder_error_masking[0].http_code #=> String
|
|
2319
2332
|
# resp.attributes.responder_error_masking[0].action #=> String, one of "NO_BID", "PASSTHROUGH"
|
|
@@ -2422,7 +2435,7 @@ module Aws::RTBFabric
|
|
|
2422
2435
|
req.send_request(options)
|
|
2423
2436
|
end
|
|
2424
2437
|
|
|
2425
|
-
# Updates the configuration of a link between
|
|
2438
|
+
# Updates the configuration of a link between gateways.
|
|
2426
2439
|
#
|
|
2427
2440
|
# Allows you to modify settings and parameters for an existing link.
|
|
2428
2441
|
#
|
|
@@ -2589,6 +2602,9 @@ module Aws::RTBFabric
|
|
|
2589
2602
|
# },
|
|
2590
2603
|
# holdback_percentage: 1.0, # required
|
|
2591
2604
|
# },
|
|
2605
|
+
# rate_limiter: {
|
|
2606
|
+
# tps: 1.0,
|
|
2607
|
+
# },
|
|
2592
2608
|
# },
|
|
2593
2609
|
# },
|
|
2594
2610
|
# ],
|
|
@@ -2780,7 +2796,7 @@ module Aws::RTBFabric
|
|
|
2780
2796
|
tracer: tracer
|
|
2781
2797
|
)
|
|
2782
2798
|
context[:gem_name] = 'aws-sdk-rtbfabric'
|
|
2783
|
-
context[:gem_version] = '1.
|
|
2799
|
+
context[:gem_version] = '1.2.0'
|
|
2784
2800
|
Seahorse::Client::Request.new(handlers, context)
|
|
2785
2801
|
end
|
|
2786
2802
|
|
|
@@ -62,6 +62,7 @@ module Aws::RTBFabric
|
|
|
62
62
|
FilterCriterion = Shapes::StructureShape.new(name: 'FilterCriterion')
|
|
63
63
|
FilterCriterionValuesList = Shapes::ListShape.new(name: 'FilterCriterionValuesList')
|
|
64
64
|
FilterType = Shapes::StringShape.new(name: 'FilterType')
|
|
65
|
+
Float = Shapes::FloatShape.new(name: 'Float')
|
|
65
66
|
FlowModuleName = Shapes::StringShape.new(name: 'FlowModuleName')
|
|
66
67
|
FlowModuleNameList = Shapes::ListShape.new(name: 'FlowModuleNameList')
|
|
67
68
|
GatewayId = Shapes::StringShape.new(name: 'GatewayId')
|
|
@@ -123,6 +124,7 @@ module Aws::RTBFabric
|
|
|
123
124
|
OpenRtbAttributeModuleParameters = Shapes::StructureShape.new(name: 'OpenRtbAttributeModuleParameters')
|
|
124
125
|
OpenRtbAttributeModuleParametersHoldbackPercentageFloat = Shapes::FloatShape.new(name: 'OpenRtbAttributeModuleParametersHoldbackPercentageFloat')
|
|
125
126
|
Protocol = Shapes::StringShape.new(name: 'Protocol')
|
|
127
|
+
RateLimiterModuleParameters = Shapes::StructureShape.new(name: 'RateLimiterModuleParameters')
|
|
126
128
|
RejectLinkRequest = Shapes::StructureShape.new(name: 'RejectLinkRequest')
|
|
127
129
|
RejectLinkResponse = Shapes::StructureShape.new(name: 'RejectLinkResponse')
|
|
128
130
|
RequesterGatewayStatus = Shapes::StringShape.new(name: 'RequesterGatewayStatus')
|
|
@@ -532,9 +534,11 @@ module Aws::RTBFabric
|
|
|
532
534
|
|
|
533
535
|
ModuleParameters.add_member(:no_bid, Shapes::ShapeRef.new(shape: NoBidModuleParameters, location_name: "noBid"))
|
|
534
536
|
ModuleParameters.add_member(:open_rtb_attribute, Shapes::ShapeRef.new(shape: OpenRtbAttributeModuleParameters, location_name: "openRtbAttribute"))
|
|
537
|
+
ModuleParameters.add_member(:rate_limiter, Shapes::ShapeRef.new(shape: RateLimiterModuleParameters, location_name: "rateLimiter"))
|
|
535
538
|
ModuleParameters.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
536
539
|
ModuleParameters.add_member_subclass(:no_bid, Types::ModuleParameters::NoBid)
|
|
537
540
|
ModuleParameters.add_member_subclass(:open_rtb_attribute, Types::ModuleParameters::OpenRtbAttribute)
|
|
541
|
+
ModuleParameters.add_member_subclass(:rate_limiter, Types::ModuleParameters::RateLimiter)
|
|
538
542
|
ModuleParameters.add_member_subclass(:unknown, Types::ModuleParameters::Unknown)
|
|
539
543
|
ModuleParameters.struct_class = Types::ModuleParameters
|
|
540
544
|
|
|
@@ -552,6 +556,9 @@ module Aws::RTBFabric
|
|
|
552
556
|
OpenRtbAttributeModuleParameters.add_member(:holdback_percentage, Shapes::ShapeRef.new(shape: OpenRtbAttributeModuleParametersHoldbackPercentageFloat, required: true, location_name: "holdbackPercentage"))
|
|
553
557
|
OpenRtbAttributeModuleParameters.struct_class = Types::OpenRtbAttributeModuleParameters
|
|
554
558
|
|
|
559
|
+
RateLimiterModuleParameters.add_member(:tps, Shapes::ShapeRef.new(shape: Float, location_name: "tps"))
|
|
560
|
+
RateLimiterModuleParameters.struct_class = Types::RateLimiterModuleParameters
|
|
561
|
+
|
|
555
562
|
RejectLinkRequest.add_member(:gateway_id, Shapes::ShapeRef.new(shape: GatewayId, required: true, location: "uri", location_name: "gatewayId"))
|
|
556
563
|
RejectLinkRequest.add_member(:link_id, Shapes::ShapeRef.new(shape: LinkId, required: true, location: "uri", location_name: "linkId"))
|
|
557
564
|
RejectLinkRequest.struct_class = Types::RejectLinkRequest
|
|
@@ -1577,11 +1577,16 @@ module Aws::RTBFabric
|
|
|
1577
1577
|
# Describes the parameters of an open RTB attribute module.
|
|
1578
1578
|
# @return [Types::OpenRtbAttributeModuleParameters]
|
|
1579
1579
|
#
|
|
1580
|
+
# @!attribute [rw] rate_limiter
|
|
1581
|
+
# Describes the parameters of a rate limit.
|
|
1582
|
+
# @return [Types::RateLimiterModuleParameters]
|
|
1583
|
+
#
|
|
1580
1584
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/ModuleParameters AWS API Documentation
|
|
1581
1585
|
#
|
|
1582
1586
|
class ModuleParameters < Struct.new(
|
|
1583
1587
|
:no_bid,
|
|
1584
1588
|
:open_rtb_attribute,
|
|
1589
|
+
:rate_limiter,
|
|
1585
1590
|
:unknown)
|
|
1586
1591
|
SENSITIVE = []
|
|
1587
1592
|
include Aws::Structure
|
|
@@ -1589,6 +1594,7 @@ module Aws::RTBFabric
|
|
|
1589
1594
|
|
|
1590
1595
|
class NoBid < ModuleParameters; end
|
|
1591
1596
|
class OpenRtbAttribute < ModuleParameters; end
|
|
1597
|
+
class RateLimiter < ModuleParameters; end
|
|
1592
1598
|
class Unknown < ModuleParameters; end
|
|
1593
1599
|
end
|
|
1594
1600
|
|
|
@@ -1659,6 +1665,20 @@ module Aws::RTBFabric
|
|
|
1659
1665
|
include Aws::Structure
|
|
1660
1666
|
end
|
|
1661
1667
|
|
|
1668
|
+
# Describes the parameters of a rate limit.
|
|
1669
|
+
#
|
|
1670
|
+
# @!attribute [rw] tps
|
|
1671
|
+
# The transactions per second rate limit.
|
|
1672
|
+
# @return [Float]
|
|
1673
|
+
#
|
|
1674
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rtbfabric-2023-05-15/RateLimiterModuleParameters AWS API Documentation
|
|
1675
|
+
#
|
|
1676
|
+
class RateLimiterModuleParameters < Struct.new(
|
|
1677
|
+
:tps)
|
|
1678
|
+
SENSITIVE = []
|
|
1679
|
+
include Aws::Structure
|
|
1680
|
+
end
|
|
1681
|
+
|
|
1662
1682
|
# @!attribute [rw] gateway_id
|
|
1663
1683
|
# The unique identifier of the gateway.
|
|
1664
1684
|
# @return [String]
|
data/lib/aws-sdk-rtbfabric.rb
CHANGED
data/sig/client.rbs
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -459,6 +459,7 @@ module Aws::RTBFabric
|
|
|
459
459
|
class ModuleParameters
|
|
460
460
|
attr_accessor no_bid: Types::NoBidModuleParameters
|
|
461
461
|
attr_accessor open_rtb_attribute: Types::OpenRtbAttributeModuleParameters
|
|
462
|
+
attr_accessor rate_limiter: Types::RateLimiterModuleParameters
|
|
462
463
|
attr_accessor unknown: untyped
|
|
463
464
|
SENSITIVE: []
|
|
464
465
|
|
|
@@ -466,6 +467,8 @@ module Aws::RTBFabric
|
|
|
466
467
|
end
|
|
467
468
|
class OpenRtbAttribute < ModuleParameters
|
|
468
469
|
end
|
|
470
|
+
class RateLimiter < ModuleParameters
|
|
471
|
+
end
|
|
469
472
|
class Unknown < ModuleParameters
|
|
470
473
|
end
|
|
471
474
|
end
|
|
@@ -490,6 +493,11 @@ module Aws::RTBFabric
|
|
|
490
493
|
SENSITIVE: []
|
|
491
494
|
end
|
|
492
495
|
|
|
496
|
+
class RateLimiterModuleParameters
|
|
497
|
+
attr_accessor tps: ::Float
|
|
498
|
+
SENSITIVE: []
|
|
499
|
+
end
|
|
500
|
+
|
|
493
501
|
class RejectLinkRequest
|
|
494
502
|
attr_accessor gateway_id: ::String
|
|
495
503
|
attr_accessor link_id: ::String
|