Interface ListUsageFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ListUsageFilter.Builder,ListUsageFilter>,SdkBuilder<ListUsageFilter.Builder,ListUsageFilter>,SdkPojo
- Enclosing class:
- ListUsageFilter
public static interface ListUsageFilter.Builder extends SdkPojo, CopyableBuilder<ListUsageFilter.Builder,ListUsageFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListUsageFilter.BuildermatchOption(String matchOption)The match option for the filter (e.g., equals, contains).ListUsageFilter.BuildermatchOption(MatchOption matchOption)The match option for the filter (e.g., equals, contains).ListUsageFilter.Buildername(String name)The name of the filter attribute.ListUsageFilter.Buildername(ListUsageFilterName name)The name of the filter attribute.ListUsageFilter.Buildervalues(String... values)The values to filter by.ListUsageFilter.Buildervalues(Collection<String> values)The values to filter by.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
ListUsageFilter.Builder name(String name)
The name of the filter attribute.
- Parameters:
name- The name of the filter attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ListUsageFilterName,ListUsageFilterName
-
name
ListUsageFilter.Builder name(ListUsageFilterName name)
The name of the filter attribute.
- Parameters:
name- The name of the filter attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ListUsageFilterName,ListUsageFilterName
-
values
ListUsageFilter.Builder values(Collection<String> values)
The values to filter by.
- Parameters:
values- The values to filter by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
ListUsageFilter.Builder values(String... values)
The values to filter by.
- Parameters:
values- The values to filter by.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
matchOption
ListUsageFilter.Builder matchOption(String matchOption)
The match option for the filter (e.g., equals, contains).
- Parameters:
matchOption- The match option for the filter (e.g., equals, contains).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MatchOption,MatchOption
-
matchOption
ListUsageFilter.Builder matchOption(MatchOption matchOption)
The match option for the filter (e.g., equals, contains).
- Parameters:
matchOption- The match option for the filter (e.g., equals, contains).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
MatchOption,MatchOption
-
-