Interface CfnChannel.OutputDestinationSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.OutputDestinationSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.OutputDestinationSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The configuration information for this output.
The parent of this entity is OutputDestination.
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.*; OutputDestinationSettingsProperty outputDestinationSettingsProperty = OutputDestinationSettingsProperty.builder() .passwordParam("passwordParam") .streamName("streamName") .url("url") .username("username") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.OutputDestinationSettingsProperty
static final class
An implementation forCfnChannel.OutputDestinationSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The password parameter that holds the password for accessing the downstream system.default String
The stream name for the content.default String
getUrl()
The URL for the destination.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 password parameter applies only if the downstream system requires credentials.
- See Also:
-
getStreamName
The stream name for the content.This applies only to RTMP outputs.
- See Also:
-
getUrl
The URL for the destination.- See Also:
-
getUsername
The user name to connect to the downstream system.This applies only if the downstream system requires credentials.
- See Also:
-
builder
-