Interface CfnLayer.RecipesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLayer.RecipesProperty.Jsii$Proxy
- Enclosing class:
CfnLayer
@Stability(Stable)
public static interface CfnLayer.RecipesProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.opsworks.*;
RecipesProperty recipesProperty = RecipesProperty.builder()
.configure(List.of("configure"))
.deploy(List.of("deploy"))
.setup(List.of("setup"))
.shutdown(List.of("shutdown"))
.undeploy(List.of("undeploy"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLayer.RecipesPropertystatic final classAn implementation forCfnLayer.RecipesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()An array of custom recipe names to be run following aconfigureevent.An array of custom recipe names to be run following adeployevent.getSetup()An array of custom recipe names to be run following asetupevent.An array of custom recipe names to be run following ashutdownevent.An array of custom recipe names to be run following aundeployevent.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfigure
An array of custom recipe names to be run following aconfigureevent.- See Also:
-
getDeploy
An array of custom recipe names to be run following adeployevent.- See Also:
-
getSetup
An array of custom recipe names to be run following asetupevent.- See Also:
-
getShutdown
An array of custom recipe names to be run following ashutdownevent.- See Also:
-
getUndeploy
An array of custom recipe names to be run following aundeployevent.- See Also:
-
builder
- Returns:
- a
CfnLayer.RecipesProperty.BuilderofCfnLayer.RecipesProperty
-