Interface CfnChannel.OutputDestinationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.OutputDestinationProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.OutputDestinationProperty extends software.amazon.jsii.JsiiSerializable
Configuration information for an output.

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();
 

See Also: