Interface PropertyFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PropertyFilter.Builder,PropertyFilter>,SdkBuilder<PropertyFilter.Builder,PropertyFilter>,SdkPojo
- Enclosing class:
- PropertyFilter
public static interface PropertyFilter.Builder extends SdkPojo, CopyableBuilder<PropertyFilter.Builder,PropertyFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PropertyFilter.Builderproperty(Consumer<Property.Builder> property)Represents a single property to match with when searching a raster data collection.PropertyFilter.Builderproperty(Property property)Represents a single property to match with when searching a raster data collection.-
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
-
property
PropertyFilter.Builder property(Property property)
Represents a single property to match with when searching a raster data collection.
- Parameters:
property- Represents a single property to match with when searching a raster data collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
property
default PropertyFilter.Builder property(Consumer<Property.Builder> property)
Represents a single property to match with when searching a raster data collection.
This is a convenience method that creates an instance of theProperty.Builderavoiding the need to create one manually viaProperty.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toproperty(Property).- Parameters:
property- a consumer that will call methods onProperty.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
property(Property)
-
-