interface DashProgramInformation
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.Alpha.DashProgramInformation |
Go | github.com/aws/aws-cdk-go/awsmediapackagev2alpha/v2#DashProgramInformation |
Java | software.amazon.awscdk.services.mediapackagev2.alpha.DashProgramInformation |
Python | aws_cdk.aws_mediapackagev2_alpha.DashProgramInformation |
TypeScript (source) | @aws-cdk/aws-mediapackagev2-alpha ยป DashProgramInformation |
Details about the content that you want MediaPackage to pass through in the manifest to the playback device.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediapackagev2_alpha from '@aws-cdk/aws-mediapackagev2-alpha';
const dashProgramInformation: mediapackagev2_alpha.DashProgramInformation = {
copyright: 'copyright',
languageCode: 'languageCode',
moreInformationUrl: 'moreInformationUrl',
source: 'source',
title: 'title',
};
Properties
| Name | Type | Description |
|---|---|---|
| copyright? | string | A copyright statement about the content. |
| language | string | The language code for this manifest. |
| more | string | An absolute URL that contains more information about this content. |
| source? | string | Information about the content provider. |
| title? | string | The title for the manifest. |
copyright?
Type:
string
(optional, default: No copyright information)
A copyright statement about the content.
languageCode?
Type:
string
(optional, default: No language code specified)
The language code for this manifest.
moreInformationUrl?
Type:
string
(optional, default: No additional information URL)
An absolute URL that contains more information about this content.
source?
Type:
string
(optional, default: No source information)
Information about the content provider.
title?
Type:
string
(optional, default: No title specified)
The title for the manifest.

.NET
Go
Java
Python
TypeScript (