interface PrefetchConsumptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaTailor.CfnPrefetchSchedulePropsMixin.PrefetchConsumptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediatailor#CfnPrefetchSchedulePropsMixin_PrefetchConsumptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediatailor.CfnPrefetchSchedulePropsMixin.PrefetchConsumptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediatailor.CfnPrefetchSchedulePropsMixin.PrefetchConsumptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediatailor » CfnPrefetchSchedulePropsMixin » 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/cfn-property-mixins';
const prefetchConsumptionProperty: mediatailor.CfnPrefetchSchedulePropsMixin.PrefetchConsumptionProperty = {
availMatchingCriteria: [{
dynamicVariable: 'dynamicVariable',
operator: 'operator',
}],
endTime: 'endTime',
startTime: 'startTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| end | string | The time when MediaTailor no longer considers the prefetched ads for use in an ad break, as an ISO 8601 date-time. |
| start | string | The time when prefetched ads are considered 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.
endTime?
Type:
string
(optional)
The time when MediaTailor no longer considers the prefetched ads for use in an ad break, as an ISO 8601 date-time.
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