Show / Hide Table of Contents

Interface ICfnLiveSourceProps

Properties for defining a CfnLiveSource.

Namespace: Amazon.CDK.AWS.MediaTailor
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnLiveSourceProps
Syntax (vb)
Public Interface ICfnLiveSourceProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-livesource.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 cfnLiveSourceProps = new CfnLiveSourceProps {
                 HttpPackageConfigurations = new [] { new HttpPackageConfigurationProperty {
                     Path = "path",
                     SourceGroup = "sourceGroup",
                     Type = "type"
                 } },
                 LiveSourceName = "liveSourceName",
                 SourceLocationName = "sourceLocationName",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

HttpPackageConfigurations

The HTTP package configurations for the live source.

LiveSourceName

The name that's used to refer to a live source.

SourceLocationName

The name of the source location.

Tags

The tags assigned to the live source.

Properties

HttpPackageConfigurations

The HTTP package configurations for the live source.

object HttpPackageConfigurations { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-livesource.html#cfn-mediatailor-livesource-httppackageconfigurations

Type union: either IResolvable or (either IResolvable or CfnLiveSource.IHttpPackageConfigurationProperty)[]

LiveSourceName

The name that's used to refer to a live source.

string LiveSourceName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-livesource.html#cfn-mediatailor-livesource-livesourcename

SourceLocationName

The name of the source location.

string SourceLocationName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-livesource.html#cfn-mediatailor-livesource-sourcelocationname

Tags

The tags assigned to the live source.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-livesource.html#cfn-mediatailor-livesource-tags

Back to top Generated by DocFX