Class CfnStorageLensGroup.MatchObjectAgeProperty
This resource contains DaysGreaterThan
and DaysLessThan
to define the object age range (minimum and maximum number of days).
Inheritance
System.Object
CfnStorageLensGroup.MatchObjectAgeProperty
Implements
Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class MatchObjectAgeProperty : Object, CfnStorageLensGroup.IMatchObjectAgeProperty
Syntax (vb)
Public Class MatchObjectAgeProperty
Inherits Object
Implements CfnStorageLensGroup.IMatchObjectAgeProperty
Remarks
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.S3;
var matchObjectAgeProperty = new MatchObjectAgeProperty {
DaysGreaterThan = 123,
DaysLessThan = 123
};
Synopsis
Constructors
MatchObjectAgeProperty() |
Properties
DaysGreaterThan | This property indicates the minimum object age in days. |
DaysLessThan | This property indicates the maximum object age in days. |
Constructors
MatchObjectAgeProperty()
public MatchObjectAgeProperty()
Properties
DaysGreaterThan
This property indicates the minimum object age in days.
public Nullable<double> DaysGreaterThan { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
DaysLessThan
This property indicates the maximum object age in days.
public Nullable<double> DaysLessThan { get; set; }
Property Value
System.Nullable<System.Double>