Interface CfnStorageLensGroup.MatchObjectSizeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStorageLensGroup.MatchObjectSizeProperty.Jsii$Proxy
- Enclosing class:
CfnStorageLensGroup
@Stability(Stable)
public static interface CfnStorageLensGroup.MatchObjectSizeProperty
extends software.amazon.jsii.JsiiSerializable
This resource filters objects that match the specified object size range.
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.*;
MatchObjectSizeProperty matchObjectSizeProperty = MatchObjectSizeProperty.builder()
.bytesGreaterThan(123)
.bytesLessThan(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStorageLensGroup.MatchObjectSizePropertystatic final classAn implementation forCfnStorageLensGroup.MatchObjectSizeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBytesGreaterThan
This property specifies the minimum object size in bytes.The value must be a positive number, greater than 0 and less than 5 TB.
- See Also:
-
getBytesLessThan
This property specifies the maximum object size in bytes.The value must be a positive number, greater than the minimum object size and less than 5 TB.
- See Also:
-
builder
-