Interface CommonAttributeAndCondition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CommonAttributeAndCondition.Builder,CommonAttributeAndCondition>,SdkBuilder<CommonAttributeAndCondition.Builder,CommonAttributeAndCondition>,SdkPojo
- Enclosing class:
- CommonAttributeAndCondition
public static interface CommonAttributeAndCondition.Builder extends SdkPojo, CopyableBuilder<CommonAttributeAndCondition.Builder,CommonAttributeAndCondition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CommonAttributeAndCondition.BuildertagConditions(Collection<TagCondition> tagConditions)A leaf node condition which can be used to specify a tag condition.CommonAttributeAndCondition.BuildertagConditions(Consumer<TagCondition.Builder>... tagConditions)A leaf node condition which can be used to specify a tag condition.CommonAttributeAndCondition.BuildertagConditions(TagCondition... tagConditions)A leaf node condition which can be used to specify a tag 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, sdkFields
-
-
-
-
Method Detail
-
tagConditions
CommonAttributeAndCondition.Builder tagConditions(Collection<TagCondition> tagConditions)
A leaf node condition which can be used to specify a tag condition.
- Parameters:
tagConditions- A leaf node condition which can be used to specify a tag condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagConditions
CommonAttributeAndCondition.Builder tagConditions(TagCondition... tagConditions)
A leaf node condition which can be used to specify a tag condition.
- Parameters:
tagConditions- A leaf node condition which can be used to specify a tag condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagConditions
CommonAttributeAndCondition.Builder tagConditions(Consumer<TagCondition.Builder>... tagConditions)
A leaf node condition which can be used to specify a tag condition.
This is a convenience method that creates an instance of theTagCondition.Builderavoiding the need to create one manually viaTagCondition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tagConditions(List.) - Parameters:
tagConditions- a consumer that will call methods onTagCondition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tagConditions(java.util.Collection)
-
-