Interface AudioChannelMapping.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AudioChannelMapping.Builder,AudioChannelMapping>,SdkBuilder<AudioChannelMapping.Builder,AudioChannelMapping>,SdkPojo
- Enclosing class:
- AudioChannelMapping
public static interface AudioChannelMapping.Builder extends SdkPojo, CopyableBuilder<AudioChannelMapping.Builder,AudioChannelMapping>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AudioChannelMapping.BuilderinputChannelLevels(Collection<InputChannelLevel> inputChannelLevels)Indices and gain values for each input channel that should be remixed into this output channel.AudioChannelMapping.BuilderinputChannelLevels(Consumer<InputChannelLevel.Builder>... inputChannelLevels)Indices and gain values for each input channel that should be remixed into this output channel.AudioChannelMapping.BuilderinputChannelLevels(InputChannelLevel... inputChannelLevels)Indices and gain values for each input channel that should be remixed into this output channel.AudioChannelMapping.BuilderoutputChannel(Integer outputChannel)The index of the output channel being produced.-
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
-
inputChannelLevels
AudioChannelMapping.Builder inputChannelLevels(Collection<InputChannelLevel> inputChannelLevels)
Indices and gain values for each input channel that should be remixed into this output channel.- Parameters:
inputChannelLevels- Indices and gain values for each input channel that should be remixed into this output channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputChannelLevels
AudioChannelMapping.Builder inputChannelLevels(InputChannelLevel... inputChannelLevels)
Indices and gain values for each input channel that should be remixed into this output channel.- Parameters:
inputChannelLevels- Indices and gain values for each input channel that should be remixed into this output channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputChannelLevels
AudioChannelMapping.Builder inputChannelLevels(Consumer<InputChannelLevel.Builder>... inputChannelLevels)
Indices and gain values for each input channel that should be remixed into this output channel. This is a convenience method that creates an instance of theInputChannelLevel.Builderavoiding the need to create one manually viaInputChannelLevel.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#inputChannelLevels(List.) - Parameters:
inputChannelLevels- a consumer that will call methods onInputChannelLevel.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#inputChannelLevels(java.util.Collection)
-
outputChannel
AudioChannelMapping.Builder outputChannel(Integer outputChannel)
The index of the output channel being produced.- Parameters:
outputChannel- The index of the output channel being produced.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-