Interface FieldLevelEncryptionProfileList.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FieldLevelEncryptionProfileList.Builder,FieldLevelEncryptionProfileList>
,SdkBuilder<FieldLevelEncryptionProfileList.Builder,FieldLevelEncryptionProfileList>
,SdkPojo
- Enclosing class:
- FieldLevelEncryptionProfileList
public static interface FieldLevelEncryptionProfileList.Builder extends SdkPojo, CopyableBuilder<FieldLevelEncryptionProfileList.Builder,FieldLevelEncryptionProfileList>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldLevelEncryptionProfileList.Builder
items(Collection<FieldLevelEncryptionProfileSummary> items)
The field-level encryption profile items.FieldLevelEncryptionProfileList.Builder
items(Consumer<FieldLevelEncryptionProfileSummary.Builder>... items)
The field-level encryption profile items.FieldLevelEncryptionProfileList.Builder
items(FieldLevelEncryptionProfileSummary... items)
The field-level encryption profile items.FieldLevelEncryptionProfileList.Builder
maxItems(Integer maxItems)
The maximum number of field-level encryption profiles you want in the response body.FieldLevelEncryptionProfileList.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 profiles where you left off.FieldLevelEncryptionProfileList.Builder
quantity(Integer quantity)
The number of field-level encryption profiles.-
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
FieldLevelEncryptionProfileList.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 profiles 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 profiles where you left off.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxItems
FieldLevelEncryptionProfileList.Builder maxItems(Integer maxItems)
The maximum number of field-level encryption profiles you want in the response body.
- Parameters:
maxItems
- The maximum number of field-level encryption profiles you want in the response body.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quantity
FieldLevelEncryptionProfileList.Builder quantity(Integer quantity)
The number of field-level encryption profiles.
- Parameters:
quantity
- The number of field-level encryption profiles.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
FieldLevelEncryptionProfileList.Builder items(Collection<FieldLevelEncryptionProfileSummary> items)
The field-level encryption profile items.
- Parameters:
items
- The field-level encryption profile items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
FieldLevelEncryptionProfileList.Builder items(FieldLevelEncryptionProfileSummary... items)
The field-level encryption profile items.
- Parameters:
items
- The field-level encryption profile items.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
FieldLevelEncryptionProfileList.Builder items(Consumer<FieldLevelEncryptionProfileSummary.Builder>... items)
The field-level encryption profile items.
This is a convenience method that creates an instance of theFieldLevelEncryptionProfileSummary.Builder
avoiding the need to create one manually viaFieldLevelEncryptionProfileSummary.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 onFieldLevelEncryptionProfileSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection
)
-
-