DashProgramInformation

class aws_cdk.aws_mediapackagev2_alpha.DashProgramInformation(*, copyright=None, language_code=None, more_information_url=None, source=None, title=None)

Bases: object

(experimental) Details about the content that you want MediaPackage to pass through in the manifest to the playback device.

Parameters:
  • copyright (Optional[str]) – (experimental) A copyright statement about the content. Default: - No copyright information

  • language_code (Optional[str]) – (experimental) The language code for this manifest. Default: - No language code specified

  • more_information_url (Optional[str]) – (experimental) An absolute URL that contains more information about this content. Default: - No additional information URL

  • source (Optional[str]) – (experimental) Information about the content provider. Default: - No source information

  • title (Optional[str]) – (experimental) The title for the manifest. Default: - No title specified

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_mediapackagev2_alpha as mediapackagev2_alpha

dash_program_information = mediapackagev2_alpha.DashProgramInformation(
    copyright="copyright",
    language_code="languageCode",
    more_information_url="moreInformationUrl",
    source="source",
    title="title"
)

Attributes

copyright

(experimental) A copyright statement about the content.

Default:
  • No copyright information

Stability:

experimental

language_code

(experimental) The language code for this manifest.

Default:
  • No language code specified

Stability:

experimental

more_information_url

(experimental) An absolute URL that contains more information about this content.

Default:
  • No additional information URL

Stability:

experimental

source

(experimental) Information about the content provider.

Default:
  • No source information

Stability:

experimental

title

(experimental) The title for the manifest.

Default:
  • No title specified

Stability:

experimental