Interface NoncurrentVersionTransition
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
NoncurrentVersionTransition.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:37.709Z")
@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.services.s3.*; import software.amazon.awscdk.core.*; StorageClass storageClass; NoncurrentVersionTransition noncurrentVersionTransition = NoncurrentVersionTransition.builder() .storageClass(storageClass) .transitionAfter(Duration.minutes(30)) // the properties below are optional .noncurrentVersionsToRetain(123) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forNoncurrentVersionTransition
static final class
An 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
-