Interface ListKeysResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFrontKeyValueStoreResponse.Builder,CopyableBuilder<ListKeysResponse.Builder,ListKeysResponse>,SdkBuilder<ListKeysResponse.Builder,ListKeysResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListKeysResponse
public static interface ListKeysResponse.Builder extends CloudFrontKeyValueStoreResponse.Builder, SdkPojo, CopyableBuilder<ListKeysResponse.Builder,ListKeysResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListKeysResponse.Builderitems(Collection<ListKeysResponseListItem> items)Key value pairsListKeysResponse.Builderitems(Consumer<ListKeysResponseListItem.Builder>... items)Key value pairsListKeysResponse.Builderitems(ListKeysResponseListItem... items)Key value pairsListKeysResponse.BuildernextToken(String nextToken)If nextToken is returned in the response, there are more results available.-
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
-
nextToken
ListKeysResponse.Builder nextToken(String nextToken)
If nextToken is returned in the response, there are more results available. Make the next call using the returned token to retrieve the next page.
- Parameters:
nextToken- If nextToken is returned in the response, there are more results available. Make the next call using the returned token to retrieve the next page.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListKeysResponse.Builder items(Collection<ListKeysResponseListItem> items)
Key value pairs
- Parameters:
items- Key value pairs- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListKeysResponse.Builder items(ListKeysResponseListItem... items)
Key value pairs
- Parameters:
items- Key value pairs- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListKeysResponse.Builder items(Consumer<ListKeysResponseListItem.Builder>... items)
Key value pairs
This is a convenience method that creates an instance of theListKeysResponseListItem.Builderavoiding the need to create one manually viaListKeysResponseListItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onListKeysResponseListItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
-