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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeyValueStoreList.Builder
items(Collection<KeyValueStore> items)
The items of the Key Value Store list.KeyValueStoreList.Builder
items(Consumer<KeyValueStore.Builder>... items)
The items of the Key Value Store list.KeyValueStoreList.Builder
items(KeyValueStore... items)
The items of the Key Value Store list.KeyValueStoreList.Builder
maxItems(Integer maxItems)
The maximum number of items in the Key Value Store list.KeyValueStoreList.Builder
nextMarker(String nextMarker)
The next marker associated with the Key Value Store list.KeyValueStoreList.Builder
quantity(Integer quantity)
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 Detail
-
nextMarker
KeyValueStoreList.Builder nextMarker(String 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
KeyValueStoreList.Builder maxItems(Integer 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
KeyValueStoreList.Builder quantity(Integer 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
KeyValueStoreList.Builder items(Collection<KeyValueStore> 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
KeyValueStoreList.Builder items(KeyValueStore... 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
KeyValueStoreList.Builder items(Consumer<KeyValueStore.Builder>... 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 to#items(List
.) - 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:
#items(java.util.Collection
)
-
-