interface DashAvailabilityStartTimeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaPackageV2.CfnOriginEndpointPropsMixin.DashAvailabilityStartTimeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediapackagev2#CfnOriginEndpointPropsMixin_DashAvailabilityStartTimeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediapackagev2.CfnOriginEndpointPropsMixin.DashAvailabilityStartTimeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediapackagev2.CfnOriginEndpointPropsMixin.DashAvailabilityStartTimeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediapackagev2 » CfnOriginEndpointPropsMixin » DashAvailabilityStartTimeConfigurationProperty |
<p>The configuration for the DASH <code>availabilityStartTime attribute of the Media Presentation Description (MPD).
Use this configuration to set a custom availability start time for your DASH manifest.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackagev2 as mediapackagev2 } from '@aws-cdk/cfn-property-mixins';
const dashAvailabilityStartTimeConfigurationProperty: mediapackagev2.CfnOriginEndpointPropsMixin.DashAvailabilityStartTimeConfigurationProperty = {
fixedAvailabilityStartTime: 'fixedAvailabilityStartTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| fixed | string | The fixed availability start time for the DASH manifest, in ISO 8601 date-time format. |
fixedAvailabilityStartTime?
Type:
string
(optional)
<p>The fixed availability start time for the DASH manifest, in ISO 8601 date-time format.
The value must have hourly granularity, meaning that the minutes, seconds, and fractional seconds must be zero. The value must be on or after <code>2024-01-01T00:00:00Z and must be at least 14 days before the current time.

.NET
Go
Java
Python
TypeScript