interface AdsPersonalizationConcurrencyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnPlaybackConfiguration.AdsPersonalizationConcurrencyProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnPlaybackConfiguration_AdsPersonalizationConcurrencyProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnPlaybackConfiguration.AdsPersonalizationConcurrencyProperty |
Python | aws_cdk.aws_mediatailor.CfnPlaybackConfiguration.AdsPersonalizationConcurrencyProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnPlaybackConfiguration » AdsPersonalizationConcurrencyProperty |
The settings that control how many concurrent requests MediaTailor makes to the ad decision server (ADS).
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 adsPersonalizationConcurrencyProperty: mediatailor.CfnPlaybackConfiguration.AdsPersonalizationConcurrencyProperty = {
enableVodVastParallelization: false,
maxConcurrentAdsRequests: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| enable | boolean | IResolvable | Enables parallel processing of ADS requests in VOD workflows when the ADS returns VAST responses. |
| max | number | The maximum number of simultaneous requests that MediaTailor makes to the ADS for each manifest request. |
enableVodVastParallelization?
Type:
boolean | IResolvable
(optional)
Enables parallel processing of ADS requests in VOD workflows when the ADS returns VAST responses.
The default is false.
maxConcurrentAdsRequests?
Type:
number
(optional)
The maximum number of simultaneous requests that MediaTailor makes to the ADS for each manifest request.
The default is 1.

.NET
Go
Java
Python
TypeScript