Interface ListResourcesFilters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ListResourcesFilters.Builder,ListResourcesFilters>,SdkBuilder<ListResourcesFilters.Builder,ListResourcesFilters>,SdkPojo
- Enclosing class:
- ListResourcesFilters
public static interface ListResourcesFilters.Builder extends SdkPojo, CopyableBuilder<ListResourcesFilters.Builder,ListResourcesFilters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListResourcesFilters.BuildernamePrefix(String namePrefix)Filters only resource that start with the entered name prefix .ListResourcesFilters.BuilderprimaryEmailPrefix(String primaryEmailPrefix)Filters only resource with the provided primary email prefix.ListResourcesFilters.Builderstate(String state)Filters only resource with the provided state.ListResourcesFilters.Builderstate(EntityState state)Filters only resource with the provided state.-
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
-
namePrefix
ListResourcesFilters.Builder namePrefix(String namePrefix)
Filters only resource that start with the entered name prefix .
- Parameters:
namePrefix- Filters only resource that start with the entered name prefix .- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
primaryEmailPrefix
ListResourcesFilters.Builder primaryEmailPrefix(String primaryEmailPrefix)
Filters only resource with the provided primary email prefix.
- Parameters:
primaryEmailPrefix- Filters only resource with the provided primary email prefix.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
ListResourcesFilters.Builder state(String state)
Filters only resource with the provided state.
- Parameters:
state- Filters only resource with the provided state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EntityState,EntityState
-
state
ListResourcesFilters.Builder state(EntityState state)
Filters only resource with the provided state.
- Parameters:
state- Filters only resource with the provided state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EntityState,EntityState
-
-