interface RecurringConsumptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaTailor.CfnPrefetchSchedulePropsMixin.RecurringConsumptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediatailor#CfnPrefetchSchedulePropsMixin_RecurringConsumptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediatailor.CfnPrefetchSchedulePropsMixin.RecurringConsumptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediatailor.CfnPrefetchSchedulePropsMixin.RecurringConsumptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediatailor » CfnPrefetchSchedulePropsMixin » 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/cfn-property-mixins';
const recurringConsumptionProperty: mediatailor.CfnPrefetchSchedulePropsMixin.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