interface RecipeSelectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnLifecyclePolicyPropsMixin.RecipeSelectionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnLifecyclePolicyPropsMixin_RecipeSelectionProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnLifecyclePolicyPropsMixin.RecipeSelectionProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnLifecyclePolicyPropsMixin.RecipeSelectionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnLifecyclePolicyPropsMixin » RecipeSelectionProperty |
Specifies an Image Builder recipe that the lifecycle policy uses for resource selection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as imagebuilder_mixins } from '@aws-cdk/mixins-preview/aws-imagebuilder';
const recipeSelectionProperty: imagebuilder_mixins.CfnLifecyclePolicyPropsMixin.RecipeSelectionProperty = {
name: 'name',
semanticVersion: 'semanticVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of an Image Builder recipe that the lifecycle policy uses for resource selection. |
| semantic | string | The version of the Image Builder recipe specified by the name field. |
name?
Type:
string
(optional)
The name of an Image Builder recipe that the lifecycle policy uses for resource selection.
semanticVersion?
Type:
string
(optional)
The version of the Image Builder recipe specified by the name field.

.NET
Go
Java
Python
TypeScript