@Stability(value=Stable)
public static interface CfnChannel.RtmpOutputSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.RtmpOutputSettingsProperty.Builder
A builder for
CfnChannel.RtmpOutputSettingsProperty |
static class |
CfnChannel.RtmpOutputSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.RtmpOutputSettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.RtmpOutputSettingsProperty.Builder |
builder() |
default String |
getCertificateMode()
If set to verifyAuthenticity, verifies the TLS certificate chain to a trusted certificate authority (CA).
|
default Number |
getConnectionRetryInterval()
The number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.
|
default Object |
getDestination()
The RTMP endpoint excluding the stream name (for example, rtmp://host/appname).
|
default Number |
getNumRetries()
The number of retry attempts.
|
@Stability(value=Stable) @Nullable default String getCertificateMode()
This causes RTMPS outputs with self-signed certificates to fail.
@Stability(value=Stable) @Nullable default Number getConnectionRetryInterval()
@Stability(value=Stable) @Nullable default Object getDestination()
@Stability(value=Stable) @Nullable default Number getNumRetries()
@Stability(value=Stable) static CfnChannel.RtmpOutputSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.