interface RecurringRetrievalProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaTailor.CfnPrefetchSchedulePropsMixin.RecurringRetrievalProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediatailor#CfnPrefetchSchedulePropsMixin_RecurringRetrievalProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediatailor.CfnPrefetchSchedulePropsMixin.RecurringRetrievalProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediatailor.CfnPrefetchSchedulePropsMixin.RecurringRetrievalProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediatailor » CfnPrefetchSchedulePropsMixin » RecurringRetrievalProperty |
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 recurringRetrievalProperty: mediatailor.CfnPrefetchSchedulePropsMixin.RecurringRetrievalProperty = {
delayAfterAvailEndSeconds: 123,
dynamicVariables: {
dynamicVariablesKey: 'dynamicVariables',
},
trafficShapingRetrievalWindow: {
retrievalWindowDurationSeconds: 123,
},
trafficShapingTpsConfiguration: {
peakConcurrentUsers: 123,
peakTps: 123,
},
trafficShapingType: 'trafficShapingType',
};
Properties
| Name | Type | Description |
|---|---|---|
| delay | number | The number of seconds that MediaTailor waits after an ad avail before prefetching ads for the next avail. |
| dynamic | IResolvable | { [string]: string } | The dynamic variables to use for substitution during prefetch requests to the ADS. |
| 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. |
delayAfterAvailEndSeconds?
Type:
number
(optional)
The number of seconds that MediaTailor waits after an ad avail before prefetching ads for the next avail.
dynamicVariables?
Type:
IResolvable | { [string]: string }
(optional)
The dynamic variables to use for substitution during prefetch requests to the ADS.
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