Interface CfnLifecyclePolicy.IncludeResourcesProperty

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

@Stability(Stable) public static interface CfnLifecyclePolicy.IncludeResourcesProperty extends software.amazon.jsii.JsiiSerializable
Specifies how the lifecycle policy should apply actions to selected resources.

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.*;
 IncludeResourcesProperty includeResourcesProperty = IncludeResourcesProperty.builder()
         .amis(false)
         .containers(false)
         .snapshots(false)
         .build();
 

See Also: