interface RecipesProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.OpsWorks.CfnLayer.RecipesProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsopsworks#CfnLayer_RecipesProperty | 
|  Java | software.amazon.awscdk.services.opsworks.CfnLayer.RecipesProperty | 
|  Python | aws_cdk.aws_opsworks.CfnLayer.RecipesProperty | 
|  TypeScript | aws-cdk-lib»aws_opsworks»CfnLayer»RecipesProperty | 
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opsworks as opsworks } from 'aws-cdk-lib';
const recipesProperty: opsworks.CfnLayer.RecipesProperty = {
  configure: ['configure'],
  deploy: ['deploy'],
  setup: ['setup'],
  shutdown: ['shutdown'],
  undeploy: ['undeploy'],
};
Properties
| Name | Type | Description | 
|---|---|---|
| configure? | string[] | An array of custom recipe names to be run following a configureevent. | 
| deploy? | string[] | An array of custom recipe names to be run following a deployevent. | 
| setup? | string[] | An array of custom recipe names to be run following a setupevent. | 
| shutdown? | string[] | An array of custom recipe names to be run following a shutdownevent. | 
| undeploy? | string[] | An array of custom recipe names to be run following a undeployevent. | 
configure?
Type:
string[]
(optional)
An array of custom recipe names to be run following a configure event.
deploy?
Type:
string[]
(optional)
An array of custom recipe names to be run following a deploy event.
setup?
Type:
string[]
(optional)
An array of custom recipe names to be run following a setup event.
shutdown?
Type:
string[]
(optional)
An array of custom recipe names to be run following a shutdown event.
undeploy?
Type:
string[]
(optional)
An array of custom recipe names to be run following a undeploy event.
