Interface InputConfigurationRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InputConfigurationRequest.Builder,InputConfigurationRequest>,SdkBuilder<InputConfigurationRequest.Builder,InputConfigurationRequest>,SdkPojo
- Enclosing class:
- InputConfigurationRequest
public static interface InputConfigurationRequest.Builder extends SdkPojo, CopyableBuilder<InputConfigurationRequest.Builder,InputConfigurationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description InputConfigurationRequest.BuilderinputPort(Integer inputPort)The port that you want the flow to listen on for an incoming media stream.default InputConfigurationRequest.BuilderinterfaceValue(Consumer<InterfaceRequest.Builder> interfaceValue)The VPC interface that you want to use for the incoming media stream.InputConfigurationRequest.BuilderinterfaceValue(InterfaceRequest interfaceValue)The VPC interface that you want to use for the incoming media stream.-
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
-
inputPort
InputConfigurationRequest.Builder inputPort(Integer inputPort)
The port that you want the flow to listen on for an incoming media stream.- Parameters:
inputPort- The port that you want the flow to listen on for an incoming media stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
interfaceValue
InputConfigurationRequest.Builder interfaceValue(InterfaceRequest interfaceValue)
The VPC interface that you want to use for the incoming media stream.- Parameters:
interfaceValue- The VPC interface that you want to use for the incoming media stream.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
interfaceValue
default InputConfigurationRequest.Builder interfaceValue(Consumer<InterfaceRequest.Builder> interfaceValue)
The VPC interface that you want to use for the incoming media stream. This is a convenience method that creates an instance of theInterfaceRequest.Builderavoiding the need to create one manually viaInterfaceRequest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tointerfaceValue(InterfaceRequest).- Parameters:
interfaceValue- a consumer that will call methods onInterfaceRequest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
interfaceValue(InterfaceRequest)
-
-