Interface CfnLifecyclePolicy.LastLaunchedProperty

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

@Stability(Stable) public static interface CfnLifecyclePolicy.LastLaunchedProperty extends software.amazon.jsii.JsiiSerializable
Defines criteria to exclude AMIs from lifecycle actions based on the last time they were used to launch an instance.

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.*;
 LastLaunchedProperty lastLaunchedProperty = LastLaunchedProperty.builder()
         .unit("unit")
         .value(123)
         .build();
 

See Also: