Recipes class

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.

Constructors

Recipes({List<String>? configure, List<String>? deploy, List<String>? setup, List<String>? shutdown, List<String>? undeploy})
Recipes.fromJson(Map<String, dynamic> json)
factory

Properties

configure List<String>?
An array of custom recipe names to be run following a configure event.
final
deploy List<String>?
An array of custom recipe names to be run following a deploy event.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
setup List<String>?
An array of custom recipe names to be run following a setup event.
final
shutdown List<String>?
An array of custom recipe names to be run following a shutdown event.
final
undeploy List<String>?
An array of custom recipe names to be run following a undeploy event.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited