Interface ComplianceStringFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ComplianceStringFilter.Builder,ComplianceStringFilter>,SdkBuilder<ComplianceStringFilter.Builder,ComplianceStringFilter>,SdkPojo
- Enclosing class:
- ComplianceStringFilter
public static interface ComplianceStringFilter.Builder extends SdkPojo, CopyableBuilder<ComplianceStringFilter.Builder,ComplianceStringFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComplianceStringFilter.Builderkey(String key)The name of the filter.ComplianceStringFilter.Buildertype(String type)The type of comparison that should be performed for the value: Equal, NotEqual, BeginWith, LessThan, or GreaterThan.ComplianceStringFilter.Buildertype(ComplianceQueryOperatorType type)The type of comparison that should be performed for the value: Equal, NotEqual, BeginWith, LessThan, or GreaterThan.ComplianceStringFilter.Buildervalues(String... values)The value for which to search.ComplianceStringFilter.Buildervalues(Collection<String> values)The value for which to search.-
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
-
key
ComplianceStringFilter.Builder key(String key)
The name of the filter.
- Parameters:
key- The name of the filter.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
ComplianceStringFilter.Builder values(Collection<String> values)
The value for which to search.
- Parameters:
values- The value for which to search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
ComplianceStringFilter.Builder values(String... values)
The value for which to search.
- Parameters:
values- The value for which to search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
ComplianceStringFilter.Builder type(String type)
The type of comparison that should be performed for the value: Equal, NotEqual, BeginWith, LessThan, or GreaterThan.
- Parameters:
type- The type of comparison that should be performed for the value: Equal, NotEqual, BeginWith, LessThan, or GreaterThan.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComplianceQueryOperatorType,ComplianceQueryOperatorType
-
type
ComplianceStringFilter.Builder type(ComplianceQueryOperatorType type)
The type of comparison that should be performed for the value: Equal, NotEqual, BeginWith, LessThan, or GreaterThan.
- Parameters:
type- The type of comparison that should be performed for the value: Equal, NotEqual, BeginWith, LessThan, or GreaterThan.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ComplianceQueryOperatorType,ComplianceQueryOperatorType
-
-