Class CfnChannel.InputLocationProperty
The input location.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.MediaLive
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class InputLocationProperty : Object, CfnChannel.IInputLocationProperty
Syntax (vb)
Public Class InputLocationProperty
Inherits Object
Implements CfnChannel.IInputLocationProperty
Remarks
The parent of this entity is InputLossBehavior.
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
Input |
Properties
Password |
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()
public InputLocationProperty()
Properties
PasswordParam
The password parameter that holds the password for accessing the downstream system.
public string PasswordParam { get; set; }
Property Value
System.
Remarks
This applies only if the downstream system requires credentials.
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
System.
Remarks
For example, an RTMP destination should have a URI similar to rtmp://fmsserver/live.
Username
The user name to connect to the downstream system.
public string Username { get; set; }
Property Value
System.
Remarks
This applies only if the downstream system requires credentials.