Interface CfnChannel.RtmpOutputSettingsProperty

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

@Stability(Stable) public static interface CfnChannel.RtmpOutputSettingsProperty extends software.amazon.jsii.JsiiSerializable
The settings for one RTMP output.

The parent of this entity is OutputSettings.

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.*;
 RtmpOutputSettingsProperty rtmpOutputSettingsProperty = RtmpOutputSettingsProperty.builder()
         .certificateMode("certificateMode")
         .connectionRetryInterval(123)
         .destination(OutputLocationRefProperty.builder()
                 .destinationRefId("destinationRefId")
                 .build())
         .numRetries(123)
         .build();
 

See Also: