Interface FilterAttribute.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilterAttribute.Builder,FilterAttribute>,SdkBuilder<FilterAttribute.Builder,FilterAttribute>,SdkPojo
- Enclosing class:
- FilterAttribute
@Mutable @NotThreadSafe public static interface FilterAttribute.Builder extends SdkPojo, CopyableBuilder<FilterAttribute.Builder,FilterAttribute>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilterAttribute.Builderkey(String key)The name of metadata attribute/field, which must match the name in your data source/document metadata.FilterAttribute.Buildervalue(Document value)The value of the metadata attribute/field.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
key
FilterAttribute.Builder key(String key)
The name of metadata attribute/field, which must match the name in your data source/document metadata.
- Parameters:
key- The name of metadata attribute/field, which must match the name in your data source/document metadata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
FilterAttribute.Builder value(Document value)
The value of the metadata attribute/field.
- Parameters:
value- The value of the metadata attribute/field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-