Interface CfnStorageLensGroupPropsMixin.MatchObjectSizeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStorageLensGroupPropsMixin.MatchObjectSizeProperty.Jsii$Proxy
- Enclosing class:
CfnStorageLensGroupPropsMixin
@Stability(Stable)
public static interface CfnStorageLensGroupPropsMixin.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.cfnpropertymixins.services.s3.*;
MatchObjectSizeProperty matchObjectSizeProperty = MatchObjectSizeProperty.builder()
.bytesGreaterThan(123)
.bytesLessThan(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStorageLensGroupPropsMixin.MatchObjectSizePropertystatic final classAn implementation forCfnStorageLensGroupPropsMixin.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
-