Interface FilesLimit.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilesLimit.Builder,FilesLimit>,SdkBuilder<FilesLimit.Builder,FilesLimit>,SdkPojo
- Enclosing class:
- FilesLimit
public static interface FilesLimit.Builder extends SdkPojo, CopyableBuilder<FilesLimit.Builder,FilesLimit>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilesLimit.BuildermaxFiles(Integer maxFiles)The number of Amazon S3 files to select.FilesLimit.Builderorder(String order)A criteria to use for Amazon S3 files sorting before their selection.FilesLimit.Builderorder(Order order)A criteria to use for Amazon S3 files sorting before their selection.FilesLimit.BuilderorderedBy(String orderedBy)A criteria to use for Amazon S3 files sorting before their selection.FilesLimit.BuilderorderedBy(OrderedBy orderedBy)A criteria to use for Amazon S3 files sorting before their selection.-
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
-
maxFiles
FilesLimit.Builder maxFiles(Integer maxFiles)
The number of Amazon S3 files to select.
- Parameters:
maxFiles- The number of Amazon S3 files to select.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orderedBy
FilesLimit.Builder orderedBy(String orderedBy)
A criteria to use for Amazon S3 files sorting before their selection. By default uses LAST_MODIFIED_DATE as a sorting criteria. Currently it's the only allowed value.
- Parameters:
orderedBy- A criteria to use for Amazon S3 files sorting before their selection. By default uses LAST_MODIFIED_DATE as a sorting criteria. Currently it's the only allowed value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrderedBy,OrderedBy
-
orderedBy
FilesLimit.Builder orderedBy(OrderedBy orderedBy)
A criteria to use for Amazon S3 files sorting before their selection. By default uses LAST_MODIFIED_DATE as a sorting criteria. Currently it's the only allowed value.
- Parameters:
orderedBy- A criteria to use for Amazon S3 files sorting before their selection. By default uses LAST_MODIFIED_DATE as a sorting criteria. Currently it's the only allowed value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrderedBy,OrderedBy
-
order
FilesLimit.Builder order(String order)
A criteria to use for Amazon S3 files sorting before their selection. By default uses DESCENDING order, i.e. most recent files are selected first. Another possible value is ASCENDING.
- Parameters:
order- A criteria to use for Amazon S3 files sorting before their selection. By default uses DESCENDING order, i.e. most recent files are selected first. Another possible value is ASCENDING.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Order,Order
-
order
FilesLimit.Builder order(Order order)
A criteria to use for Amazon S3 files sorting before their selection. By default uses DESCENDING order, i.e. most recent files are selected first. Another possible value is ASCENDING.
- Parameters:
order- A criteria to use for Amazon S3 files sorting before their selection. By default uses DESCENDING order, i.e. most recent files are selected first. Another possible value is ASCENDING.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Order,Order
-
-