interface PrefetchConsumptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaTailor.CfnPrefetchSchedule.PrefetchConsumptionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnPrefetchSchedule_PrefetchConsumptionProperty |
Java | software.amazon.awscdk.services.mediatailor.CfnPrefetchSchedule.PrefetchConsumptionProperty |
Python | aws_cdk.aws_mediatailor.CfnPrefetchSchedule.PrefetchConsumptionProperty |
TypeScript | aws-cdk-lib » aws_mediatailor » CfnPrefetchSchedule » PrefetchConsumptionProperty |
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 prefetchConsumptionProperty: mediatailor.CfnPrefetchSchedule.PrefetchConsumptionProperty = {
endTime: 'endTime',
// the properties below are optional
availMatchingCriteria: [{
dynamicVariable: 'dynamicVariable',
operator: 'operator',
}],
startTime: 'startTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| end | string | The time when MediaTailor no longer considers the prefetched ads for use in an ad break, as an ISO 8601 date-time. |
| avail | IResolvable | (IResolvable | Avail)[] | If you only want MediaTailor to insert prefetched ads into avails that match specific dynamic variables, set the avail matching criteria. |
| start | string | The time when prefetched ads are considered for use in an ad break, as an ISO 8601 date-time. |
endTime
Type:
string
The time when MediaTailor no longer considers the prefetched ads for use in an ad break, as an ISO 8601 date-time.
availMatchingCriteria?
Type:
IResolvable | (IResolvable | Avail)[]
(optional)
If you only want MediaTailor to insert prefetched ads into avails that match specific dynamic variables, set the avail matching criteria.
startTime?
Type:
string
(optional)
The time when prefetched ads are considered for use in an ad break, as an ISO 8601 date-time.

.NET
Go
Java
Python
TypeScript