interface DashAvailabilityStartTimeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.CfnOriginEndpoint.DashAvailabilityStartTimeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackagev2#CfnOriginEndpoint_DashAvailabilityStartTimeConfigurationProperty |
Java | software.amazon.awscdk.services.mediapackagev2.CfnOriginEndpoint.DashAvailabilityStartTimeConfigurationProperty |
Python | aws_cdk.aws_mediapackagev2.CfnOriginEndpoint.DashAvailabilityStartTimeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediapackagev2 » CfnOriginEndpoint » 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-lib';
const dashAvailabilityStartTimeConfigurationProperty: mediapackagev2.CfnOriginEndpoint.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
<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