Interface Recipes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Recipes.Builder,Recipes>,SdkBuilder<Recipes.Builder,Recipes>,SdkPojo
- Enclosing class:
- Recipes
public static interface Recipes.Builder extends SdkPojo, CopyableBuilder<Recipes.Builder,Recipes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Recipes.Builderconfigure(String... configure)An array of custom recipe names to be run following aconfigureevent.Recipes.Builderconfigure(Collection<String> configure)An array of custom recipe names to be run following aconfigureevent.Recipes.Builderdeploy(String... deploy)An array of custom recipe names to be run following adeployevent.Recipes.Builderdeploy(Collection<String> deploy)An array of custom recipe names to be run following adeployevent.Recipes.Buildersetup(String... setup)An array of custom recipe names to be run following asetupevent.Recipes.Buildersetup(Collection<String> setup)An array of custom recipe names to be run following asetupevent.Recipes.Buildershutdown(String... shutdown)An array of custom recipe names to be run following ashutdownevent.Recipes.Buildershutdown(Collection<String> shutdown)An array of custom recipe names to be run following ashutdownevent.Recipes.Builderundeploy(String... undeploy)An array of custom recipe names to be run following aundeployevent.Recipes.Builderundeploy(Collection<String> undeploy)An array of custom recipe names to be run following aundeployevent.-
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
-
setup
Recipes.Builder setup(Collection<String> setup)
An array of custom recipe names to be run following a
setupevent.- Parameters:
setup- An array of custom recipe names to be run following asetupevent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setup
Recipes.Builder setup(String... setup)
An array of custom recipe names to be run following a
setupevent.- Parameters:
setup- An array of custom recipe names to be run following asetupevent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configure
Recipes.Builder configure(Collection<String> configure)
An array of custom recipe names to be run following a
configureevent.- Parameters:
configure- An array of custom recipe names to be run following aconfigureevent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configure
Recipes.Builder configure(String... configure)
An array of custom recipe names to be run following a
configureevent.- Parameters:
configure- An array of custom recipe names to be run following aconfigureevent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deploy
Recipes.Builder deploy(Collection<String> deploy)
An array of custom recipe names to be run following a
deployevent.- Parameters:
deploy- An array of custom recipe names to be run following adeployevent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deploy
Recipes.Builder deploy(String... deploy)
An array of custom recipe names to be run following a
deployevent.- Parameters:
deploy- An array of custom recipe names to be run following adeployevent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
undeploy
Recipes.Builder undeploy(Collection<String> undeploy)
An array of custom recipe names to be run following a
undeployevent.- Parameters:
undeploy- An array of custom recipe names to be run following aundeployevent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
undeploy
Recipes.Builder undeploy(String... undeploy)
An array of custom recipe names to be run following a
undeployevent.- Parameters:
undeploy- An array of custom recipe names to be run following aundeployevent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
shutdown
Recipes.Builder shutdown(Collection<String> shutdown)
An array of custom recipe names to be run following a
shutdownevent.- Parameters:
shutdown- An array of custom recipe names to be run following ashutdownevent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
shutdown
Recipes.Builder shutdown(String... shutdown)
An array of custom recipe names to be run following a
shutdownevent.- Parameters:
shutdown- An array of custom recipe names to be run following ashutdownevent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-