Class: Aws::OpsWorks::Types::Recipes
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpsWorks::Types::Recipes
- Defined in:
- gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb
Overview
OpsWorks Stacks supports five lifecycle events: setup,
configuration, deploy, undeploy, and shutdown. For
each layer, 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. 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configure ⇒ Array<String>
An array of custom recipe names to be run following a
configure
event. -
#deploy ⇒ Array<String>
An array of custom recipe names to be run following a
deploy
event. -
#setup ⇒ Array<String>
An array of custom recipe names to be run following a
setup
event. -
#shutdown ⇒ Array<String>
An array of custom recipe names to be run following a
shutdown
event. -
#undeploy ⇒ Array<String>
An array of custom recipe names to be run following a
undeploy
event.
Instance Attribute Details
#configure ⇒ Array<String>
An array of custom recipe names to be run following a configure
event.
4350 4351 4352 4353 4354 4355 4356 4357 4358 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 4350 class Recipes < Struct.new( :setup, :configure, :deploy, :undeploy, :shutdown) SENSITIVE = [] include Aws::Structure end |
#deploy ⇒ Array<String>
An array of custom recipe names to be run following a deploy
event.
4350 4351 4352 4353 4354 4355 4356 4357 4358 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 4350 class Recipes < Struct.new( :setup, :configure, :deploy, :undeploy, :shutdown) SENSITIVE = [] include Aws::Structure end |
#setup ⇒ Array<String>
An array of custom recipe names to be run following a setup
event.
4350 4351 4352 4353 4354 4355 4356 4357 4358 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 4350 class Recipes < Struct.new( :setup, :configure, :deploy, :undeploy, :shutdown) SENSITIVE = [] include Aws::Structure end |
#shutdown ⇒ Array<String>
An array of custom recipe names to be run following a shutdown
event.
4350 4351 4352 4353 4354 4355 4356 4357 4358 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 4350 class Recipes < Struct.new( :setup, :configure, :deploy, :undeploy, :shutdown) SENSITIVE = [] include Aws::Structure end |
#undeploy ⇒ Array<String>
An array of custom recipe names to be run following a undeploy
event.
4350 4351 4352 4353 4354 4355 4356 4357 4358 |
# File 'gems/aws-sdk-opsworks/lib/aws-sdk-opsworks/types.rb', line 4350 class Recipes < Struct.new( :setup, :configure, :deploy, :undeploy, :shutdown) SENSITIVE = [] include Aws::Structure end |