interface TrafficShapingTpsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaTailor.CfnPrefetchSchedulePropsMixin.TrafficShapingTpsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediatailor#CfnPrefetchSchedulePropsMixin_TrafficShapingTpsConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediatailor.CfnPrefetchSchedulePropsMixin.TrafficShapingTpsConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediatailor.CfnPrefetchSchedulePropsMixin.TrafficShapingTpsConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediatailor » CfnPrefetchSchedulePropsMixin » 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/cfn-property-mixins';
const trafficShapingTpsConfigurationProperty: mediatailor.CfnPrefetchSchedulePropsMixin.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