interface RecipeSelectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder.CfnLifecyclePolicyPropsMixin.RecipeSelectionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsimagebuilder#CfnLifecyclePolicyPropsMixin_RecipeSelectionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.CfnLifecyclePolicyPropsMixin.RecipeSelectionProperty |
Python | aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnLifecyclePolicyPropsMixin.RecipeSelectionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_imagebuilder » 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 { aws_imagebuilder as imagebuilder } from '@aws-cdk/cfn-property-mixins';
const recipeSelectionProperty: imagebuilder.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