Interface MatchObjectAge.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MatchObjectAge.Builder,MatchObjectAge>,SdkBuilder<MatchObjectAge.Builder,MatchObjectAge>,SdkPojo
- Enclosing class:
- MatchObjectAge
public static interface MatchObjectAge.Builder extends SdkPojo, CopyableBuilder<MatchObjectAge.Builder,MatchObjectAge>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MatchObjectAge.BuilderdaysGreaterThan(Integer daysGreaterThan)Specifies the maximum object age in days.MatchObjectAge.BuilderdaysLessThan(Integer daysLessThan)Specifies the minimum object age in days.-
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
-
daysGreaterThan
MatchObjectAge.Builder daysGreaterThan(Integer daysGreaterThan)
Specifies the maximum object age in days. Must be a positive whole number, greater than the minimum object age and less than or equal to 2,147,483,647.
- Parameters:
daysGreaterThan- Specifies the maximum object age in days. Must be a positive whole number, greater than the minimum object age and less than or equal to 2,147,483,647.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
daysLessThan
MatchObjectAge.Builder daysLessThan(Integer daysLessThan)
Specifies the minimum object age in days. The value must be a positive whole number, greater than 0 and less than or equal to 2,147,483,647.
- Parameters:
daysLessThan- Specifies the minimum object age in days. The value must be a positive whole number, greater than 0 and less than or equal to 2,147,483,647.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-