CopyableBuilder<Recipes.Builder,Recipes>
, SdkBuilder<Recipes.Builder,Recipes>
public static interface Recipes.Builder extends CopyableBuilder<Recipes.Builder,Recipes>
Modifier and Type | Method | Description |
---|---|---|
Recipes.Builder |
configure(String... configure) |
An array of custom recipe names to be run following a
configure event. |
Recipes.Builder |
configure(Collection<String> configure) |
An array of custom recipe names to be run following a
configure event. |
Recipes.Builder |
deploy(String... deploy) |
An array of custom recipe names to be run following a
deploy event. |
Recipes.Builder |
deploy(Collection<String> deploy) |
An array of custom recipe names to be run following a
deploy event. |
Recipes.Builder |
setup(String... setup) |
An array of custom recipe names to be run following a
setup event. |
Recipes.Builder |
setup(Collection<String> setup) |
An array of custom recipe names to be run following a
setup event. |
Recipes.Builder |
shutdown(String... shutdown) |
An array of custom recipe names to be run following a
shutdown event. |
Recipes.Builder |
shutdown(Collection<String> shutdown) |
An array of custom recipe names to be run following a
shutdown event. |
Recipes.Builder |
undeploy(String... undeploy) |
An array of custom recipe names to be run following a
undeploy event. |
Recipes.Builder |
undeploy(Collection<String> undeploy) |
An array of custom recipe names to be run following a
undeploy event. |
copy
apply, build
Recipes.Builder setup(Collection<String> setup)
An array of custom recipe names to be run following a setup
event.
setup
- An array of custom recipe names to be run following a setup
event.Recipes.Builder setup(String... setup)
An array of custom recipe names to be run following a setup
event.
NOTE: This method appends the values to the existing list (if any). Use
#setSetup(java.util.Collection)
or #withSetup(java.util.Collection)
if you want to override
the existing values.
setup
- An array of custom recipe names to be run following a setup
event.Recipes.Builder configure(Collection<String> configure)
An array of custom recipe names to be run following a configure
event.
configure
- An array of custom recipe names to be run following a configure
event.Recipes.Builder configure(String... configure)
An array of custom recipe names to be run following a configure
event.
NOTE: This method appends the values to the existing list (if any). Use
#setConfigure(java.util.Collection)
or #withConfigure(java.util.Collection)
if you want to
override the existing values.
configure
- An array of custom recipe names to be run following a configure
event.Recipes.Builder deploy(Collection<String> deploy)
An array of custom recipe names to be run following a deploy
event.
deploy
- An array of custom recipe names to be run following a deploy
event.Recipes.Builder deploy(String... deploy)
An array of custom recipe names to be run following a deploy
event.
NOTE: This method appends the values to the existing list (if any). Use
#setDeploy(java.util.Collection)
or #withDeploy(java.util.Collection)
if you want to override
the existing values.
deploy
- An array of custom recipe names to be run following a deploy
event.Recipes.Builder undeploy(Collection<String> undeploy)
An array of custom recipe names to be run following a undeploy
event.
undeploy
- An array of custom recipe names to be run following a undeploy
event.Recipes.Builder undeploy(String... undeploy)
An array of custom recipe names to be run following a undeploy
event.
NOTE: This method appends the values to the existing list (if any). Use
#setUndeploy(java.util.Collection)
or #withUndeploy(java.util.Collection)
if you want to
override the existing values.
undeploy
- An array of custom recipe names to be run following a undeploy
event.Recipes.Builder shutdown(Collection<String> shutdown)
An array of custom recipe names to be run following a shutdown
event.
shutdown
- An array of custom recipe names to be run following a shutdown
event.Recipes.Builder shutdown(String... shutdown)
An array of custom recipe names to be run following a shutdown
event.
NOTE: This method appends the values to the existing list (if any). Use
#setShutdown(java.util.Collection)
or #withShutdown(java.util.Collection)
if you want to
override the existing values.
shutdown
- An array of custom recipe names to be run following a shutdown
event.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.