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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.RtmpOutputSettingsProperty
static final class
An implementation forCfnChannel.RtmpOutputSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
If set to verifyAuthenticity, verifies the TLS certificate chain to a trusted certificate authority (CA).default Number
The number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.default Object
The RTMP endpoint excluding the stream name (for example, rtmp://host/appname).default Number
The number of retry attempts.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateMode
If set to verifyAuthenticity, verifies the TLS certificate chain to a trusted certificate authority (CA).This causes RTMPS outputs with self-signed certificates to fail.
-
getConnectionRetryInterval
The number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost. -
getDestination
The RTMP endpoint excluding the stream name (for example, rtmp://host/appname). -
getNumRetries
The number of retry attempts. -
builder
-