Interface Filter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Filter.Builder,Filter>,SdkBuilder<Filter.Builder,Filter>,SdkPojo
- Enclosing class:
- Filter
public static interface Filter.Builder extends SdkPojo, CopyableBuilder<Filter.Builder,Filter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Filter.BuilderattributePath(String attributePath)The attribute path that is used to specify which attribute name to search.Filter.BuilderattributeValue(String attributeValue)Represents the data for an attribute.-
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
-
attributePath
Filter.Builder attributePath(String attributePath)
The attribute path that is used to specify which attribute name to search. Length limit is 255 characters. For example,
UserNameis a valid attribute path for theListUsersAPI, andDisplayNameis a valid attribute path for theListGroupsAPI.- Parameters:
attributePath- The attribute path that is used to specify which attribute name to search. Length limit is 255 characters. For example,UserNameis a valid attribute path for theListUsersAPI, andDisplayNameis a valid attribute path for theListGroupsAPI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributeValue
Filter.Builder attributeValue(String attributeValue)
Represents the data for an attribute. Each attribute value is described as a name-value pair.
- Parameters:
attributeValue- Represents the data for an attribute. Each attribute value is described as a name-value pair.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-