Interface RtmpOutputSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RtmpOutputSettings.Builder,RtmpOutputSettings>,SdkBuilder<RtmpOutputSettings.Builder,RtmpOutputSettings>,SdkPojo
- Enclosing class:
- RtmpOutputSettings
public static interface RtmpOutputSettings.Builder extends SdkPojo, CopyableBuilder<RtmpOutputSettings.Builder,RtmpOutputSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description RtmpOutputSettings.BuildercertificateMode(String certificateMode)If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA).RtmpOutputSettings.BuildercertificateMode(RtmpOutputCertificateMode certificateMode)If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA).RtmpOutputSettings.BuilderconnectionRetryInterval(Integer connectionRetryInterval)Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.default RtmpOutputSettings.Builderdestination(Consumer<OutputLocationRef.Builder> destination)The RTMP endpoint excluding the stream name (eg.RtmpOutputSettings.Builderdestination(OutputLocationRef destination)The RTMP endpoint excluding the stream name (eg.RtmpOutputSettings.BuildernumRetries(Integer numRetries)Number of retry attempts.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
certificateMode
RtmpOutputSettings.Builder certificateMode(String certificateMode)
If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will cause rtmps outputs with self-signed certificates to fail.- Parameters:
certificateMode- If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will cause rtmps outputs with self-signed certificates to fail.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RtmpOutputCertificateMode,RtmpOutputCertificateMode
-
certificateMode
RtmpOutputSettings.Builder certificateMode(RtmpOutputCertificateMode certificateMode)
If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will cause rtmps outputs with self-signed certificates to fail.- Parameters:
certificateMode- If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will cause rtmps outputs with self-signed certificates to fail.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RtmpOutputCertificateMode,RtmpOutputCertificateMode
-
connectionRetryInterval
RtmpOutputSettings.Builder connectionRetryInterval(Integer connectionRetryInterval)
Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.- Parameters:
connectionRetryInterval- Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
RtmpOutputSettings.Builder destination(OutputLocationRef destination)
The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a username and password must be supplied. URI fields accept format identifiers.- Parameters:
destination- The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a username and password must be supplied. URI fields accept format identifiers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default RtmpOutputSettings.Builder destination(Consumer<OutputLocationRef.Builder> destination)
The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a username and password must be supplied. URI fields accept format identifiers. This is a convenience method that creates an instance of theOutputLocationRef.Builderavoiding the need to create one manually viaOutputLocationRef.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todestination(OutputLocationRef).- Parameters:
destination- a consumer that will call methods onOutputLocationRef.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destination(OutputLocationRef)
-
numRetries
RtmpOutputSettings.Builder numRetries(Integer numRetries)
Number of retry attempts.- Parameters:
numRetries- Number of retry attempts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-