Interface LiveConnectorSinkConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<LiveConnectorSinkConfiguration.Builder,
,LiveConnectorSinkConfiguration> SdkBuilder<LiveConnectorSinkConfiguration.Builder,
,LiveConnectorSinkConfiguration> SdkPojo
- Enclosing class:
LiveConnectorSinkConfiguration
@Mutable
@NotThreadSafe
public static interface LiveConnectorSinkConfiguration.Builder
extends SdkPojo, CopyableBuilder<LiveConnectorSinkConfiguration.Builder,LiveConnectorSinkConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionrtmpConfiguration
(Consumer<LiveConnectorRTMPConfiguration.Builder> rtmpConfiguration) The sink configuration's RTMP configuration settings.rtmpConfiguration
(LiveConnectorRTMPConfiguration rtmpConfiguration) The sink configuration's RTMP configuration settings.The sink configuration's sink type.sinkType
(LiveConnectorSinkType sinkType) The sink configuration's sink type.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 Details
-
sinkType
The sink configuration's sink type.
- Parameters:
sinkType
- The sink configuration's sink type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
sinkType
The sink configuration's sink type.
- Parameters:
sinkType
- The sink configuration's sink type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
rtmpConfiguration
LiveConnectorSinkConfiguration.Builder rtmpConfiguration(LiveConnectorRTMPConfiguration rtmpConfiguration) The sink configuration's RTMP configuration settings.
- Parameters:
rtmpConfiguration
- The sink configuration's RTMP configuration settings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rtmpConfiguration
default LiveConnectorSinkConfiguration.Builder rtmpConfiguration(Consumer<LiveConnectorRTMPConfiguration.Builder> rtmpConfiguration) The sink configuration's RTMP configuration settings.
This is a convenience method that creates an instance of theLiveConnectorRTMPConfiguration.Builder
avoiding the need to create one manually viaLiveConnectorRTMPConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tortmpConfiguration(LiveConnectorRTMPConfiguration)
.- Parameters:
rtmpConfiguration
- a consumer that will call methods onLiveConnectorRTMPConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-