Interface CfnLifecyclePolicy.ResourceSelectionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLifecyclePolicy.ResourceSelectionProperty.Jsii$Proxy
Enclosing class:
CfnLifecyclePolicy

@Stability(Stable) public static interface CfnLifecyclePolicy.ResourceSelectionProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.imagebuilder.*;
 ResourceSelectionProperty resourceSelectionProperty = ResourceSelectionProperty.builder()
         .recipes(List.of(RecipeSelectionProperty.builder()
                 .name("name")
                 .semanticVersion("semanticVersion")
                 .build()))
         .tagMap(Map.of(
                 "tagMapKey", "tagMap"))
         .build();
 

See Also: