Show / Hide Table of Contents

Class CfnVodSource.HttpPackageConfigurationProperty

The HTTP package configuration properties for the requested VOD source.

Inheritance
object
CfnVodSource.HttpPackageConfigurationProperty
Implements
CfnVodSource.IHttpPackageConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MediaTailor
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVodSource.HttpPackageConfigurationProperty : CfnVodSource.IHttpPackageConfigurationProperty
Syntax (vb)
Public Class CfnVodSource.HttpPackageConfigurationProperty Implements CfnVodSource.IHttpPackageConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-vodsource-httppackageconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.MediaTailor;

             var httpPackageConfigurationProperty = new HttpPackageConfigurationProperty {
                 Path = "path",
                 SourceGroup = "sourceGroup",
                 Type = "type"
             };

Synopsis

Constructors

HttpPackageConfigurationProperty()

The HTTP package configuration properties for the requested VOD source.

Properties

Path

The relative path to the URL for this VOD source.

SourceGroup

The name of the source group.

Type

The streaming protocol for this package configuration.

Constructors

HttpPackageConfigurationProperty()

The HTTP package configuration properties for the requested VOD source.

public HttpPackageConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-vodsource-httppackageconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.MediaTailor;

             var httpPackageConfigurationProperty = new HttpPackageConfigurationProperty {
                 Path = "path",
                 SourceGroup = "sourceGroup",
                 Type = "type"
             };

Properties

Path

The relative path to the URL for this VOD source.

public string Path { get; set; }
Property Value

string

Remarks

This is combined with SourceLocation::HttpConfiguration::BaseUrl to form a valid URL.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-vodsource-httppackageconfiguration.html#cfn-mediatailor-vodsource-httppackageconfiguration-path

SourceGroup

The name of the source group.

public string SourceGroup { get; set; }
Property Value

string

Remarks

This has to match one of the Channel::Outputs::SourceGroup .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-vodsource-httppackageconfiguration.html#cfn-mediatailor-vodsource-httppackageconfiguration-sourcegroup

Type

The streaming protocol for this package configuration.

public string Type { get; set; }
Property Value

string

Remarks

Supported values are HLS and DASH .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-vodsource-httppackageconfiguration.html#cfn-mediatailor-vodsource-httppackageconfiguration-type

Implements

CfnVodSource.IHttpPackageConfigurationProperty
Back to top Generated by DocFX