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.

Esempio n. 1
0
 public CreateLayerRequest WithCustomRecipes(Recipes customRecipes)
 {
     this.customRecipes = customRecipes;
     return(this);
 }
 public UpdateLayerRequest WithCustomRecipes(Recipes customRecipes)
 {
     this.customRecipes = customRecipes;
     return this;
 }
Esempio n. 3
0
 public Layer WithCustomRecipes(Recipes customRecipes)
 {
     this.customRecipes = customRecipes;
     return(this);
 }
Esempio n. 4
0
 public Layer WithDefaultRecipes(Recipes defaultRecipes)
 {
     this.defaultRecipes = defaultRecipes;
     return(this);
 }
Esempio n. 5
0
 public Layer WithDefaultRecipes(Recipes defaultRecipes)
 {
     this.defaultRecipes = defaultRecipes;
     return this;
 }
Esempio n. 6
0
 public Layer WithCustomRecipes(Recipes customRecipes)
 {
     this.customRecipes = customRecipes;
     return this;
 }