Interface BucketSortCriteria.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BucketSortCriteria.Builder,BucketSortCriteria>,SdkBuilder<BucketSortCriteria.Builder,BucketSortCriteria>,SdkPojo
- Enclosing class:
- BucketSortCriteria
public static interface BucketSortCriteria.Builder extends SdkPojo, CopyableBuilder<BucketSortCriteria.Builder,BucketSortCriteria>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BucketSortCriteria.BuilderattributeName(String attributeName)The name of the bucket property to sort the results by.BucketSortCriteria.BuilderorderBy(String orderBy)The sort order to apply to the results, based on the value specified by the attributeName property.BucketSortCriteria.BuilderorderBy(OrderBy orderBy)The sort order to apply to the results, based on the value specified by the attributeName property.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
attributeName
BucketSortCriteria.Builder attributeName(String attributeName)
The name of the bucket property to sort the results by. This value can be one of the following properties that Amazon Macie defines as bucket metadata: accountId, bucketName, classifiableObjectCount, classifiableSizeInBytes, objectCount, sensitivityScore, or sizeInBytes.
- Parameters:
attributeName- The name of the bucket property to sort the results by. This value can be one of the following properties that Amazon Macie defines as bucket metadata: accountId, bucketName, classifiableObjectCount, classifiableSizeInBytes, objectCount, sensitivityScore, or sizeInBytes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orderBy
BucketSortCriteria.Builder orderBy(String orderBy)
The sort order to apply to the results, based on the value specified by the attributeName property. Valid values are: ASC, sort the results in ascending order; and, DESC, sort the results in descending order.
- Parameters:
orderBy- The sort order to apply to the results, based on the value specified by the attributeName property. Valid values are: ASC, sort the results in ascending order; and, DESC, sort the results in descending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrderBy,OrderBy
-
orderBy
BucketSortCriteria.Builder orderBy(OrderBy orderBy)
The sort order to apply to the results, based on the value specified by the attributeName property. Valid values are: ASC, sort the results in ascending order; and, DESC, sort the results in descending order.
- Parameters:
orderBy- The sort order to apply to the results, based on the value specified by the attributeName property. Valid values are: ASC, sort the results in ascending order; and, DESC, sort the results in descending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OrderBy,OrderBy
-
-