Interface CfnBucket.LifecycleConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBucket.LifecycleConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnBucket
@Stability(Stable)
public static interface CfnBucket.LifecycleConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the lifecycle configuration for objects in an Amazon S3 bucket.
For more information, see Object Lifecycle Management in the Amazon S3 User Guide .
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.*;
LifecycleConfigurationProperty lifecycleConfigurationProperty = LifecycleConfigurationProperty.builder()
.rules(List.of(RuleProperty.builder()
.status("status")
// the properties below are optional
.abortIncompleteMultipartUpload(AbortIncompleteMultipartUploadProperty.builder()
.daysAfterInitiation(123)
.build())
.expirationDate(new Date())
.expirationInDays(123)
.expiredObjectDeleteMarker(false)
.id("id")
.noncurrentVersionExpiration(NoncurrentVersionExpirationProperty.builder()
.noncurrentDays(123)
// the properties below are optional
.newerNoncurrentVersions(123)
.build())
.noncurrentVersionExpirationInDays(123)
.noncurrentVersionTransition(NoncurrentVersionTransitionProperty.builder()
.storageClass("storageClass")
.transitionInDays(123)
// the properties below are optional
.newerNoncurrentVersions(123)
.build())
.noncurrentVersionTransitions(List.of(NoncurrentVersionTransitionProperty.builder()
.storageClass("storageClass")
.transitionInDays(123)
// the properties below are optional
.newerNoncurrentVersions(123)
.build()))
.objectSizeGreaterThan(123)
.objectSizeLessThan(123)
.prefix("prefix")
.tagFilters(List.of(TagFilterProperty.builder()
.key("key")
.value("value")
.build()))
.transition(TransitionProperty.builder()
.storageClass("storageClass")
// the properties below are optional
.transitionDate(new Date())
.transitionInDays(123)
.build())
.transitions(List.of(TransitionProperty.builder()
.storageClass("storageClass")
// the properties below are optional
.transitionDate(new Date())
.transitionInDays(123)
.build()))
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBucket.LifecycleConfigurationPropertystatic final classAn implementation forCfnBucket.LifecycleConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRules
A lifecycle rule for individual objects in an Amazon S3 bucket. -
builder
-