interface RecurringConsumptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnPrefetchSchedule.RecurringConsumptionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnPrefetchSchedule_RecurringConsumptionProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnPrefetchSchedule.RecurringConsumptionProperty |
Python | aws_cdk.aws_mediatailor.CfnPrefetchSchedule.RecurringConsumptionProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnPrefetchSchedule » RecurringConsumptionProperty |
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 recurringConsumptionProperty: mediatailor.CfnPrefetchSchedule.RecurringConsumptionProperty = {
availMatchingCriteria: [{
dynamicVariable: 'dynamicVariable',
operator: 'operator',
}],
retrievedAdExpirationSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| avail | IResolvable | (IResolvable | Avail)[] | The configuration for the dynamic variables that determine which ad breaks that MediaTailor inserts prefetched ads in. |
| retrieved | number | The number of seconds that an ad is available for insertion after it was prefetched. |
availMatchingCriteria?
Type:
IResolvable | (IResolvable | Avail)[]
(optional)
The configuration for the dynamic variables that determine which ad breaks that MediaTailor inserts prefetched ads in.
retrievedAdExpirationSeconds?
Type:
number
(optional)
The number of seconds that an ad is available for insertion after it was prefetched.

.NET
Go
Java
Python
TypeScript