class Aws::OpsWorks::Types::Recipes
AWS OpsWorks
Stacks supports five lifecycle events: setup, configuration, deploy, undeploy, and shutdown. For each layer, AWS OpsWorks
Stacks 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
Stacks 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.
@note When making an API call, you may pass Recipes
data as a hash: { setup: ["String"], configure: ["String"], deploy: ["String"], undeploy: ["String"], shutdown: ["String"], }
@!attribute [rw] setup
An array of custom recipe names to be run following a `setup` event. @return [Array<String>]
@!attribute [rw] configure
An array of custom recipe names to be run following a `configure` event. @return [Array<String>]
@!attribute [rw] deploy
An array of custom recipe names to be run following a `deploy` event. @return [Array<String>]
@!attribute [rw] undeploy
An array of custom recipe names to be run following a `undeploy` event. @return [Array<String>]
@!attribute [rw] shutdown
An array of custom recipe names to be run following a `shutdown` event. @return [Array<String>]
@see docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/Recipes AWS API Documentation
Constants
- SENSITIVE