aws-cdk-lib.aws_medialive.CfnChannel.RtmpOutputSettingsProperty

interface RtmpOutputSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.RtmpOutputSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_RtmpOutputSettingsProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.RtmpOutputSettingsProperty
Pythonaws_cdk.aws_medialive.CfnChannel.RtmpOutputSettingsProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » RtmpOutputSettingsProperty

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 { aws_medialive as medialive } from 'aws-cdk-lib';
const rtmpOutputSettingsProperty: medialive.CfnChannel.RtmpOutputSettingsProperty = {
  certificateMode: 'certificateMode',
  connectionRetryInterval: 123,
  destination: {
    destinationRefId: 'destinationRefId',
  },
  numRetries: 123,
};

Properties

NameTypeDescription
certificateMode?stringIf set to verifyAuthenticity, verifies the TLS certificate chain to a trusted certificate authority (CA).
connectionRetryInterval?numberThe number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.
destination?IResolvable | OutputLocationRefPropertyThe RTMP endpoint excluding the stream name (for example, rtmp://host/appname).
numRetries?numberThe number of retry attempts.

certificateMode?

Type: string (optional)

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.


connectionRetryInterval?

Type: number (optional)

The number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.


destination?

Type: IResolvable | OutputLocationRefProperty (optional)

The RTMP endpoint excluding the stream name (for example, rtmp://host/appname).


numRetries?

Type: number (optional)

The number of retry attempts.