aws-sdk-mediatailor 1.105.0 → 1.107.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-mediatailor/client.rb +126 -20
- data/lib/aws-sdk-mediatailor/client_api.rb +7 -0
- data/lib/aws-sdk-mediatailor/types.rb +146 -17
- data/lib/aws-sdk-mediatailor.rb +1 -1
- data/sig/client.rbs +10 -2
- data/sig/types.rbs +10 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0cccdb4085b89ac6c814984b6fb25ea799038374e6401c68e50118aa5eb5a35
|
4
|
+
data.tar.gz: af0d3d441a0286e79b747c5e3baeaac3f8d14a79bd32a45a329984459c1c8a28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64d68b9312cfe5cdb6b59fcf3d56a46c718ad19089f4c0c62498e8bc0b0476e30998803186a5e8f329ceec6be179609d6757738056caa95d924a6544f8258f78
|
7
|
+
data.tar.gz: 7d72db059d61d4fa14101e856c938b9a770427e93ea6ec3150e95870c7bf561e8caeb53bfa2235f2f949a4af7fbc9a8d02e66ae303610d42d189994b9ecc2d4b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.107.0 (2025-09-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adding TPS Traffic Shaping to Prefetch Schedules
|
8
|
+
|
9
|
+
1.106.0 (2025-08-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.105.0 (2025-08-21)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.107.0
|
@@ -894,10 +894,14 @@ module Aws::MediaTailor
|
|
894
894
|
# },
|
895
895
|
# end_time: Time.now, # required
|
896
896
|
# start_time: Time.now,
|
897
|
-
# traffic_shaping_type: "RETRIEVAL_WINDOW", # accepts RETRIEVAL_WINDOW
|
897
|
+
# traffic_shaping_type: "RETRIEVAL_WINDOW", # accepts RETRIEVAL_WINDOW, TPS
|
898
898
|
# traffic_shaping_retrieval_window: {
|
899
899
|
# retrieval_window_duration_seconds: 1,
|
900
900
|
# },
|
901
|
+
# traffic_shaping_tps_configuration: {
|
902
|
+
# peak_tps: 1,
|
903
|
+
# peak_concurrent_users: 1,
|
904
|
+
# },
|
901
905
|
# },
|
902
906
|
# recurring_prefetch_configuration: {
|
903
907
|
# start_time: Time.now,
|
@@ -916,10 +920,14 @@ module Aws::MediaTailor
|
|
916
920
|
# "__string" => "__string",
|
917
921
|
# },
|
918
922
|
# delay_after_avail_end_seconds: 1,
|
919
|
-
# traffic_shaping_type: "RETRIEVAL_WINDOW", # accepts RETRIEVAL_WINDOW
|
923
|
+
# traffic_shaping_type: "RETRIEVAL_WINDOW", # accepts RETRIEVAL_WINDOW, TPS
|
920
924
|
# traffic_shaping_retrieval_window: {
|
921
925
|
# retrieval_window_duration_seconds: 1,
|
922
926
|
# },
|
927
|
+
# traffic_shaping_tps_configuration: {
|
928
|
+
# peak_tps: 1,
|
929
|
+
# peak_concurrent_users: 1,
|
930
|
+
# },
|
923
931
|
# },
|
924
932
|
# },
|
925
933
|
# schedule_type: "SINGLE", # accepts SINGLE, RECURRING
|
@@ -940,8 +948,10 @@ module Aws::MediaTailor
|
|
940
948
|
# resp.retrieval.dynamic_variables["__string"] #=> String
|
941
949
|
# resp.retrieval.end_time #=> Time
|
942
950
|
# resp.retrieval.start_time #=> Time
|
943
|
-
# resp.retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW"
|
951
|
+
# resp.retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW", "TPS"
|
944
952
|
# resp.retrieval.traffic_shaping_retrieval_window.retrieval_window_duration_seconds #=> Integer
|
953
|
+
# resp.retrieval.traffic_shaping_tps_configuration.peak_tps #=> Integer
|
954
|
+
# resp.retrieval.traffic_shaping_tps_configuration.peak_concurrent_users #=> Integer
|
945
955
|
# resp.recurring_prefetch_configuration.start_time #=> Time
|
946
956
|
# resp.recurring_prefetch_configuration.end_time #=> Time
|
947
957
|
# resp.recurring_prefetch_configuration.recurring_consumption.retrieved_ad_expiration_seconds #=> Integer
|
@@ -951,8 +961,10 @@ module Aws::MediaTailor
|
|
951
961
|
# resp.recurring_prefetch_configuration.recurring_retrieval.dynamic_variables #=> Hash
|
952
962
|
# resp.recurring_prefetch_configuration.recurring_retrieval.dynamic_variables["__string"] #=> String
|
953
963
|
# resp.recurring_prefetch_configuration.recurring_retrieval.delay_after_avail_end_seconds #=> Integer
|
954
|
-
# resp.recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW"
|
964
|
+
# resp.recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW", "TPS"
|
955
965
|
# resp.recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_retrieval_window.retrieval_window_duration_seconds #=> Integer
|
966
|
+
# resp.recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_tps_configuration.peak_tps #=> Integer
|
967
|
+
# resp.recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_tps_configuration.peak_concurrent_users #=> Integer
|
956
968
|
# resp.schedule_type #=> String, one of "SINGLE", "RECURRING"
|
957
969
|
# resp.stream_id #=> String
|
958
970
|
#
|
@@ -2185,8 +2197,10 @@ module Aws::MediaTailor
|
|
2185
2197
|
# resp.retrieval.dynamic_variables["__string"] #=> String
|
2186
2198
|
# resp.retrieval.end_time #=> Time
|
2187
2199
|
# resp.retrieval.start_time #=> Time
|
2188
|
-
# resp.retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW"
|
2200
|
+
# resp.retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW", "TPS"
|
2189
2201
|
# resp.retrieval.traffic_shaping_retrieval_window.retrieval_window_duration_seconds #=> Integer
|
2202
|
+
# resp.retrieval.traffic_shaping_tps_configuration.peak_tps #=> Integer
|
2203
|
+
# resp.retrieval.traffic_shaping_tps_configuration.peak_concurrent_users #=> Integer
|
2190
2204
|
# resp.schedule_type #=> String, one of "SINGLE", "RECURRING"
|
2191
2205
|
# resp.recurring_prefetch_configuration.start_time #=> Time
|
2192
2206
|
# resp.recurring_prefetch_configuration.end_time #=> Time
|
@@ -2197,8 +2211,10 @@ module Aws::MediaTailor
|
|
2197
2211
|
# resp.recurring_prefetch_configuration.recurring_retrieval.dynamic_variables #=> Hash
|
2198
2212
|
# resp.recurring_prefetch_configuration.recurring_retrieval.dynamic_variables["__string"] #=> String
|
2199
2213
|
# resp.recurring_prefetch_configuration.recurring_retrieval.delay_after_avail_end_seconds #=> Integer
|
2200
|
-
# resp.recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW"
|
2214
|
+
# resp.recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW", "TPS"
|
2201
2215
|
# resp.recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_retrieval_window.retrieval_window_duration_seconds #=> Integer
|
2216
|
+
# resp.recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_tps_configuration.peak_tps #=> Integer
|
2217
|
+
# resp.recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_tps_configuration.peak_concurrent_users #=> Integer
|
2202
2218
|
# resp.stream_id #=> String
|
2203
2219
|
#
|
2204
2220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/GetPrefetchSchedule AWS API Documentation
|
@@ -2219,10 +2235,23 @@ module Aws::MediaTailor
|
|
2219
2235
|
# alerts, use the value of `NextToken` in the response to get the next
|
2220
2236
|
# page of results.
|
2221
2237
|
#
|
2238
|
+
# The default value is 100. MediaTailor uses DynamoDB-based pagination,
|
2239
|
+
# which means that a response might contain fewer than `MaxResults`
|
2240
|
+
# items, including 0 items, even when more results are available. To
|
2241
|
+
# retrieve all results, you must continue making requests using the
|
2242
|
+
# `NextToken` value from each response until the response no longer
|
2243
|
+
# includes a `NextToken` value.
|
2244
|
+
#
|
2222
2245
|
# @option params [String] :next_token
|
2223
2246
|
# Pagination token returned by the list request when results exceed the
|
2224
2247
|
# maximum allowed. Use the token to fetch the next page of results.
|
2225
2248
|
#
|
2249
|
+
# For the first `ListAlerts` request, omit this value. For subsequent
|
2250
|
+
# requests, get the value of `NextToken` from the previous response and
|
2251
|
+
# specify that value for `NextToken` in the request. Continue making
|
2252
|
+
# requests until the response no longer includes a `NextToken` value,
|
2253
|
+
# which indicates that all results have been retrieved.
|
2254
|
+
#
|
2226
2255
|
# @option params [required, String] :resource_arn
|
2227
2256
|
# The Amazon Resource Name (ARN) of the resource.
|
2228
2257
|
#
|
@@ -2271,10 +2300,23 @@ module Aws::MediaTailor
|
|
2271
2300
|
# channels, use the value of `NextToken` in the response to get the next
|
2272
2301
|
# page of results.
|
2273
2302
|
#
|
2303
|
+
# The default value is 100. MediaTailor uses DynamoDB-based pagination,
|
2304
|
+
# which means that a response might contain fewer than `MaxResults`
|
2305
|
+
# items, including 0 items, even when more results are available. To
|
2306
|
+
# retrieve all results, you must continue making requests using the
|
2307
|
+
# `NextToken` value from each response until the response no longer
|
2308
|
+
# includes a `NextToken` value.
|
2309
|
+
#
|
2274
2310
|
# @option params [String] :next_token
|
2275
2311
|
# Pagination token returned by the list request when results exceed the
|
2276
2312
|
# maximum allowed. Use the token to fetch the next page of results.
|
2277
2313
|
#
|
2314
|
+
# For the first `ListChannels` request, omit this value. For subsequent
|
2315
|
+
# requests, get the value of `NextToken` from the previous response and
|
2316
|
+
# specify that value for `NextToken` in the request. Continue making
|
2317
|
+
# requests until the response no longer includes a `NextToken` value,
|
2318
|
+
# which indicates that all results have been retrieved.
|
2319
|
+
#
|
2278
2320
|
# @return [Types::ListChannelsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2279
2321
|
#
|
2280
2322
|
# * {Types::ListChannelsResponse#items #items} => Array<Types::Channel>
|
@@ -2338,10 +2380,24 @@ module Aws::MediaTailor
|
|
2338
2380
|
# `MaxResults` live sources, use the value of `NextToken` in the
|
2339
2381
|
# response to get the next page of results.
|
2340
2382
|
#
|
2383
|
+
# The default value is 100. MediaTailor uses DynamoDB-based pagination,
|
2384
|
+
# which means that a response might contain fewer than `MaxResults`
|
2385
|
+
# items, including 0 items, even when more results are available. To
|
2386
|
+
# retrieve all results, you must continue making requests using the
|
2387
|
+
# `NextToken` value from each response until the response no longer
|
2388
|
+
# includes a `NextToken` value.
|
2389
|
+
#
|
2341
2390
|
# @option params [String] :next_token
|
2342
2391
|
# Pagination token returned by the list request when results exceed the
|
2343
2392
|
# maximum allowed. Use the token to fetch the next page of results.
|
2344
2393
|
#
|
2394
|
+
# For the first `ListLiveSources` request, omit this value. For
|
2395
|
+
# subsequent requests, get the value of `NextToken` from the previous
|
2396
|
+
# response and specify that value for `NextToken` in the request.
|
2397
|
+
# Continue making requests until the response no longer includes a
|
2398
|
+
# `NextToken` value, which indicates that all results have been
|
2399
|
+
# retrieved.
|
2400
|
+
#
|
2345
2401
|
# @option params [required, String] :source_location_name
|
2346
2402
|
# The name of the source location associated with this Live Sources
|
2347
2403
|
# list.
|
@@ -2400,10 +2456,24 @@ module Aws::MediaTailor
|
|
2400
2456
|
# more than `MaxResults` playback configurations, use the value of
|
2401
2457
|
# `NextToken` in the response to get the next page of results.
|
2402
2458
|
#
|
2459
|
+
# The default value is 100. MediaTailor uses DynamoDB-based pagination,
|
2460
|
+
# which means that a response might contain fewer than `MaxResults`
|
2461
|
+
# items, including 0 items, even when more results are available. To
|
2462
|
+
# retrieve all results, you must continue making requests using the
|
2463
|
+
# `NextToken` value from each response until the response no longer
|
2464
|
+
# includes a `NextToken` value.
|
2465
|
+
#
|
2403
2466
|
# @option params [String] :next_token
|
2404
2467
|
# Pagination token returned by the list request when results exceed the
|
2405
2468
|
# maximum allowed. Use the token to fetch the next page of results.
|
2406
2469
|
#
|
2470
|
+
# For the first `ListPlaybackConfigurations` request, omit this value.
|
2471
|
+
# For subsequent requests, get the value of `NextToken` from the
|
2472
|
+
# previous response and specify that value for `NextToken` in the
|
2473
|
+
# request. Continue making requests until the response no longer
|
2474
|
+
# includes a `NextToken` value, which indicates that all results have
|
2475
|
+
# been retrieved.
|
2476
|
+
#
|
2407
2477
|
# @return [Types::ListPlaybackConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2408
2478
|
#
|
2409
2479
|
# * {Types::ListPlaybackConfigurationsResponse#items #items} => Array<Types::PlaybackConfiguration>
|
@@ -2479,19 +2549,23 @@ module Aws::MediaTailor
|
|
2479
2549
|
# `MaxResults` prefetch schedules, use the value of `NextToken` in the
|
2480
2550
|
# response to get the next page of results.
|
2481
2551
|
#
|
2482
|
-
#
|
2483
|
-
#
|
2484
|
-
#
|
2485
|
-
#
|
2552
|
+
# The default value is 100. MediaTailor uses DynamoDB-based pagination,
|
2553
|
+
# which means that a response might contain fewer than `MaxResults`
|
2554
|
+
# items, including 0 items, even when more results are available. To
|
2555
|
+
# retrieve all results, you must continue making requests using the
|
2556
|
+
# `NextToken` value from each response until the response no longer
|
2557
|
+
# includes a `NextToken` value.
|
2486
2558
|
#
|
2487
|
-
#
|
2488
|
-
#
|
2489
|
-
#
|
2490
|
-
# from the previous response and specify that value for `NextToken` in
|
2491
|
-
# the request.
|
2559
|
+
# @option params [String] :next_token
|
2560
|
+
# Pagination token returned by the list request when results exceed the
|
2561
|
+
# maximum allowed. Use the token to fetch the next page of results.
|
2492
2562
|
#
|
2493
|
-
#
|
2494
|
-
#
|
2563
|
+
# For the first `ListPrefetchSchedules` request, omit this value. For
|
2564
|
+
# subsequent requests, get the value of `NextToken` from the previous
|
2565
|
+
# response and specify that value for `NextToken` in the request.
|
2566
|
+
# Continue making requests until the response no longer includes a
|
2567
|
+
# `NextToken` value, which indicates that all results have been
|
2568
|
+
# retrieved.
|
2495
2569
|
#
|
2496
2570
|
# @option params [required, String] :playback_configuration_name
|
2497
2571
|
# Retrieves the prefetch schedule(s) for a specific playback
|
@@ -2540,8 +2614,10 @@ module Aws::MediaTailor
|
|
2540
2614
|
# resp.items[0].retrieval.dynamic_variables["__string"] #=> String
|
2541
2615
|
# resp.items[0].retrieval.end_time #=> Time
|
2542
2616
|
# resp.items[0].retrieval.start_time #=> Time
|
2543
|
-
# resp.items[0].retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW"
|
2617
|
+
# resp.items[0].retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW", "TPS"
|
2544
2618
|
# resp.items[0].retrieval.traffic_shaping_retrieval_window.retrieval_window_duration_seconds #=> Integer
|
2619
|
+
# resp.items[0].retrieval.traffic_shaping_tps_configuration.peak_tps #=> Integer
|
2620
|
+
# resp.items[0].retrieval.traffic_shaping_tps_configuration.peak_concurrent_users #=> Integer
|
2545
2621
|
# resp.items[0].schedule_type #=> String, one of "SINGLE", "RECURRING"
|
2546
2622
|
# resp.items[0].recurring_prefetch_configuration.start_time #=> Time
|
2547
2623
|
# resp.items[0].recurring_prefetch_configuration.end_time #=> Time
|
@@ -2552,8 +2628,10 @@ module Aws::MediaTailor
|
|
2552
2628
|
# resp.items[0].recurring_prefetch_configuration.recurring_retrieval.dynamic_variables #=> Hash
|
2553
2629
|
# resp.items[0].recurring_prefetch_configuration.recurring_retrieval.dynamic_variables["__string"] #=> String
|
2554
2630
|
# resp.items[0].recurring_prefetch_configuration.recurring_retrieval.delay_after_avail_end_seconds #=> Integer
|
2555
|
-
# resp.items[0].recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW"
|
2631
|
+
# resp.items[0].recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_type #=> String, one of "RETRIEVAL_WINDOW", "TPS"
|
2556
2632
|
# resp.items[0].recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_retrieval_window.retrieval_window_duration_seconds #=> Integer
|
2633
|
+
# resp.items[0].recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_tps_configuration.peak_tps #=> Integer
|
2634
|
+
# resp.items[0].recurring_prefetch_configuration.recurring_retrieval.traffic_shaping_tps_configuration.peak_concurrent_users #=> Integer
|
2557
2635
|
# resp.items[0].stream_id #=> String
|
2558
2636
|
# resp.next_token #=> String
|
2559
2637
|
#
|
@@ -2575,10 +2653,24 @@ module Aws::MediaTailor
|
|
2575
2653
|
# `MaxResults` source locations, use the value of `NextToken` in the
|
2576
2654
|
# response to get the next page of results.
|
2577
2655
|
#
|
2656
|
+
# The default value is 100. MediaTailor uses DynamoDB-based pagination,
|
2657
|
+
# which means that a response might contain fewer than `MaxResults`
|
2658
|
+
# items, including 0 items, even when more results are available. To
|
2659
|
+
# retrieve all results, you must continue making requests using the
|
2660
|
+
# `NextToken` value from each response until the response no longer
|
2661
|
+
# includes a `NextToken` value.
|
2662
|
+
#
|
2578
2663
|
# @option params [String] :next_token
|
2579
2664
|
# Pagination token returned by the list request when results exceed the
|
2580
2665
|
# maximum allowed. Use the token to fetch the next page of results.
|
2581
2666
|
#
|
2667
|
+
# For the first `ListSourceLocations` request, omit this value. For
|
2668
|
+
# subsequent requests, get the value of `NextToken` from the previous
|
2669
|
+
# response and specify that value for `NextToken` in the request.
|
2670
|
+
# Continue making requests until the response no longer includes a
|
2671
|
+
# `NextToken` value, which indicates that all results have been
|
2672
|
+
# retrieved.
|
2673
|
+
#
|
2582
2674
|
# @return [Types::ListSourceLocationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2583
2675
|
#
|
2584
2676
|
# * {Types::ListSourceLocationsResponse#items #items} => Array<Types::SourceLocation>
|
@@ -2667,10 +2759,24 @@ module Aws::MediaTailor
|
|
2667
2759
|
# `MaxResults` VOD sources, use the value of `NextToken` in the response
|
2668
2760
|
# to get the next page of results.
|
2669
2761
|
#
|
2762
|
+
# The default value is 100. MediaTailor uses DynamoDB-based pagination,
|
2763
|
+
# which means that a response might contain fewer than `MaxResults`
|
2764
|
+
# items, including 0 items, even when more results are available. To
|
2765
|
+
# retrieve all results, you must continue making requests using the
|
2766
|
+
# `NextToken` value from each response until the response no longer
|
2767
|
+
# includes a `NextToken` value.
|
2768
|
+
#
|
2670
2769
|
# @option params [String] :next_token
|
2671
2770
|
# Pagination token returned by the list request when results exceed the
|
2672
2771
|
# maximum allowed. Use the token to fetch the next page of results.
|
2673
2772
|
#
|
2773
|
+
# For the first `ListVodSources` request, omit this value. For
|
2774
|
+
# subsequent requests, get the value of `NextToken` from the previous
|
2775
|
+
# response and specify that value for `NextToken` in the request.
|
2776
|
+
# Continue making requests until the response no longer includes a
|
2777
|
+
# `NextToken` value, which indicates that all results have been
|
2778
|
+
# retrieved.
|
2779
|
+
#
|
2674
2780
|
# @option params [required, String] :source_location_name
|
2675
2781
|
# The name of the source location associated with this VOD Source list.
|
2676
2782
|
#
|
@@ -3651,7 +3757,7 @@ module Aws::MediaTailor
|
|
3651
3757
|
tracer: tracer
|
3652
3758
|
)
|
3653
3759
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
3654
|
-
context[:gem_version] = '1.
|
3760
|
+
context[:gem_version] = '1.107.0'
|
3655
3761
|
Seahorse::Client::Request.new(handlers, context)
|
3656
3762
|
end
|
3657
3763
|
|
@@ -177,6 +177,7 @@ module Aws::MediaTailor
|
|
177
177
|
TimeShiftConfiguration = Shapes::StructureShape.new(name: 'TimeShiftConfiguration')
|
178
178
|
TimeSignalMessage = Shapes::StructureShape.new(name: 'TimeSignalMessage')
|
179
179
|
TrafficShapingRetrievalWindow = Shapes::StructureShape.new(name: 'TrafficShapingRetrievalWindow')
|
180
|
+
TrafficShapingTpsConfiguration = Shapes::StructureShape.new(name: 'TrafficShapingTpsConfiguration')
|
180
181
|
TrafficShapingType = Shapes::StringShape.new(name: 'TrafficShapingType')
|
181
182
|
Transition = Shapes::StructureShape.new(name: 'Transition')
|
182
183
|
Type = Shapes::StringShape.new(name: 'Type')
|
@@ -805,6 +806,7 @@ module Aws::MediaTailor
|
|
805
806
|
PrefetchRetrieval.add_member(:start_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "StartTime"))
|
806
807
|
PrefetchRetrieval.add_member(:traffic_shaping_type, Shapes::ShapeRef.new(shape: TrafficShapingType, location_name: "TrafficShapingType"))
|
807
808
|
PrefetchRetrieval.add_member(:traffic_shaping_retrieval_window, Shapes::ShapeRef.new(shape: TrafficShapingRetrievalWindow, location_name: "TrafficShapingRetrievalWindow"))
|
809
|
+
PrefetchRetrieval.add_member(:traffic_shaping_tps_configuration, Shapes::ShapeRef.new(shape: TrafficShapingTpsConfiguration, location_name: "TrafficShapingTpsConfiguration"))
|
808
810
|
PrefetchRetrieval.struct_class = Types::PrefetchRetrieval
|
809
811
|
|
810
812
|
PrefetchSchedule.add_member(:arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Arn"))
|
@@ -878,6 +880,7 @@ module Aws::MediaTailor
|
|
878
880
|
RecurringRetrieval.add_member(:delay_after_avail_end_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "DelayAfterAvailEndSeconds"))
|
879
881
|
RecurringRetrieval.add_member(:traffic_shaping_type, Shapes::ShapeRef.new(shape: TrafficShapingType, location_name: "TrafficShapingType"))
|
880
882
|
RecurringRetrieval.add_member(:traffic_shaping_retrieval_window, Shapes::ShapeRef.new(shape: TrafficShapingRetrievalWindow, location_name: "TrafficShapingRetrievalWindow"))
|
883
|
+
RecurringRetrieval.add_member(:traffic_shaping_tps_configuration, Shapes::ShapeRef.new(shape: TrafficShapingTpsConfiguration, location_name: "TrafficShapingTpsConfiguration"))
|
881
884
|
RecurringRetrieval.struct_class = Types::RecurringRetrieval
|
882
885
|
|
883
886
|
RequestOutputItem.add_member(:dash_playlist_settings, Shapes::ShapeRef.new(shape: DashPlaylistSettings, location_name: "DashPlaylistSettings"))
|
@@ -985,6 +988,10 @@ module Aws::MediaTailor
|
|
985
988
|
TrafficShapingRetrievalWindow.add_member(:retrieval_window_duration_seconds, Shapes::ShapeRef.new(shape: __integer, location_name: "RetrievalWindowDurationSeconds"))
|
986
989
|
TrafficShapingRetrievalWindow.struct_class = Types::TrafficShapingRetrievalWindow
|
987
990
|
|
991
|
+
TrafficShapingTpsConfiguration.add_member(:peak_tps, Shapes::ShapeRef.new(shape: __integer, location_name: "PeakTps"))
|
992
|
+
TrafficShapingTpsConfiguration.add_member(:peak_concurrent_users, Shapes::ShapeRef.new(shape: __integer, location_name: "PeakConcurrentUsers"))
|
993
|
+
TrafficShapingTpsConfiguration.struct_class = Types::TrafficShapingTpsConfiguration
|
994
|
+
|
988
995
|
Transition.add_member(:duration_millis, Shapes::ShapeRef.new(shape: __long, location_name: "DurationMillis"))
|
989
996
|
Transition.add_member(:relative_position, Shapes::ShapeRef.new(shape: RelativePosition, required: true, location_name: "RelativePosition"))
|
990
997
|
Transition.add_member(:relative_program, Shapes::ShapeRef.new(shape: __string, location_name: "RelativeProgram"))
|
@@ -2565,12 +2565,25 @@ module Aws::MediaTailor
|
|
2565
2565
|
# response to the current request. If there are more than `MaxResults`
|
2566
2566
|
# alerts, use the value of `NextToken` in the response to get the next
|
2567
2567
|
# page of results.
|
2568
|
+
#
|
2569
|
+
# The default value is 100. MediaTailor uses DynamoDB-based
|
2570
|
+
# pagination, which means that a response might contain fewer than
|
2571
|
+
# `MaxResults` items, including 0 items, even when more results are
|
2572
|
+
# available. To retrieve all results, you must continue making
|
2573
|
+
# requests using the `NextToken` value from each response until the
|
2574
|
+
# response no longer includes a `NextToken` value.
|
2568
2575
|
# @return [Integer]
|
2569
2576
|
#
|
2570
2577
|
# @!attribute [rw] next_token
|
2571
2578
|
# Pagination token returned by the list request when results exceed
|
2572
2579
|
# the maximum allowed. Use the token to fetch the next page of
|
2573
2580
|
# results.
|
2581
|
+
#
|
2582
|
+
# For the first `ListAlerts` request, omit this value. For subsequent
|
2583
|
+
# requests, get the value of `NextToken` from the previous response
|
2584
|
+
# and specify that value for `NextToken` in the request. Continue
|
2585
|
+
# making requests until the response no longer includes a `NextToken`
|
2586
|
+
# value, which indicates that all results have been retrieved.
|
2574
2587
|
# @return [String]
|
2575
2588
|
#
|
2576
2589
|
# @!attribute [rw] resource_arn
|
@@ -2611,12 +2624,26 @@ module Aws::MediaTailor
|
|
2611
2624
|
# in response to the current request. If there are more than
|
2612
2625
|
# `MaxResults` channels, use the value of `NextToken` in the response
|
2613
2626
|
# to get the next page of results.
|
2627
|
+
#
|
2628
|
+
# The default value is 100. MediaTailor uses DynamoDB-based
|
2629
|
+
# pagination, which means that a response might contain fewer than
|
2630
|
+
# `MaxResults` items, including 0 items, even when more results are
|
2631
|
+
# available. To retrieve all results, you must continue making
|
2632
|
+
# requests using the `NextToken` value from each response until the
|
2633
|
+
# response no longer includes a `NextToken` value.
|
2614
2634
|
# @return [Integer]
|
2615
2635
|
#
|
2616
2636
|
# @!attribute [rw] next_token
|
2617
2637
|
# Pagination token returned by the list request when results exceed
|
2618
2638
|
# the maximum allowed. Use the token to fetch the next page of
|
2619
2639
|
# results.
|
2640
|
+
#
|
2641
|
+
# For the first `ListChannels` request, omit this value. For
|
2642
|
+
# subsequent requests, get the value of `NextToken` from the previous
|
2643
|
+
# response and specify that value for `NextToken` in the request.
|
2644
|
+
# Continue making requests until the response no longer includes a
|
2645
|
+
# `NextToken` value, which indicates that all results have been
|
2646
|
+
# retrieved.
|
2620
2647
|
# @return [String]
|
2621
2648
|
#
|
2622
2649
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListChannelsRequest AWS API Documentation
|
@@ -2652,12 +2679,26 @@ module Aws::MediaTailor
|
|
2652
2679
|
# return in response to the current request. If there are more than
|
2653
2680
|
# `MaxResults` live sources, use the value of `NextToken` in the
|
2654
2681
|
# response to get the next page of results.
|
2682
|
+
#
|
2683
|
+
# The default value is 100. MediaTailor uses DynamoDB-based
|
2684
|
+
# pagination, which means that a response might contain fewer than
|
2685
|
+
# `MaxResults` items, including 0 items, even when more results are
|
2686
|
+
# available. To retrieve all results, you must continue making
|
2687
|
+
# requests using the `NextToken` value from each response until the
|
2688
|
+
# response no longer includes a `NextToken` value.
|
2655
2689
|
# @return [Integer]
|
2656
2690
|
#
|
2657
2691
|
# @!attribute [rw] next_token
|
2658
2692
|
# Pagination token returned by the list request when results exceed
|
2659
2693
|
# the maximum allowed. Use the token to fetch the next page of
|
2660
2694
|
# results.
|
2695
|
+
#
|
2696
|
+
# For the first `ListLiveSources` request, omit this value. For
|
2697
|
+
# subsequent requests, get the value of `NextToken` from the previous
|
2698
|
+
# response and specify that value for `NextToken` in the request.
|
2699
|
+
# Continue making requests until the response no longer includes a
|
2700
|
+
# `NextToken` value, which indicates that all results have been
|
2701
|
+
# retrieved.
|
2661
2702
|
# @return [String]
|
2662
2703
|
#
|
2663
2704
|
# @!attribute [rw] source_location_name
|
@@ -2699,12 +2740,26 @@ module Aws::MediaTailor
|
|
2699
2740
|
# MediaTailor to return in response to the current request. If there
|
2700
2741
|
# are more than `MaxResults` playback configurations, use the value of
|
2701
2742
|
# `NextToken` in the response to get the next page of results.
|
2743
|
+
#
|
2744
|
+
# The default value is 100. MediaTailor uses DynamoDB-based
|
2745
|
+
# pagination, which means that a response might contain fewer than
|
2746
|
+
# `MaxResults` items, including 0 items, even when more results are
|
2747
|
+
# available. To retrieve all results, you must continue making
|
2748
|
+
# requests using the `NextToken` value from each response until the
|
2749
|
+
# response no longer includes a `NextToken` value.
|
2702
2750
|
# @return [Integer]
|
2703
2751
|
#
|
2704
2752
|
# @!attribute [rw] next_token
|
2705
2753
|
# Pagination token returned by the list request when results exceed
|
2706
2754
|
# the maximum allowed. Use the token to fetch the next page of
|
2707
2755
|
# results.
|
2756
|
+
#
|
2757
|
+
# For the first `ListPlaybackConfigurations` request, omit this value.
|
2758
|
+
# For subsequent requests, get the value of `NextToken` from the
|
2759
|
+
# previous response and specify that value for `NextToken` in the
|
2760
|
+
# request. Continue making requests until the response no longer
|
2761
|
+
# includes a `NextToken` value, which indicates that all results have
|
2762
|
+
# been retrieved.
|
2708
2763
|
# @return [String]
|
2709
2764
|
#
|
2710
2765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListPlaybackConfigurationsRequest AWS API Documentation
|
@@ -2742,22 +2797,26 @@ module Aws::MediaTailor
|
|
2742
2797
|
# to return in response to the current request. If there are more than
|
2743
2798
|
# `MaxResults` prefetch schedules, use the value of `NextToken` in the
|
2744
2799
|
# response to get the next page of results.
|
2800
|
+
#
|
2801
|
+
# The default value is 100. MediaTailor uses DynamoDB-based
|
2802
|
+
# pagination, which means that a response might contain fewer than
|
2803
|
+
# `MaxResults` items, including 0 items, even when more results are
|
2804
|
+
# available. To retrieve all results, you must continue making
|
2805
|
+
# requests using the `NextToken` value from each response until the
|
2806
|
+
# response no longer includes a `NextToken` value.
|
2745
2807
|
# @return [Integer]
|
2746
2808
|
#
|
2747
2809
|
# @!attribute [rw] next_token
|
2748
|
-
#
|
2749
|
-
#
|
2750
|
-
#
|
2751
|
-
#
|
2752
|
-
# For the first `ListPrefetchSchedulesRequest` request, omit this
|
2753
|
-
# value.
|
2754
|
-
#
|
2755
|
-
# For the second and subsequent requests, get the value of `NextToken`
|
2756
|
-
# from the previous response and specify that value for `NextToken` in
|
2757
|
-
# the request.
|
2810
|
+
# Pagination token returned by the list request when results exceed
|
2811
|
+
# the maximum allowed. Use the token to fetch the next page of
|
2812
|
+
# results.
|
2758
2813
|
#
|
2759
|
-
#
|
2760
|
-
#
|
2814
|
+
# For the first `ListPrefetchSchedules` request, omit this value. For
|
2815
|
+
# subsequent requests, get the value of `NextToken` from the previous
|
2816
|
+
# response and specify that value for `NextToken` in the request.
|
2817
|
+
# Continue making requests until the response no longer includes a
|
2818
|
+
# `NextToken` value, which indicates that all results have been
|
2819
|
+
# retrieved.
|
2761
2820
|
# @return [String]
|
2762
2821
|
#
|
2763
2822
|
# @!attribute [rw] playback_configuration_name
|
@@ -2815,12 +2874,26 @@ module Aws::MediaTailor
|
|
2815
2874
|
# return in response to the current request. If there are more than
|
2816
2875
|
# `MaxResults` source locations, use the value of `NextToken` in the
|
2817
2876
|
# response to get the next page of results.
|
2877
|
+
#
|
2878
|
+
# The default value is 100. MediaTailor uses DynamoDB-based
|
2879
|
+
# pagination, which means that a response might contain fewer than
|
2880
|
+
# `MaxResults` items, including 0 items, even when more results are
|
2881
|
+
# available. To retrieve all results, you must continue making
|
2882
|
+
# requests using the `NextToken` value from each response until the
|
2883
|
+
# response no longer includes a `NextToken` value.
|
2818
2884
|
# @return [Integer]
|
2819
2885
|
#
|
2820
2886
|
# @!attribute [rw] next_token
|
2821
2887
|
# Pagination token returned by the list request when results exceed
|
2822
2888
|
# the maximum allowed. Use the token to fetch the next page of
|
2823
2889
|
# results.
|
2890
|
+
#
|
2891
|
+
# For the first `ListSourceLocations` request, omit this value. For
|
2892
|
+
# subsequent requests, get the value of `NextToken` from the previous
|
2893
|
+
# response and specify that value for `NextToken` in the request.
|
2894
|
+
# Continue making requests until the response no longer includes a
|
2895
|
+
# `NextToken` value, which indicates that all results have been
|
2896
|
+
# retrieved.
|
2824
2897
|
# @return [String]
|
2825
2898
|
#
|
2826
2899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ListSourceLocationsRequest AWS API Documentation
|
@@ -2887,12 +2960,26 @@ module Aws::MediaTailor
|
|
2887
2960
|
# return in response to the current request. If there are more than
|
2888
2961
|
# `MaxResults` VOD sources, use the value of `NextToken` in the
|
2889
2962
|
# response to get the next page of results.
|
2963
|
+
#
|
2964
|
+
# The default value is 100. MediaTailor uses DynamoDB-based
|
2965
|
+
# pagination, which means that a response might contain fewer than
|
2966
|
+
# `MaxResults` items, including 0 items, even when more results are
|
2967
|
+
# available. To retrieve all results, you must continue making
|
2968
|
+
# requests using the `NextToken` value from each response until the
|
2969
|
+
# response no longer includes a `NextToken` value.
|
2890
2970
|
# @return [Integer]
|
2891
2971
|
#
|
2892
2972
|
# @!attribute [rw] next_token
|
2893
2973
|
# Pagination token returned by the list request when results exceed
|
2894
2974
|
# the maximum allowed. Use the token to fetch the next page of
|
2895
2975
|
# results.
|
2976
|
+
#
|
2977
|
+
# For the first `ListVodSources` request, omit this value. For
|
2978
|
+
# subsequent requests, get the value of `NextToken` from the previous
|
2979
|
+
# response and specify that value for `NextToken` in the request.
|
2980
|
+
# Continue making requests until the response no longer includes a
|
2981
|
+
# `NextToken` value, which indicates that all results have been
|
2982
|
+
# retrieved.
|
2896
2983
|
# @return [String]
|
2897
2984
|
#
|
2898
2985
|
# @!attribute [rw] source_location_name
|
@@ -3368,7 +3455,7 @@ module Aws::MediaTailor
|
|
3368
3455
|
# @return [Time]
|
3369
3456
|
#
|
3370
3457
|
# @!attribute [rw] traffic_shaping_type
|
3371
|
-
# Indicates
|
3458
|
+
# Indicates the type of traffic shaping used for prefetch traffic
|
3372
3459
|
# shaping and limiting the number of requests to the ADS at one time.
|
3373
3460
|
# @return [String]
|
3374
3461
|
#
|
@@ -3377,6 +3464,12 @@ module Aws::MediaTailor
|
|
3377
3464
|
# of sending ADS requests for all sessions at the same time.
|
3378
3465
|
# @return [Types::TrafficShapingRetrievalWindow]
|
3379
3466
|
#
|
3467
|
+
# @!attribute [rw] traffic_shaping_tps_configuration
|
3468
|
+
# The configuration for TPS-based traffic shaping that limits the
|
3469
|
+
# number of requests to the ad decision server (ADS) based on
|
3470
|
+
# transactions per second instead of time windows.
|
3471
|
+
# @return [Types::TrafficShapingTpsConfiguration]
|
3472
|
+
#
|
3380
3473
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/PrefetchRetrieval AWS API Documentation
|
3381
3474
|
#
|
3382
3475
|
class PrefetchRetrieval < Struct.new(
|
@@ -3384,7 +3477,8 @@ module Aws::MediaTailor
|
|
3384
3477
|
:end_time,
|
3385
3478
|
:start_time,
|
3386
3479
|
:traffic_shaping_type,
|
3387
|
-
:traffic_shaping_retrieval_window
|
3480
|
+
:traffic_shaping_retrieval_window,
|
3481
|
+
:traffic_shaping_tps_configuration)
|
3388
3482
|
SENSITIVE = []
|
3389
3483
|
include Aws::Structure
|
3390
3484
|
end
|
@@ -3888,8 +3982,8 @@ module Aws::MediaTailor
|
|
3888
3982
|
# @return [Integer]
|
3889
3983
|
#
|
3890
3984
|
# @!attribute [rw] traffic_shaping_type
|
3891
|
-
# Indicates
|
3892
|
-
#
|
3985
|
+
# Indicates the type of traffic shaping used for traffic shaping and
|
3986
|
+
# limiting the number of requests to the ADS at one time.
|
3893
3987
|
# @return [String]
|
3894
3988
|
#
|
3895
3989
|
# @!attribute [rw] traffic_shaping_retrieval_window
|
@@ -3897,13 +3991,20 @@ module Aws::MediaTailor
|
|
3897
3991
|
# of sending ADS requests for all sessions at the same time.
|
3898
3992
|
# @return [Types::TrafficShapingRetrievalWindow]
|
3899
3993
|
#
|
3994
|
+
# @!attribute [rw] traffic_shaping_tps_configuration
|
3995
|
+
# The configuration for TPS-based traffic shaping that limits the
|
3996
|
+
# number of requests to the ad decision server (ADS) based on
|
3997
|
+
# transactions per second instead of time windows.
|
3998
|
+
# @return [Types::TrafficShapingTpsConfiguration]
|
3999
|
+
#
|
3900
4000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/RecurringRetrieval AWS API Documentation
|
3901
4001
|
#
|
3902
4002
|
class RecurringRetrieval < Struct.new(
|
3903
4003
|
:dynamic_variables,
|
3904
4004
|
:delay_after_avail_end_seconds,
|
3905
4005
|
:traffic_shaping_type,
|
3906
|
-
:traffic_shaping_retrieval_window
|
4006
|
+
:traffic_shaping_retrieval_window,
|
4007
|
+
:traffic_shaping_tps_configuration)
|
3907
4008
|
SENSITIVE = []
|
3908
4009
|
include Aws::Structure
|
3909
4010
|
end
|
@@ -4477,6 +4578,34 @@ module Aws::MediaTailor
|
|
4477
4578
|
include Aws::Structure
|
4478
4579
|
end
|
4479
4580
|
|
4581
|
+
# The configuration for TPS-based traffic shaping. This approach limits
|
4582
|
+
# requests to the ad decision server (ADS) based on transactions per
|
4583
|
+
# second and concurrent users, providing more intuitive capacity
|
4584
|
+
# management compared to time-window based traffic shaping.
|
4585
|
+
#
|
4586
|
+
# @!attribute [rw] peak_tps
|
4587
|
+
# The maximum number of transactions per second (TPS) that your ad
|
4588
|
+
# decision server (ADS) can handle. MediaTailor uses this value along
|
4589
|
+
# with concurrent users and headroom multiplier to calculate optimal
|
4590
|
+
# traffic distribution and prevent ADS overload.
|
4591
|
+
# @return [Integer]
|
4592
|
+
#
|
4593
|
+
# @!attribute [rw] peak_concurrent_users
|
4594
|
+
# The expected peak number of concurrent viewers for your content.
|
4595
|
+
# MediaTailor uses this value along with peak TPS to determine how to
|
4596
|
+
# distribute prefetch requests across the available capacity without
|
4597
|
+
# exceeding your ADS limits.
|
4598
|
+
# @return [Integer]
|
4599
|
+
#
|
4600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/TrafficShapingTpsConfiguration AWS API Documentation
|
4601
|
+
#
|
4602
|
+
class TrafficShapingTpsConfiguration < Struct.new(
|
4603
|
+
:peak_tps,
|
4604
|
+
:peak_concurrent_users)
|
4605
|
+
SENSITIVE = []
|
4606
|
+
include Aws::Structure
|
4607
|
+
end
|
4608
|
+
|
4480
4609
|
# Program transition configuration.
|
4481
4610
|
#
|
4482
4611
|
# @!attribute [rw] duration_millis
|
data/lib/aws-sdk-mediatailor.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -215,9 +215,13 @@ module Aws
|
|
215
215
|
dynamic_variables: Hash[::String, ::String]?,
|
216
216
|
end_time: ::Time,
|
217
217
|
start_time: ::Time?,
|
218
|
-
traffic_shaping_type: ("RETRIEVAL_WINDOW")?,
|
218
|
+
traffic_shaping_type: ("RETRIEVAL_WINDOW" | "TPS")?,
|
219
219
|
traffic_shaping_retrieval_window: {
|
220
220
|
retrieval_window_duration_seconds: ::Integer?
|
221
|
+
}?,
|
222
|
+
traffic_shaping_tps_configuration: {
|
223
|
+
peak_tps: ::Integer?,
|
224
|
+
peak_concurrent_users: ::Integer?
|
221
225
|
}?
|
222
226
|
},
|
223
227
|
?recurring_prefetch_configuration: {
|
@@ -235,9 +239,13 @@ module Aws
|
|
235
239
|
recurring_retrieval: {
|
236
240
|
dynamic_variables: Hash[::String, ::String]?,
|
237
241
|
delay_after_avail_end_seconds: ::Integer?,
|
238
|
-
traffic_shaping_type: ("RETRIEVAL_WINDOW")?,
|
242
|
+
traffic_shaping_type: ("RETRIEVAL_WINDOW" | "TPS")?,
|
239
243
|
traffic_shaping_retrieval_window: {
|
240
244
|
retrieval_window_duration_seconds: ::Integer?
|
245
|
+
}?,
|
246
|
+
traffic_shaping_tps_configuration: {
|
247
|
+
peak_tps: ::Integer?,
|
248
|
+
peak_concurrent_users: ::Integer?
|
241
249
|
}?
|
242
250
|
}
|
243
251
|
},
|
data/sig/types.rbs
CHANGED
@@ -763,8 +763,9 @@ module Aws::MediaTailor
|
|
763
763
|
attr_accessor dynamic_variables: ::Hash[::String, ::String]
|
764
764
|
attr_accessor end_time: ::Time
|
765
765
|
attr_accessor start_time: ::Time
|
766
|
-
attr_accessor traffic_shaping_type: ("RETRIEVAL_WINDOW")
|
766
|
+
attr_accessor traffic_shaping_type: ("RETRIEVAL_WINDOW" | "TPS")
|
767
767
|
attr_accessor traffic_shaping_retrieval_window: Types::TrafficShapingRetrievalWindow
|
768
|
+
attr_accessor traffic_shaping_tps_configuration: Types::TrafficShapingTpsConfiguration
|
768
769
|
SENSITIVE: []
|
769
770
|
end
|
770
771
|
|
@@ -851,8 +852,9 @@ module Aws::MediaTailor
|
|
851
852
|
class RecurringRetrieval
|
852
853
|
attr_accessor dynamic_variables: ::Hash[::String, ::String]
|
853
854
|
attr_accessor delay_after_avail_end_seconds: ::Integer
|
854
|
-
attr_accessor traffic_shaping_type: ("RETRIEVAL_WINDOW")
|
855
|
+
attr_accessor traffic_shaping_type: ("RETRIEVAL_WINDOW" | "TPS")
|
855
856
|
attr_accessor traffic_shaping_retrieval_window: Types::TrafficShapingRetrievalWindow
|
857
|
+
attr_accessor traffic_shaping_tps_configuration: Types::TrafficShapingTpsConfiguration
|
856
858
|
SENSITIVE: []
|
857
859
|
end
|
858
860
|
|
@@ -991,6 +993,12 @@ module Aws::MediaTailor
|
|
991
993
|
SENSITIVE: []
|
992
994
|
end
|
993
995
|
|
996
|
+
class TrafficShapingTpsConfiguration
|
997
|
+
attr_accessor peak_tps: ::Integer
|
998
|
+
attr_accessor peak_concurrent_users: ::Integer
|
999
|
+
SENSITIVE: []
|
1000
|
+
end
|
1001
|
+
|
994
1002
|
class Transition
|
995
1003
|
attr_accessor duration_millis: ::Integer
|
996
1004
|
attr_accessor relative_position: ("BEFORE_PROGRAM" | "AFTER_PROGRAM")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediatailor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.107.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.231.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.231.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|