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