Interface DocumentKeyValuesFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DocumentKeyValuesFilter.Builder,DocumentKeyValuesFilter>,SdkBuilder<DocumentKeyValuesFilter.Builder,DocumentKeyValuesFilter>,SdkPojo
- Enclosing class:
- DocumentKeyValuesFilter
public static interface DocumentKeyValuesFilter.Builder extends SdkPojo, CopyableBuilder<DocumentKeyValuesFilter.Builder,DocumentKeyValuesFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DocumentKeyValuesFilter.Builderkey(String key)The name of the filter key.DocumentKeyValuesFilter.Buildervalues(String... values)The value for the filter key.DocumentKeyValuesFilter.Buildervalues(Collection<String> values)The value for the filter key.-
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
-
key
DocumentKeyValuesFilter.Builder key(String key)
The name of the filter key.
- Parameters:
key- The name of the filter key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
DocumentKeyValuesFilter.Builder values(Collection<String> values)
The value for the filter key.
- Parameters:
values- The value for the filter key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
DocumentKeyValuesFilter.Builder values(String... values)
The value for the filter key.
- Parameters:
values- The value for the filter key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-