Interface CfnStorageLensGroup.MatchObjectAgeProperty

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

@Stability(Stable) public static interface CfnStorageLensGroup.MatchObjectAgeProperty extends software.amazon.jsii.JsiiSerializable
This resource contains DaysGreaterThan and DaysLessThan to define the object age range (minimum and maximum number of days).

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.s3.*;
 MatchObjectAgeProperty matchObjectAgeProperty = MatchObjectAgeProperty.builder()
         .daysGreaterThan(123)
         .daysLessThan(123)
         .build();
 

See Also: