Show / Hide Table of Contents

Class CfnChannel.InputLocationProperty

The input location.

Inheritance
object
CfnChannel.InputLocationProperty
Implements
CfnChannel.IInputLocationProperty
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.MediaLive
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnChannel.InputLocationProperty : CfnChannel.IInputLocationProperty
Syntax (vb)
Public Class CfnChannel.InputLocationProperty Implements CfnChannel.IInputLocationProperty
Remarks

The parent of this entity is InputLossBehavior.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputlocation.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.MediaLive;

             var inputLocationProperty = new InputLocationProperty {
                 PasswordParam = "passwordParam",
                 Uri = "uri",
                 Username = "username"
             };

Synopsis

Constructors

InputLocationProperty()

The input location.

Properties

PasswordParam

The password parameter that holds the password for accessing the downstream system.

Uri

The URI should be a path to a file that is accessible to the Live system (for example, an http:// URI) depending on the output type.

Username

The user name to connect to the downstream system.

Constructors

InputLocationProperty()

The input location.

public InputLocationProperty()
Remarks

The parent of this entity is InputLossBehavior.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputlocation.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.MediaLive;

             var inputLocationProperty = new InputLocationProperty {
                 PasswordParam = "passwordParam",
                 Uri = "uri",
                 Username = "username"
             };

Properties

PasswordParam

The password parameter that holds the password for accessing the downstream system.

public string? PasswordParam { get; set; }
Property Value

string

Remarks

This applies only if the downstream system requires credentials.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputlocation.html#cfn-medialive-channel-inputlocation-passwordparam

Uri

The URI should be a path to a file that is accessible to the Live system (for example, an http:// URI) depending on the output type.

public string? Uri { get; set; }
Property Value

string

Remarks

For example, an RTMP destination should have a URI similar to rtmp://fmsserver/live.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputlocation.html#cfn-medialive-channel-inputlocation-uri

Username

The user name to connect to the downstream system.

public string? Username { get; set; }
Property Value

string

Remarks

This applies only if the downstream system requires credentials.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-inputlocation.html#cfn-medialive-channel-inputlocation-username

Implements

CfnChannel.IInputLocationProperty
Back to top Generated by DocFX