Class: Aws::MediaTailor::Types::TrafficShapingTpsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaTailor::Types::TrafficShapingTpsConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediatailor/types.rb
Overview
The configuration for TPS-based traffic shaping. This approach limits requests to the ad decision server (ADS) based on transactions per second and concurrent users, providing more intuitive capacity management compared to time-window based traffic shaping.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#peak_concurrent_users ⇒ Integer
The expected peak number of concurrent viewers for your content.
-
#peak_tps ⇒ Integer
The maximum number of transactions per second (TPS) that your ad decision server (ADS) can handle.
Instance Attribute Details
#peak_concurrent_users ⇒ Integer
The expected peak number of concurrent viewers for your content. MediaTailor uses this value along with peak TPS to determine how to distribute prefetch requests across the available capacity without exceeding your ADS limits.
4602 4603 4604 4605 4606 4607 |
# File 'lib/aws-sdk-mediatailor/types.rb', line 4602 class TrafficShapingTpsConfiguration < Struct.new( :peak_tps, :peak_concurrent_users) SENSITIVE = [] include Aws::Structure end |
#peak_tps ⇒ Integer
The maximum number of transactions per second (TPS) that your ad decision server (ADS) can handle. MediaTailor uses this value along with concurrent users and headroom multiplier to calculate optimal traffic distribution and prevent ADS overload.
4602 4603 4604 4605 4606 4607 |
# File 'lib/aws-sdk-mediatailor/types.rb', line 4602 class TrafficShapingTpsConfiguration < Struct.new( :peak_tps, :peak_concurrent_users) SENSITIVE = [] include Aws::Structure end |