Interface UdpOutputSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UdpOutputSettings.Builder,UdpOutputSettings>,SdkBuilder<UdpOutputSettings.Builder,UdpOutputSettings>,SdkPojo
- Enclosing class:
- UdpOutputSettings
public static interface UdpOutputSettings.Builder extends SdkPojo, CopyableBuilder<UdpOutputSettings.Builder,UdpOutputSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UdpOutputSettings.BuilderbufferMsec(Integer bufferMsec)UDP output buffering in milliseconds.default UdpOutputSettings.BuildercontainerSettings(Consumer<UdpContainerSettings.Builder> containerSettings)Sets the value of the ContainerSettings property for this object.UdpOutputSettings.BuildercontainerSettings(UdpContainerSettings containerSettings)Sets the value of the ContainerSettings property for this object.default UdpOutputSettings.Builderdestination(Consumer<OutputLocationRef.Builder> destination)Destination address and port number for RTP or UDP packets.UdpOutputSettings.Builderdestination(OutputLocationRef destination)Destination address and port number for RTP or UDP packets.default UdpOutputSettings.BuilderfecOutputSettings(Consumer<FecOutputSettings.Builder> fecOutputSettings)Settings for enabling and adjusting Forward Error Correction on UDP outputs.UdpOutputSettings.BuilderfecOutputSettings(FecOutputSettings fecOutputSettings)Settings for enabling and adjusting Forward Error Correction on UDP outputs.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
bufferMsec
UdpOutputSettings.Builder bufferMsec(Integer bufferMsec)
UDP output buffering in milliseconds. Larger values increase latency through the transcoder but simultaneously assist the transcoder in maintaining a constant, low-jitter UDP/RTP output while accommodating clock recovery, input switching, input disruptions, picture reordering, etc.- Parameters:
bufferMsec- UDP output buffering in milliseconds. Larger values increase latency through the transcoder but simultaneously assist the transcoder in maintaining a constant, low-jitter UDP/RTP output while accommodating clock recovery, input switching, input disruptions, picture reordering, etc.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerSettings
UdpOutputSettings.Builder containerSettings(UdpContainerSettings containerSettings)
Sets the value of the ContainerSettings property for this object.- Parameters:
containerSettings- The new value for the ContainerSettings property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerSettings
default UdpOutputSettings.Builder containerSettings(Consumer<UdpContainerSettings.Builder> containerSettings)
Sets the value of the ContainerSettings property for this object. This is a convenience method that creates an instance of theUdpContainerSettings.Builderavoiding the need to create one manually viaUdpContainerSettings.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocontainerSettings(UdpContainerSettings).- Parameters:
containerSettings- a consumer that will call methods onUdpContainerSettings.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
containerSettings(UdpContainerSettings)
-
destination
UdpOutputSettings.Builder destination(OutputLocationRef destination)
Destination address and port number for RTP or UDP packets. Can be unicast or multicast RTP or UDP (eg. rtp://239.10.10.10:5001 or udp://10.100.100.100:5002).- Parameters:
destination- Destination address and port number for RTP or UDP packets. Can be unicast or multicast RTP or UDP (eg. rtp://239.10.10.10:5001 or udp://10.100.100.100:5002).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default UdpOutputSettings.Builder destination(Consumer<OutputLocationRef.Builder> destination)
Destination address and port number for RTP or UDP packets. Can be unicast or multicast RTP or UDP (eg. rtp://239.10.10.10:5001 or udp://10.100.100.100:5002). 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)
-
fecOutputSettings
UdpOutputSettings.Builder fecOutputSettings(FecOutputSettings fecOutputSettings)
Settings for enabling and adjusting Forward Error Correction on UDP outputs.- Parameters:
fecOutputSettings- Settings for enabling and adjusting Forward Error Correction on UDP outputs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fecOutputSettings
default UdpOutputSettings.Builder fecOutputSettings(Consumer<FecOutputSettings.Builder> fecOutputSettings)
Settings for enabling and adjusting Forward Error Correction on UDP outputs. This is a convenience method that creates an instance of theFecOutputSettings.Builderavoiding the need to create one manually viaFecOutputSettings.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofecOutputSettings(FecOutputSettings).- Parameters:
fecOutputSettings- a consumer that will call methods onFecOutputSettings.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
fecOutputSettings(FecOutputSettings)
-
-