Interface KeyValueStoreList.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<KeyValueStoreList.Builder,
,KeyValueStoreList> SdkBuilder<KeyValueStoreList.Builder,
,KeyValueStoreList> SdkPojo
- Enclosing class:
KeyValueStoreList
public static interface KeyValueStoreList.Builder
extends SdkPojo, CopyableBuilder<KeyValueStoreList.Builder,KeyValueStoreList>
-
Method Summary
Modifier and TypeMethodDescriptionitems
(Collection<KeyValueStore> items) The items of the key value store list.items
(Consumer<KeyValueStore.Builder>... items) The items of the key value store list.items
(KeyValueStore... items) The items of the key value store list.The maximum number of items in the key value store list.nextMarker
(String nextMarker) The next marker associated with the key value store list.The quantity of the key value store list.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 Details
-
nextMarker
The next marker associated with the key value store list.
- Parameters:
nextMarker
- The next marker associated with the key value store list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxItems
The maximum number of items in the key value store list.
- Parameters:
maxItems
- The maximum number of items in the key value store list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quantity
The quantity of the key value store list.
- Parameters:
quantity
- The quantity of the key value store list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
The items of the key value store list.
- Parameters:
items
- The items of the key value store list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
The items of the key value store list.
- Parameters:
items
- The items of the key value store list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
The items of the key value store list.
This is a convenience method that creates an instance of theKeyValueStore.Builder
avoiding the need to create one manually viaKeyValueStore.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toitems(List<KeyValueStore>)
.- Parameters:
items
- a consumer that will call methods onKeyValueStore.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-