Interface Source.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Source.Builder,Source>,SdkBuilder<Source.Builder,Source>,SdkPojo
- Enclosing class:
- Source
public static interface Source.Builder extends SdkPojo, CopyableBuilder<Source.Builder,Source>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Source.BuildereksConfiguration(Consumer<EksConfiguration.Builder> eksConfiguration)A representation of an EKS source.Source.BuildereksConfiguration(EksConfiguration eksConfiguration)A representation of an EKS source.-
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
-
eksConfiguration
Source.Builder eksConfiguration(EksConfiguration eksConfiguration)
A representation of an EKS source.
- Parameters:
eksConfiguration- A representation of an EKS source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eksConfiguration
default Source.Builder eksConfiguration(Consumer<EksConfiguration.Builder> eksConfiguration)
A representation of an EKS source.
This is a convenience method that creates an instance of theEksConfiguration.Builderavoiding the need to create one manually viaEksConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toeksConfiguration(EksConfiguration).- Parameters:
eksConfiguration- a consumer that will call methods onEksConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
eksConfiguration(EksConfiguration)
-
-