interface DashProgramInformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaPackageV2.CfnOriginEndpoint.DashProgramInformationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediapackagev2#CfnOriginEndpoint_DashProgramInformationProperty |
Java | software.amazon.awscdk.services.mediapackagev2.CfnOriginEndpoint.DashProgramInformationProperty |
Python | aws_cdk.aws_mediapackagev2.CfnOriginEndpoint.DashProgramInformationProperty |
TypeScript | aws-cdk-lib » aws_mediapackagev2 » CfnOriginEndpoint » DashProgramInformationProperty |
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 { aws_mediapackagev2 as mediapackagev2 } from 'aws-cdk-lib';
const dashProgramInformationProperty: mediapackagev2.CfnOriginEndpoint.DashProgramInformationProperty = {
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)
A copyright statement about the content.
languageCode?
Type:
string
(optional)
The language code for this manifest.
moreInformationUrl?
Type:
string
(optional)
An absolute URL that contains more information about this content.
source?
Type:
string
(optional)
Information about the content provider.
title?
Type:
string
(optional)
The title for the manifest.

.NET
Go
Java
Python
TypeScript