interface RecurringPrefetchConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnPrefetchSchedule.RecurringPrefetchConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnPrefetchSchedule_RecurringPrefetchConfigurationProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnPrefetchSchedule.RecurringPrefetchConfigurationProperty |
Python | aws_cdk.aws_mediatailor.CfnPrefetchSchedule.RecurringPrefetchConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnPrefetchSchedule » RecurringPrefetchConfigurationProperty |
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 recurringPrefetchConfigurationProperty: mediatailor.CfnPrefetchSchedule.RecurringPrefetchConfigurationProperty = {
endTime: 'endTime',
recurringConsumption: {
availMatchingCriteria: [{
dynamicVariable: 'dynamicVariable',
operator: 'operator',
}],
retrievedAdExpirationSeconds: 123,
},
recurringRetrieval: {
delayAfterAvailEndSeconds: 123,
dynamicVariables: {
dynamicVariablesKey: 'dynamicVariables',
},
trafficShapingRetrievalWindow: {
retrievalWindowDurationSeconds: 123,
},
trafficShapingTpsConfiguration: {
peakConcurrentUsers: 123,
peakTps: 123,
},
trafficShapingType: 'trafficShapingType',
},
// the properties below are optional
startTime: 'startTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The end time for the window that MediaTailor prefetches and inserts ads in a live event, as an ISO 8601 date-time. |
| recurring | IResolvable | Recurring | |
| recurring | IResolvable | Recurring | |
| start | string | The start time for the window that MediaTailor prefetches and inserts ads in a live event, as an ISO 8601 date-time. |
endTime
Type:
string
The end time for the window that MediaTailor prefetches and inserts ads in a live event, as an ISO 8601 date-time.
recurringConsumption
Type:
IResolvable | Recurring
recurringRetrieval
Type:
IResolvable | Recurring
startTime?
Type:
string
(optional)
The start time for the window that MediaTailor prefetches and inserts ads in a live event, as an ISO 8601 date-time.

.NET
Go
Java
Python
TypeScript