interface ResourceSelectionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnLifecyclePolicyPropsMixin.ResourceSelectionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnLifecyclePolicyPropsMixin_ResourceSelectionProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnLifecyclePolicyPropsMixin.ResourceSelectionProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnLifecyclePolicyPropsMixin.ResourceSelectionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnLifecyclePolicyPropsMixin » ResourceSelectionProperty |
Resource selection criteria for the lifecycle policy.
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 resourceSelectionProperty: imagebuilder_mixins.CfnLifecyclePolicyPropsMixin.ResourceSelectionProperty = {
recipes: [{
name: 'name',
semanticVersion: 'semanticVersion',
}],
tagMap: {
tagMapKey: 'tagMap',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| recipes? | IResolvable | (IResolvable | Recipe)[] | A list of recipes that are used as selection criteria for the output images that the lifecycle policy applies to. |
| tag | { [string]: string } | IResolvable | A list of tags that are used as selection criteria for the Image Builder image resources that the lifecycle policy applies to. |
recipes?
Type:
IResolvable | (IResolvable | Recipe)[]
(optional)
A list of recipes that are used as selection criteria for the output images that the lifecycle policy applies to.
tagMap?
Type:
{ [string]: string } | IResolvable
(optional)
A list of tags that are used as selection criteria for the Image Builder image resources that the lifecycle policy applies to.

.NET
Go
Java
Python
TypeScript