Interface CfnChannel.InputLocationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.InputLocationProperty.Jsii$Proxy
- Enclosing class:
- CfnChannel
@Stability(Stable)
public static interface CfnChannel.InputLocationProperty
extends software.amazon.jsii.JsiiSerializable
The input location.
The parent of this entity is InputLossBehavior.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.medialive.*;
InputLocationProperty inputLocationProperty = InputLocationProperty.builder()
.passwordParam("passwordParam")
.uri("uri")
.username("username")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.InputLocationPropertystatic final classAn implementation forCfnChannel.InputLocationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe password parameter that holds the password for accessing the downstream system.default StringgetUri()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.default StringThe user name to connect to the downstream system.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPasswordParam
The password parameter that holds the password for accessing the downstream system.This applies only if the downstream system requires credentials.
-
getUri
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.For example, an RTMP destination should have a URI similar to rtmp://fmsserver/live.
-
getUsername
The user name to connect to the downstream system.This applies only if the downstream system requires credentials.
-
builder
-