Interface DataStorage.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<DataStorage.Builder,DataStorage>
,SdkBuilder<DataStorage.Builder,DataStorage>
,SdkPojo
- Enclosing class:
- DataStorage
public static interface DataStorage.Builder extends SdkPojo, CopyableBuilder<DataStorage.Builder,DataStorage>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataStorage.Builder
maximum(Integer maximum)
The upper limit for data storage the cache is set to use.DataStorage.Builder
minimum(Integer minimum)
The lower limit for data storage the cache is set to use.DataStorage.Builder
unit(String unit)
The unit that the storage is measured in, in GB.DataStorage.Builder
unit(DataStorageUnit unit)
The unit that the storage is measured in, in GB.-
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
-
maximum
DataStorage.Builder maximum(Integer maximum)
The upper limit for data storage the cache is set to use.
- Parameters:
maximum
- The upper limit for data storage the cache is set to use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minimum
DataStorage.Builder minimum(Integer minimum)
The lower limit for data storage the cache is set to use.
- Parameters:
minimum
- The lower limit for data storage the cache is set to use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unit
DataStorage.Builder unit(String unit)
The unit that the storage is measured in, in GB.
- Parameters:
unit
- The unit that the storage is measured in, in GB.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataStorageUnit
,DataStorageUnit
-
unit
DataStorage.Builder unit(DataStorageUnit unit)
The unit that the storage is measured in, in GB.
- Parameters:
unit
- The unit that the storage is measured in, in GB.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataStorageUnit
,DataStorageUnit
-
-