Interface NoncurrentVersionTransition
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
NoncurrentVersionTransition.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:17.180Z")
@Stability(Stable)
public interface NoncurrentVersionTransition
extends software.amazon.jsii.JsiiSerializable
Describes when noncurrent versions transition to a specified storage class.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
import software.amazon.awscdk.services.s3.*;
StorageClass storageClass;
NoncurrentVersionTransition noncurrentVersionTransition = NoncurrentVersionTransition.builder()
.storageClass(storageClass)
.transitionAfter(Duration.minutes(30))
// the properties below are optional
.noncurrentVersionsToRetain(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forNoncurrentVersionTransitionstatic final classAn implementation forNoncurrentVersionTransition -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStorageClass
The storage class to which you want the object to transition. -
getTransitionAfter
Indicates the number of days after creation when objects are transitioned to the specified storage class.Default: - No transition count.
-
getNoncurrentVersionsToRetain
Indicates the number of noncurrent version objects to be retained.Can be up to 100 noncurrent versions retained.
Default: - No noncurrent version retained.
-
builder
-