Interface ProcessingConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ProcessingConfiguration.Builder,
,ProcessingConfiguration> SdkBuilder<ProcessingConfiguration.Builder,
,ProcessingConfiguration> SdkPojo
- Enclosing class:
ProcessingConfiguration
public static interface ProcessingConfiguration.Builder
extends SdkPojo, CopyableBuilder<ProcessingConfiguration.Builder,ProcessingConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionEnables or disables data processing.processors
(Collection<Processor> processors) The data processors.processors
(Consumer<Processor.Builder>... processors) The data processors.processors
(Processor... processors) The data processors.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 Details
-
enabled
Enables or disables data processing.
- Parameters:
enabled
- Enables or disables data processing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
processors
The data processors.
- Parameters:
processors
- The data processors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
processors
The data processors.
- Parameters:
processors
- The data processors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
processors
The data processors.
This is a convenience method that creates an instance of theProcessor.Builder
avoiding the need to create one manually viaProcessor.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toprocessors(List<Processor>)
.- Parameters:
processors
- a consumer that will call methods onProcessor.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-