public static interface CfnChannel.OutputDestinationSettingsProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnChannel.OutputDestinationSettingsProperty.Builder
A builder for
CfnChannel.OutputDestinationSettingsProperty |
static class |
CfnChannel.OutputDestinationSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.OutputDestinationSettingsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnChannel.OutputDestinationSettingsProperty.Builder |
builder() |
default java.lang.String |
getPasswordParam()
The password parameter that holds the password for accessing the downstream system.
|
default java.lang.String |
getStreamName()
The stream name for the content.
|
default java.lang.String |
getUrl()
The URL for the destination.
|
default java.lang.String |
getUsername()
The user name to connect to the downstream system.
|
default java.lang.String getPasswordParam()
This password parameter applies only if the downstream system requires credentials.
default java.lang.String getStreamName()
This applies only to RTMP outputs.
default java.lang.String getUrl()
default java.lang.String getUsername()
This applies only if the downstream system requires credentials.
static CfnChannel.OutputDestinationSettingsProperty.Builder builder()