Class CfnChannel.InputLocationProperty
The input location.
Implements
Inherited Members
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.
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.
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
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
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
Remarks
This applies only if the downstream system requires credentials.