interface RecurringPrefetchConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaTailor.CfnPrefetchSchedulePropsMixin.RecurringPrefetchConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediatailor#CfnPrefetchSchedulePropsMixin_RecurringPrefetchConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediatailor.CfnPrefetchSchedulePropsMixin.RecurringPrefetchConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediatailor.CfnPrefetchSchedulePropsMixin.RecurringPrefetchConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediatailor » CfnPrefetchSchedulePropsMixin » 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/cfn-property-mixins';
const recurringPrefetchConfigurationProperty: mediatailor.CfnPrefetchSchedulePropsMixin.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',
},
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
(optional)
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
(optional)
recurringRetrieval?
Type:
IResolvable | Recurring
(optional)
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