Interface PropertyFilter.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<PropertyFilter.Builder,,PropertyFilter> SdkBuilder<PropertyFilter.Builder,,PropertyFilter> SdkPojo
- Enclosing class:
- PropertyFilter
@Mutable
@NotThreadSafe
public static interface PropertyFilter.Builder
extends SdkPojo, CopyableBuilder<PropertyFilter.Builder,PropertyFilter>
-
Method Summary
Modifier and TypeMethodDescriptionThe operator associated with this property filter.propertyName(String propertyName) The property name associated with this property filter.default PropertyFilter.Buildervalue(Consumer<DataValue.Builder> value) The value associated with this property filter.The value associated with this property filter.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
propertyName
The property name associated with this property filter.
- Parameters:
propertyName- The property name associated with this property filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
operator
The operator associated with this property filter.
- Parameters:
operator- The operator associated with this property filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
The value associated with this property filter.
- Parameters:
value- The value associated with this property filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
The value associated with this property filter.
This is a convenience method that creates an instance of theDataValue.Builderavoiding the need to create one manually viaDataValue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovalue(DataValue).- Parameters:
value- a consumer that will call methods onDataValue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-