Interface GetKeyResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFrontKeyValueStoreResponse.Builder,CopyableBuilder<GetKeyResponse.Builder,GetKeyResponse>,SdkBuilder<GetKeyResponse.Builder,GetKeyResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetKeyResponse
public static interface GetKeyResponse.Builder extends CloudFrontKeyValueStoreResponse.Builder, SdkPojo, CopyableBuilder<GetKeyResponse.Builder,GetKeyResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetKeyResponse.BuilderitemCount(Integer itemCount)Number of key value pairs in the Key Value Store.GetKeyResponse.Builderkey(String key)The key of the key value pair.GetKeyResponse.BuildertotalSizeInBytes(Long totalSizeInBytes)Total size of the Key Value Store in bytes.GetKeyResponse.Buildervalue(String value)The value of the key value pair.-
Methods inherited from interface software.amazon.awssdk.services.cloudfrontkeyvaluestore.model.CloudFrontKeyValueStoreResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
key
GetKeyResponse.Builder key(String key)
The key of the key value pair.
- Parameters:
key- The key of the key value pair.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
GetKeyResponse.Builder value(String value)
The value of the key value pair.
- Parameters:
value- The value of the key value pair.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
itemCount
GetKeyResponse.Builder itemCount(Integer itemCount)
Number of key value pairs in the Key Value Store.
- Parameters:
itemCount- Number of key value pairs in the Key Value Store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalSizeInBytes
GetKeyResponse.Builder totalSizeInBytes(Long totalSizeInBytes)
Total size of the Key Value Store in bytes.
- Parameters:
totalSizeInBytes- Total size of the Key Value Store in bytes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-