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: