public class Recipes extends Object implements Serializable, Cloneable
AWS OpsWorks supports five lifecycle events: setup,
configuration, deploy, undeploy, and shutdown.
For each layer, AWS OpsWorks runs a set of standard recipes for each event.
In addition, you can provide custom recipes for any or all layers and events.
AWS OpsWorks runs custom event recipes after the standard recipes.
LayerCustomRecipes specifies the custom recipes for a particular
layer to be run in response to each of the five events.
To specify a recipe, use the cookbook's directory name in the repository followed by two colons and the recipe name, which is the recipe's file name without the .rb extension. For example: phpapp2::dbsetup specifies the dbsetup.rb recipe in the repository's phpapp2 folder.
| Constructor and Description |
|---|
Recipes() |
| Modifier and Type | Method and Description |
|---|---|
Recipes |
clone() |
boolean |
equals(Object obj) |
List<String> |
getConfigure()
An array of custom recipe names to be run following a
configure event. |
List<String> |
getDeploy()
An array of custom recipe names to be run following a
deploy
event. |
List<String> |
getSetup()
An array of custom recipe names to be run following a
setup
event. |
List<String> |
getShutdown()
An array of custom recipe names to be run following a
shutdown event. |
List<String> |
getUndeploy()
An array of custom recipe names to be run following a
undeploy event. |
int |
hashCode() |
void |
setConfigure(Collection<String> configure)
An array of custom recipe names to be run following a
configure event. |
void |
setDeploy(Collection<String> deploy)
An array of custom recipe names to be run following a
deploy
event. |
void |
setSetup(Collection<String> setup)
An array of custom recipe names to be run following a
setup
event. |
void |
setShutdown(Collection<String> shutdown)
An array of custom recipe names to be run following a
shutdown event. |
void |
setUndeploy(Collection<String> undeploy)
An array of custom recipe names to be run following a
undeploy event. |
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Recipes |
withConfigure(Collection<String> configure)
An array of custom recipe names to be run following a
configure event. |
Recipes |
withConfigure(String... configure)
An array of custom recipe names to be run following a
configure event. |
Recipes |
withDeploy(Collection<String> deploy)
An array of custom recipe names to be run following a
deploy
event. |
Recipes |
withDeploy(String... deploy)
An array of custom recipe names to be run following a
deploy
event. |
Recipes |
withSetup(Collection<String> setup)
An array of custom recipe names to be run following a
setup
event. |
Recipes |
withSetup(String... setup)
An array of custom recipe names to be run following a
setup
event. |
Recipes |
withShutdown(Collection<String> shutdown)
An array of custom recipe names to be run following a
shutdown event. |
Recipes |
withShutdown(String... shutdown)
An array of custom recipe names to be run following a
shutdown event. |
Recipes |
withUndeploy(Collection<String> undeploy)
An array of custom recipe names to be run following a
undeploy event. |
Recipes |
withUndeploy(String... undeploy)
An array of custom recipe names to be run following a
undeploy event. |
public List<String> getSetup()
An array of custom recipe names to be run following a setup
event.
setup event.public void setSetup(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.public Recipes withSetup(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.public Recipes withSetup(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.public List<String> getConfigure()
An array of custom recipe names to be run following a
configure event.
configure event.public void setConfigure(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.public Recipes withConfigure(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.public Recipes withConfigure(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.public List<String> getDeploy()
An array of custom recipe names to be run following a deploy
event.
deploy event.public void setDeploy(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.public Recipes withDeploy(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.public Recipes withDeploy(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.public List<String> getUndeploy()
An array of custom recipe names to be run following a
undeploy event.
undeploy event.public void setUndeploy(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.public Recipes withUndeploy(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.public Recipes withUndeploy(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.public List<String> getShutdown()
An array of custom recipe names to be run following a
shutdown event.
shutdown event.public void setShutdown(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.public Recipes withShutdown(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.public Recipes withShutdown(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.public String toString()
toString in class ObjectObject.toString()Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.