Interface TagCriterionForJob.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TagCriterionForJob.Builder,TagCriterionForJob>,SdkBuilder<TagCriterionForJob.Builder,TagCriterionForJob>,SdkPojo
- Enclosing class:
- TagCriterionForJob
public static interface TagCriterionForJob.Builder extends SdkPojo, CopyableBuilder<TagCriterionForJob.Builder,TagCriterionForJob>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TagCriterionForJob.Buildercomparator(String comparator)The operator to use in the condition.TagCriterionForJob.Buildercomparator(JobComparator comparator)The operator to use in the condition.TagCriterionForJob.BuildertagValues(Collection<TagCriterionPairForJob> tagValues)The tag keys, tag values, or tag key and value pairs to use in the condition.TagCriterionForJob.BuildertagValues(Consumer<TagCriterionPairForJob.Builder>... tagValues)The tag keys, tag values, or tag key and value pairs to use in the condition.TagCriterionForJob.BuildertagValues(TagCriterionPairForJob... tagValues)The tag keys, tag values, or tag key and value pairs to use in the condition.-
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
-
comparator
TagCriterionForJob.Builder comparator(String comparator)
The operator to use in the condition. Valid values are EQ (equals) and NE (not equals).
- Parameters:
comparator- The operator to use in the condition. Valid values are EQ (equals) and NE (not equals).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobComparator,JobComparator
-
comparator
TagCriterionForJob.Builder comparator(JobComparator comparator)
The operator to use in the condition. Valid values are EQ (equals) and NE (not equals).
- Parameters:
comparator- The operator to use in the condition. Valid values are EQ (equals) and NE (not equals).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobComparator,JobComparator
-
tagValues
TagCriterionForJob.Builder tagValues(Collection<TagCriterionPairForJob> tagValues)
The tag keys, tag values, or tag key and value pairs to use in the condition.
- Parameters:
tagValues- The tag keys, tag values, or tag key and value pairs to use in the condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagValues
TagCriterionForJob.Builder tagValues(TagCriterionPairForJob... tagValues)
The tag keys, tag values, or tag key and value pairs to use in the condition.
- Parameters:
tagValues- The tag keys, tag values, or tag key and value pairs to use in the condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagValues
TagCriterionForJob.Builder tagValues(Consumer<TagCriterionPairForJob.Builder>... tagValues)
The tag keys, tag values, or tag key and value pairs to use in the condition.
This is a convenience method that creates an instance of theTagCriterionPairForJob.Builderavoiding the need to create one manually viaTagCriterionPairForJob.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tagValues(List.) - Parameters:
tagValues- a consumer that will call methods onTagCriterionPairForJob.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tagValues(java.util.Collection)
-
-