interface RtmpOutputSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.RtmpOutputSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_RtmpOutputSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.RtmpOutputSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.RtmpOutputSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnChannelPropsMixin » 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/cfn-property-mixins';
const rtmpOutputSettingsProperty: medialive.CfnChannelPropsMixin.RtmpOutputSettingsProperty = {
certificateMode: 'certificateMode',
connectionRetryInterval: 123,
destination: {
destinationRefId: 'destinationRefId',
},
numRetries: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | If set to verifyAuthenticity, verifies the TLS certificate chain to a trusted certificate authority (CA). |
| connection | number | The number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost. |
| destination? | IResolvable | Output | The RTMP endpoint excluding the stream name (for example, rtmp://host/appname). |
| num | number | The 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 | Output
(optional)
The RTMP endpoint excluding the stream name (for example, rtmp://host/appname).
numRetries?
Type:
number
(optional)
The number of retry attempts.

.NET
Go
Java
Python
TypeScript