public static interface CfnChannel.OutputDestinationProperty
This entity is at the top level in the channel.
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.*; OutputDestinationProperty outputDestinationProperty = OutputDestinationProperty.builder() .id("id") .mediaPackageSettings(List.of(MediaPackageOutputDestinationSettingsProperty.builder() .channelId("channelId") .build())) .multiplexSettings(MultiplexProgramChannelDestinationSettingsProperty.builder() .multiplexId("multiplexId") .programName("programName") .build()) .settings(List.of(OutputDestinationSettingsProperty.builder() .passwordParam("passwordParam") .streamName("streamName") .url("url") .username("username") .build())) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnChannel.OutputDestinationProperty.Builder
A builder for
CfnChannel.OutputDestinationProperty |
static class |
CfnChannel.OutputDestinationProperty.Jsii$Proxy
An implementation for
CfnChannel.OutputDestinationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnChannel.OutputDestinationProperty.Builder |
builder() |
default java.lang.String |
getId()
The ID for this destination.
|
default java.lang.Object |
getMediaPackageSettings()
The destination settings for a MediaPackage output.
|
default java.lang.Object |
getMultiplexSettings()
Destination settings for a Multiplex output;
|
default java.lang.Object |
getSettings()
The destination settings for an output.
|
default java.lang.String getId()
default java.lang.Object getMediaPackageSettings()
default java.lang.Object getMultiplexSettings()
one destination for both encoders.
default java.lang.Object getSettings()
static CfnChannel.OutputDestinationProperty.Builder builder()