Interface KxCacheStorageConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KxCacheStorageConfiguration.Builder,KxCacheStorageConfiguration>,SdkBuilder<KxCacheStorageConfiguration.Builder,KxCacheStorageConfiguration>,SdkPojo
- Enclosing class:
- KxCacheStorageConfiguration
public static interface KxCacheStorageConfiguration.Builder extends SdkPojo, CopyableBuilder<KxCacheStorageConfiguration.Builder,KxCacheStorageConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KxCacheStorageConfiguration.Buildersize(Integer size)The size of cache in Gigabytes.KxCacheStorageConfiguration.Buildertype(String type)The type of cache storage.-
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
-
type
KxCacheStorageConfiguration.Builder type(String type)
The type of cache storage. The valid values are:
-
CACHE_1000 – This type provides at least 1000 MB/s disk access throughput.
-
CACHE_250 – This type provides at least 250 MB/s disk access throughput.
-
CACHE_12 – This type provides at least 12 MB/s disk access throughput.
For cache type
CACHE_1000andCACHE_250you can select cache size as 1200 GB or increments of 2400 GB. For cache typeCACHE_12you can select the cache size in increments of 6000 GB.- Parameters:
type- The type of cache storage. The valid values are:-
CACHE_1000 – This type provides at least 1000 MB/s disk access throughput.
-
CACHE_250 – This type provides at least 250 MB/s disk access throughput.
-
CACHE_12 – This type provides at least 12 MB/s disk access throughput.
For cache type
CACHE_1000andCACHE_250you can select cache size as 1200 GB or increments of 2400 GB. For cache typeCACHE_12you can select the cache size in increments of 6000 GB.-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
size
KxCacheStorageConfiguration.Builder size(Integer size)
The size of cache in Gigabytes.
- Parameters:
size- The size of cache in Gigabytes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-