interface DashProgramInformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackageV2.Mixins.CfnOriginEndpointPropsMixin.DashProgramInformationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackagev2/mixins#CfnOriginEndpointPropsMixin_DashProgramInformationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediapackagev2.mixins.CfnOriginEndpointPropsMixin.DashProgramInformationProperty |
Python | aws_cdk.mixins_preview.aws_mediapackagev2.mixins.CfnOriginEndpointPropsMixin.DashProgramInformationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackagev2 » mixins » CfnOriginEndpointPropsMixin » 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 { mixins as mediapackagev2_mixins } from '@aws-cdk/mixins-preview/aws-mediapackagev2';
const dashProgramInformationProperty: mediapackagev2_mixins.CfnOriginEndpointPropsMixin.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