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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.InputLocationProperty
static final class
An implementation forCfnChannel.InputLocationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The password parameter that holds the password for accessing the downstream system.default String
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.default String
The 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.
- See Also:
-
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.
- See Also:
-
getUsername
The user name to connect to the downstream system.This applies only if the downstream system requires credentials.
- See Also:
-
builder
-