Interface CfnInput.InputSourceRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInput.InputSourceRequestProperty.Jsii$Proxy
- Enclosing class:
- CfnInput
@Stability(Stable)
public static interface CfnInput.InputSourceRequestProperty
extends software.amazon.jsii.JsiiSerializable
Settings that apply only if the input is a pull type of input.
The parent of this entity is Input.
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.*;
InputSourceRequestProperty inputSourceRequestProperty = InputSourceRequestProperty.builder()
.passwordParam("passwordParam")
.url("url")
.username("username")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInput.InputSourceRequestPropertystatic final classAn implementation forCfnInput.InputSourceRequestProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe password parameter that holds the password for accessing the upstream system.default StringgetUrl()For a pull input, the URL where MediaLive pulls the source content from.default StringThe user name to connect to the upstream system.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPasswordParam
The password parameter that holds the password for accessing the upstream system.The password parameter applies only if the upstream system requires credentials.
-
getUrl
For a pull input, the URL where MediaLive pulls the source content from. -
getUsername
The user name to connect to the upstream system.The user name applies only if the upstream system requires credentials.
-
builder
-