package awsmediapackage // Parameters for a packaging configuration that uses Dynamic Adaptive Streaming over HTTP (DASH) packaging. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // dashPackageProperty := &DashPackageProperty{ // DashManifests: []interface{}{ // &DashManifestProperty{ // ManifestLayout: jsii.String("manifestLayout"), // ManifestName: jsii.String("manifestName"), // MinBufferTimeSeconds: jsii.Number(123), // Profile: jsii.String("profile"), // ScteMarkersSource: jsii.String("scteMarkersSource"), // StreamSelection: &StreamSelectionProperty{ // MaxVideoBitsPerSecond: jsii.Number(123), // MinVideoBitsPerSecond: jsii.Number(123), // StreamOrder: jsii.String("streamOrder"), // }, // }, // }, // // // the properties below are optional // Encryption: &DashEncryptionProperty{ // SpekeKeyProvider: &SpekeKeyProviderProperty{ // RoleArn: jsii.String("roleArn"), // SystemIds: []*string{ // jsii.String("systemIds"), // }, // Url: jsii.String("url"), // // // the properties below are optional // EncryptionContractConfiguration: &EncryptionContractConfigurationProperty{ // PresetSpeke20Audio: jsii.String("presetSpeke20Audio"), // PresetSpeke20Video: jsii.String("presetSpeke20Video"), // }, // }, // }, // IncludeEncoderConfigurationInSegments: jsii.Boolean(false), // IncludeIframeOnlyStream: jsii.Boolean(false), // PeriodTriggers: []*string{ // jsii.String("periodTriggers"), // }, // SegmentDurationSeconds: jsii.Number(123), // SegmentTemplateFormat: jsii.String("segmentTemplateFormat"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-dashpackage.html // type CfnPackagingConfiguration_DashPackageProperty struct { // A list of DASH manifest configurations that are available from this endpoint. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-dashpackage.html#cfn-mediapackage-packagingconfiguration-dashpackage-dashmanifests // DashManifests interface{} `field:"required" json:"dashManifests" yaml:"dashManifests"` // Parameters for encrypting content. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-dashpackage.html#cfn-mediapackage-packagingconfiguration-dashpackage-encryption // Encryption interface{} `field:"optional" json:"encryption" yaml:"encryption"` // When includeEncoderConfigurationInSegments is set to true, AWS Elemental MediaPackage places your encoder's Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and Video Parameter Set (VPS) metadata in every video segment instead of in the init fragment. // // This lets you use different SPS/PPS/VPS settings for your assets during content playback. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-dashpackage.html#cfn-mediapackage-packagingconfiguration-dashpackage-includeencoderconfigurationinsegments // IncludeEncoderConfigurationInSegments interface{} `field:"optional" json:"includeEncoderConfigurationInSegments" yaml:"includeEncoderConfigurationInSegments"` // This applies only to stream sets with a single video track. // // When true, the stream set includes an additional I-frame trick-play only stream, along with the other tracks. If false, this extra stream is not included. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-dashpackage.html#cfn-mediapackage-packagingconfiguration-dashpackage-includeiframeonlystream // IncludeIframeOnlyStream interface{} `field:"optional" json:"includeIframeOnlyStream" yaml:"includeIframeOnlyStream"` // Controls whether AWS Elemental MediaPackage produces single-period or multi-period DASH manifests. // // For more information about periods, see [Multi-period DASH in AWS Elemental MediaPackage](https://docs.aws.amazon.com/mediapackage/latest/ug/multi-period.html) . // // Valid values: // // - `ADS` - AWS Elemental MediaPackage will produce multi-period DASH manifests. Periods are created based on the SCTE-35 ad markers present in the input manifest. // - *No value* - AWS Elemental MediaPackage will produce single-period DASH manifests. This is the default setting. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-dashpackage.html#cfn-mediapackage-packagingconfiguration-dashpackage-periodtriggers // PeriodTriggers *[]*string `field:"optional" json:"periodTriggers" yaml:"periodTriggers"` // Duration (in seconds) of each fragment. // // Actual fragments are rounded to the nearest multiple of the source segment duration. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-dashpackage.html#cfn-mediapackage-packagingconfiguration-dashpackage-segmentdurationseconds // SegmentDurationSeconds *float64 `field:"optional" json:"segmentDurationSeconds" yaml:"segmentDurationSeconds"` // Determines the type of SegmentTemplate included in the Media Presentation Description (MPD). // // When set to `NUMBER_WITH_TIMELINE` , a full timeline is presented in each SegmentTemplate, with $Number$ media URLs. When set to `TIME_WITH_TIMELINE` , a full timeline is presented in each SegmentTemplate, with $Time$ media URLs. When set to `NUMBER_WITH_DURATION` , only a duration is included in each SegmentTemplate, with $Number$ media URLs. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackage-packagingconfiguration-dashpackage.html#cfn-mediapackage-packagingconfiguration-dashpackage-segmenttemplateformat // SegmentTemplateFormat *string `field:"optional" json:"segmentTemplateFormat" yaml:"segmentTemplateFormat"` }