Interface FieldLevelEncryptionList.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FieldLevelEncryptionList.Builder,FieldLevelEncryptionList>
,SdkBuilder<FieldLevelEncryptionList.Builder,FieldLevelEncryptionList>
,SdkPojo
- Enclosing class:
- FieldLevelEncryptionList
public static interface FieldLevelEncryptionList.Builder extends SdkPojo, CopyableBuilder<FieldLevelEncryptionList.Builder,FieldLevelEncryptionList>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldLevelEncryptionList.Builder
items(Collection<FieldLevelEncryptionSummary> items)
An array of field-level encryption items.FieldLevelEncryptionList.Builder
items(Consumer<FieldLevelEncryptionSummary.Builder>... items)
An array of field-level encryption items.FieldLevelEncryptionList.Builder
items(FieldLevelEncryptionSummary... items)
An array of field-level encryption items.FieldLevelEncryptionList.Builder
maxItems(Integer maxItems)
The maximum number of elements you want in the response body.FieldLevelEncryptionList.Builder
nextMarker(String nextMarker)
If there are more elements to be listed, this element is present and contains the value that you can use for theMarker
request parameter to continue listing your configurations where you left off.FieldLevelEncryptionList.Builder
quantity(Integer quantity)
The number of field-level encryption items.-
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
FieldLevelEncryptionList.Builder nextMarker(String nextMarker)
If there are more elements to be listed, this element is present and contains the value that you can use for the
Marker
request parameter to continue listing your configurations where you left off.- Parameters:
nextMarker
- If there are more elements to be listed, this element is present and contains the value that you can use for theMarker
request parameter to continue listing your configurations where you left off.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxItems
FieldLevelEncryptionList.Builder maxItems(Integer maxItems)
The maximum number of elements you want in the response body.
- Parameters:
maxItems
- The maximum number of elements you want in the response body.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quantity
FieldLevelEncryptionList.Builder quantity(Integer quantity)
The number of field-level encryption items.
- Parameters:
quantity
- The number of field-level encryption items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
FieldLevelEncryptionList.Builder items(Collection<FieldLevelEncryptionSummary> items)
An array of field-level encryption items.
- Parameters:
items
- An array of field-level encryption items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
FieldLevelEncryptionList.Builder items(FieldLevelEncryptionSummary... items)
An array of field-level encryption items.
- Parameters:
items
- An array of field-level encryption items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
FieldLevelEncryptionList.Builder items(Consumer<FieldLevelEncryptionSummary.Builder>... items)
An array of field-level encryption items.
This is a convenience method that creates an instance of theFieldLevelEncryptionSummary.Builder
avoiding the need to create one manually viaFieldLevelEncryptionSummary.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 onFieldLevelEncryptionSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection
)
-
-