interface PrefetchRetrievalProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaTailor.CfnPrefetchSchedulePropsMixin.PrefetchRetrievalProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediatailor#CfnPrefetchSchedulePropsMixin_PrefetchRetrievalProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediatailor.CfnPrefetchSchedulePropsMixin.PrefetchRetrievalProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediatailor.CfnPrefetchSchedulePropsMixin.PrefetchRetrievalProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediatailor » CfnPrefetchSchedulePropsMixin » 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/cfn-property-mixins';
const prefetchRetrievalProperty: mediatailor.CfnPrefetchSchedulePropsMixin.PrefetchRetrievalProperty = {
dynamicVariables: {
dynamicVariablesKey: 'dynamicVariables',
},
endTime: 'endTime',
startTime: 'startTime',
trafficShapingRetrievalWindow: {
retrievalWindowDurationSeconds: 123,
},
trafficShapingTpsConfiguration: {
peakConcurrentUsers: 123,
peakTps: 123,
},
trafficShapingType: 'trafficShapingType',
};
Properties
| Name | Type | Description |
|---|---|---|
| dynamic | IResolvable | { [string]: string } | The dynamic variables to use for substitution during prefetch requests to the ad decision server (ADS). |
| end | string | The time when prefetch retrieval ends for the ad break, as an ISO 8601 date-time. |
| 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. |
dynamicVariables?
Type:
IResolvable | { [string]: string }
(optional)
The dynamic variables to use for substitution during prefetch requests to the ad decision server (ADS).
endTime?
Type:
string
(optional)
The time when prefetch retrieval ends for the ad break, as an ISO 8601 date-time.
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