Interface DashProgramInformation
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DashProgramInformation.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T09:32:03.711Z")
@Stability(Experimental)
public interface DashProgramInformation
extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.services.mediapackagev2.alpha.*;
DashProgramInformation dashProgramInformation = DashProgramInformation.builder()
.copyright("copyright")
.languageCode("languageCode")
.moreInformationUrl("moreInformationUrl")
.source("source")
.title("title")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDashProgramInformationstatic final classAn implementation forDashProgramInformation -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default String(experimental) A copyright statement about the content.default String(experimental) The language code for this manifest.default String(experimental) An absolute URL that contains more information about this content.default String(experimental) Information about the content provider.default StringgetTitle()(experimental) The title for the manifest.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCopyright
(experimental) A copyright statement about the content.Default: - No copyright information
-
getLanguageCode
(experimental) The language code for this manifest.Default: - No language code specified
-
getMoreInformationUrl
(experimental) An absolute URL that contains more information about this content.Default: - No additional information URL
-
getSource
(experimental) Information about the content provider.Default: - No source information
-
getTitle
(experimental) The title for the manifest.Default: - No title specified
-
builder
- Returns:
- a
DashProgramInformation.BuilderofDashProgramInformation
-