Interface CfnBucket.RuleProperty

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

@Stability(Stable) public static interface CfnBucket.RuleProperty extends software.amazon.jsii.JsiiSerializable
A container for an Amazon S3 on Outposts bucket lifecycle rule.

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.s3outposts.*;
 Object filter;
 RuleProperty ruleProperty = RuleProperty.builder()
         .status("status")
         // the properties below are optional
         .abortIncompleteMultipartUpload(AbortIncompleteMultipartUploadProperty.builder()
                 .daysAfterInitiation(123)
                 .build())
         .expirationDate("expirationDate")
         .expirationInDays(123)
         .filter(filter)
         .id("id")
         .build();
 

See Also: