interface PrefetchRetrievalProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnPrefetchSchedule.PrefetchRetrievalProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnPrefetchSchedule_PrefetchRetrievalProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnPrefetchSchedule.PrefetchRetrievalProperty |
Python | aws_cdk.aws_mediatailor.CfnPrefetchSchedule.PrefetchRetrievalProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnPrefetchSchedule » PrefetchRetrievalProperty |
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 prefetchRetrievalProperty: mediatailor.CfnPrefetchSchedule.PrefetchRetrievalProperty = {
endTime: 'endTime',
// the properties below are optional
dynamicVariables: {
dynamicVariablesKey: 'dynamicVariables',
},
startTime: 'startTime',
trafficShapingRetrievalWindow: {
retrievalWindowDurationSeconds: 123,
},
trafficShapingTpsConfiguration: {
peakConcurrentUsers: 123,
peakTps: 123,
},
trafficShapingType: 'trafficShapingType',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The time when prefetch retrieval ends for the ad break, as an ISO 8601 date-time. |
| dynamic | IResolvable | { [string]: string } | The dynamic variables to use for substitution during prefetch requests to the ad decision server (ADS). |
| start | string | The time when prefetch retrievals can start for this break, as an ISO 8601 date-time. |
| traffic | IResolvable | Traffic | |
| traffic | IResolvable | Traffic | |
| traffic | string | Indicates the type of traffic shaping used to limit the number of requests to the ADS at one time. |
endTime
Type:
string
The time when prefetch retrieval ends for the ad break, as an ISO 8601 date-time.
dynamicVariables?
Type:
IResolvable | { [string]: string }
(optional)
The dynamic variables to use for substitution during prefetch requests to the ad decision server (ADS).
startTime?
Type:
string
(optional)
The time when prefetch retrievals can start for this break, as an ISO 8601 date-time.
trafficShapingRetrievalWindow?
Type:
IResolvable | Traffic
(optional)
trafficShapingTpsConfiguration?
Type:
IResolvable | Traffic
(optional)
trafficShapingType?
Type:
string
(optional)
Indicates the type of traffic shaping used to limit the number of requests to the ADS at one time.

.NET
Go
Java
Python
TypeScript