interface DashDvbFontDownloadProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackageV2.Mixins.CfnOriginEndpointPropsMixin.DashDvbFontDownloadProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackagev2/mixins#CfnOriginEndpointPropsMixin_DashDvbFontDownloadProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediapackagev2.mixins.CfnOriginEndpointPropsMixin.DashDvbFontDownloadProperty |
Python | aws_cdk.mixins_preview.aws_mediapackagev2.mixins.CfnOriginEndpointPropsMixin.DashDvbFontDownloadProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackagev2 » mixins » CfnOriginEndpointPropsMixin » DashDvbFontDownloadProperty |
For use with DVB-DASH profiles only.
The settings for font downloads that you want AWS Elemental MediaPackage to pass through to the manifest.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediapackagev2_mixins } from '@aws-cdk/mixins-preview/aws-mediapackagev2';
const dashDvbFontDownloadProperty: mediapackagev2_mixins.CfnOriginEndpointPropsMixin.DashDvbFontDownloadProperty = {
fontFamily: 'fontFamily',
mimeType: 'mimeType',
url: 'url',
};
Properties
| Name | Type | Description |
|---|---|---|
| font | string | The fontFamily name for subtitles, as described in EBU-TT-D Subtitling Distribution Format . |
| mime | string | The mimeType of the resource that's at the font download URL. |
| url? | string | The URL for downloading fonts for subtitles. |
fontFamily?
Type:
string
(optional)
The fontFamily name for subtitles, as described in EBU-TT-D Subtitling Distribution Format .
mimeType?
Type:
string
(optional)
The mimeType of the resource that's at the font download URL.
For information about font MIME types, see the MPEG-DASH Profile for Transport of ISO BMFF Based DVB Services over IP Based Networks document.
url?
Type:
string
(optional)
The URL for downloading fonts for subtitles.

.NET
Go
Java
Python
TypeScript