interface TrafficShapingTpsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnPrefetchSchedule.TrafficShapingTpsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnPrefetchSchedule_TrafficShapingTpsConfigurationProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnPrefetchSchedule.TrafficShapingTpsConfigurationProperty |
Python | aws_cdk.aws_mediatailor.CfnPrefetchSchedule.TrafficShapingTpsConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnPrefetchSchedule » TrafficShapingTpsConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediatailor as mediatailor } from 'aws-cdk-lib';
const trafficShapingTpsConfigurationProperty: mediatailor.CfnPrefetchSchedule.TrafficShapingTpsConfigurationProperty = {
peakConcurrentUsers: 123,
peakTps: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| peak | number | The expected peak number of concurrent viewers for your content. |
| peak | number | The maximum number of transactions per second (TPS) that your ad decision server (ADS) can handle. |
peakConcurrentUsers?
Type:
number
(optional)
The expected peak number of concurrent viewers for your content.
peakTps?
Type:
number
(optional)
The maximum number of transactions per second (TPS) that your ad decision server (ADS) can handle.

.NET
Go
Java
Python
TypeScript