Interface EntityFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EntityFilter.Builder,EntityFilter>,SdkBuilder<EntityFilter.Builder,EntityFilter>,SdkPojo
- Enclosing class:
- EntityFilter
public static interface EntityFilter.Builder extends SdkPojo, CopyableBuilder<EntityFilter.Builder,EntityFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntityFilter.Buildername(String name)The name of the entity search filter field.EntityFilter.Buildername(EntityFilterName name)The name of the entity search filter field.EntityFilter.Buildervalue(String... value)An array of string values for the search filter field.EntityFilter.Buildervalue(Collection<String> value)An array of string values for the search filter 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, sdkFields
-
-
-
-
Method Detail
-
name
EntityFilter.Builder name(String name)
The name of the entity search filter field.
REFERENCED_ENTITY_IDfilters on entities that are used by the entity in the result set. For example, you can filter on the ID of a property that is used in a state.- Parameters:
name- The name of the entity search filter field.REFERENCED_ENTITY_IDfilters on entities that are used by the entity in the result set. For example, you can filter on the ID of a property that is used in a state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EntityFilterName,EntityFilterName
-
name
EntityFilter.Builder name(EntityFilterName name)
The name of the entity search filter field.
REFERENCED_ENTITY_IDfilters on entities that are used by the entity in the result set. For example, you can filter on the ID of a property that is used in a state.- Parameters:
name- The name of the entity search filter field.REFERENCED_ENTITY_IDfilters on entities that are used by the entity in the result set. For example, you can filter on the ID of a property that is used in a state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EntityFilterName,EntityFilterName
-
value
EntityFilter.Builder value(Collection<String> value)
An array of string values for the search filter field. Multiple values function as AND criteria in the search.
- Parameters:
value- An array of string values for the search filter field. Multiple values function as AND criteria in the search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
EntityFilter.Builder value(String... value)
An array of string values for the search filter field. Multiple values function as AND criteria in the search.
- Parameters:
value- An array of string values for the search filter field. Multiple values function as AND criteria in the search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-