Interface CfnLifecyclePolicy.FilterProperty

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

@Stability(Stable) public static interface CfnLifecyclePolicy.FilterProperty extends software.amazon.jsii.JsiiSerializable
Defines filters that the lifecycle policy uses to determine impacted resource.

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.*;
 FilterProperty filterProperty = FilterProperty.builder()
         .type("type")
         .value(123)
         // the properties below are optional
         .retainAtLeast(123)
         .unit("unit")
         .build();
 

See Also: