interface RecipesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpsWorks.Mixins.CfnLayerPropsMixin.RecipesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopsworks/mixins#CfnLayerPropsMixin_RecipesProperty |
Java | software.amazon.awscdk.mixins.preview.services.opsworks.mixins.CfnLayerPropsMixin.RecipesProperty |
Python | aws_cdk.mixins_preview.aws_opsworks.mixins.CfnLayerPropsMixin.RecipesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opsworks » mixins » CfnLayerPropsMixin » RecipesProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as opsworks_mixins } from '@aws-cdk/mixins-preview/aws-opsworks';
const recipesProperty: opsworks_mixins.CfnLayerPropsMixin.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 configure event. |
| deploy? | string[] | An array of custom recipe names to be run following a deploy event. |
| setup? | string[] | An array of custom recipe names to be run following a setup event. |
| shutdown? | string[] | An array of custom recipe names to be run following a shutdown event. |
| undeploy? | string[] | An array of custom recipe names to be run following a undeploy event. |
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.

.NET
Go
Java
Python
TypeScript