Interface PluginDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PluginDescription.Builder,PluginDescription>,SdkBuilder<PluginDescription.Builder,PluginDescription>,SdkPojo
- Enclosing class:
- PluginDescription
public static interface PluginDescription.Builder extends SdkPojo, CopyableBuilder<PluginDescription.Builder,PluginDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PluginDescription.BuildercustomPlugin(Consumer<CustomPluginDescription.Builder> customPlugin)Details about a custom plugin.PluginDescription.BuildercustomPlugin(CustomPluginDescription customPlugin)Details about a custom plugin.-
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 Detail
-
customPlugin
PluginDescription.Builder customPlugin(CustomPluginDescription customPlugin)
Details about a custom plugin.
- Parameters:
customPlugin- Details about a custom plugin.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customPlugin
default PluginDescription.Builder customPlugin(Consumer<CustomPluginDescription.Builder> customPlugin)
Details about a custom plugin.
This is a convenience method that creates an instance of theCustomPluginDescription.Builderavoiding the need to create one manually viaCustomPluginDescription.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocustomPlugin(CustomPluginDescription).- Parameters:
customPlugin- a consumer that will call methods onCustomPluginDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
customPlugin(CustomPluginDescription)
-
-