Class CfnTableBucket.UnreferencedFileRemovalProperty
The unreferenced file removal settings for your table bucket.
Inheritance
Namespace: Amazon.CDK.AwsS3Tables
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class UnreferencedFileRemovalProperty : Object, CfnTableBucket.IUnreferencedFileRemovalProperty
Syntax (vb)
Public Class UnreferencedFileRemovalProperty
Inherits Object
Implements CfnTableBucket.IUnreferencedFileRemovalProperty
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_s3tables;
var unreferencedFileRemovalProperty = new UnreferencedFileRemovalProperty {
NoncurrentDays = 123,
Status = "status",
UnreferencedDays = 123
};
Synopsis
Constructors
UnreferencedFileRemovalProperty() |
Properties
NoncurrentDays | The number of days an object can be noncurrent before Amazon S3 deletes it. |
Status | The status of the unreferenced file removal configuration for your table bucket. |
UnreferencedDays | The number of days an object must be unreferenced by your table before Amazon S3 marks the object as noncurrent. |
Constructors
UnreferencedFileRemovalProperty()
public UnreferencedFileRemovalProperty()
Properties
NoncurrentDays
The number of days an object can be noncurrent before Amazon S3 deletes it.
public Nullable<double> NoncurrentDays { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
Status
The status of the unreferenced file removal configuration for your table bucket.
public string Status { get; set; }
Property Value
System.String
Remarks
UnreferencedDays
The number of days an object must be unreferenced by your table before Amazon S3 marks the object as noncurrent.
public Nullable<double> UnreferencedDays { get; set; }
Property Value
System.Nullable<System.Double>