Interface CfnTableBucket.UnreferencedFileRemovalProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTableBucket.UnreferencedFileRemovalProperty.Jsii$Proxy
- Enclosing class:
CfnTableBucket
@Stability(Stable)
public static interface CfnTableBucket.UnreferencedFileRemovalProperty
extends software.amazon.jsii.JsiiSerializable
The unreferenced file removal settings for your table bucket.
Unreferenced file removal identifies and deletes all objects that are not referenced by any table snapshots. For more information, see 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.s3tables.*;
UnreferencedFileRemovalProperty unreferencedFileRemovalProperty = UnreferencedFileRemovalProperty.builder()
.noncurrentDays(123)
.status("status")
.unreferencedDays(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTableBucket.UnreferencedFileRemovalPropertystatic final classAn implementation forCfnTableBucket.UnreferencedFileRemovalProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe number of days an object can be noncurrent before Amazon S3 deletes it.default StringThe status of the unreferenced file removal configuration for your table bucket.default NumberThe number of days an object must be unreferenced by your table before Amazon S3 marks the object as noncurrent.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNoncurrentDays
The number of days an object can be noncurrent before Amazon S3 deletes it.- See Also:
-
getStatus
The status of the unreferenced file removal configuration for your table bucket.- See Also:
-
getUnreferencedDays
The number of days an object must be unreferenced by your table before Amazon S3 marks the object as noncurrent.- See Also:
-
builder
-