Interface MatchObjectSize.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MatchObjectSize.Builder,MatchObjectSize>,SdkBuilder<MatchObjectSize.Builder,MatchObjectSize>,SdkPojo
- Enclosing class:
- MatchObjectSize
public static interface MatchObjectSize.Builder extends SdkPojo, CopyableBuilder<MatchObjectSize.Builder,MatchObjectSize>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MatchObjectSize.BuilderbytesGreaterThan(Long bytesGreaterThan)Specifies the minimum object size in Bytes.MatchObjectSize.BuilderbytesLessThan(Long bytesLessThan)Specifies the maximum object size in Bytes.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
bytesGreaterThan
MatchObjectSize.Builder bytesGreaterThan(Long bytesGreaterThan)
Specifies the minimum object size in Bytes. The value must be a positive number, greater than 0 and less than 5 TB.
- Parameters:
bytesGreaterThan- Specifies the minimum object size in Bytes. The value must be a positive number, greater than 0 and less than 5 TB.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bytesLessThan
MatchObjectSize.Builder bytesLessThan(Long bytesLessThan)
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.
- Parameters:
bytesLessThan- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-