Interface CacheDetail.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CacheDetail.Builder,CacheDetail>,SdkBuilder<CacheDetail.Builder,CacheDetail>,SdkPojo
- Enclosing class:
- CacheDetail
@Mutable @NotThreadSafe public static interface CacheDetail.Builder extends SdkPojo, CopyableBuilder<CacheDetail.Builder,CacheDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CacheDetail.BuilderinputTokens(Integer inputTokens)Number of tokens written to cache with this TTL (cache creation tokens)CacheDetail.Builderttl(String ttl)TTL duration for these cached tokensCacheDetail.Builderttl(CacheTTL ttl)TTL duration for these cached tokens-
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
-
ttl
CacheDetail.Builder ttl(String ttl)
TTL duration for these cached tokens
-
ttl
CacheDetail.Builder ttl(CacheTTL ttl)
TTL duration for these cached tokens
-
inputTokens
CacheDetail.Builder inputTokens(Integer inputTokens)
Number of tokens written to cache with this TTL (cache creation tokens)
- Parameters:
inputTokens- Number of tokens written to cache with this TTL (cache creation tokens)- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-