Interface CoverageFilterCondition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CoverageFilterCondition.Builder,CoverageFilterCondition>,SdkBuilder<CoverageFilterCondition.Builder,CoverageFilterCondition>,SdkPojo
- Enclosing class:
- CoverageFilterCondition
public static interface CoverageFilterCondition.Builder extends SdkPojo, CopyableBuilder<CoverageFilterCondition.Builder,CoverageFilterCondition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CoverageFilterCondition.BuilderequalsValue(String... equals)Represents an equal condition that is applied to a single field while retrieving the coverage details.CoverageFilterCondition.BuilderequalsValue(Collection<String> equals)Represents an equal condition that is applied to a single field while retrieving the coverage details.CoverageFilterCondition.BuildernotEquals(String... notEquals)Represents a not equal condition that is applied to a single field while retrieving the coverage details.CoverageFilterCondition.BuildernotEquals(Collection<String> notEquals)Represents a not equal condition that is applied to a single field while retrieving the coverage details.-
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
-
equalsValue
CoverageFilterCondition.Builder equalsValue(Collection<String> equals)
Represents an equal condition that is applied to a single field while retrieving the coverage details.
- Parameters:
equals- Represents an equal condition that is applied to a single field while retrieving the coverage details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
equalsValue
CoverageFilterCondition.Builder equalsValue(String... equals)
Represents an equal condition that is applied to a single field while retrieving the coverage details.
- Parameters:
equals- Represents an equal condition that is applied to a single field while retrieving the coverage details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notEquals
CoverageFilterCondition.Builder notEquals(Collection<String> notEquals)
Represents a not equal condition that is applied to a single field while retrieving the coverage details.
- Parameters:
notEquals- Represents a not equal condition that is applied to a single field while retrieving the coverage details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notEquals
CoverageFilterCondition.Builder notEquals(String... notEquals)
Represents a not equal condition that is applied to a single field while retrieving the coverage details.
- Parameters:
notEquals- Represents a not equal condition that is applied to a single field while retrieving the coverage details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-