Interface ControlPlaneAttributeFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ControlPlaneAttributeFilter.Builder,ControlPlaneAttributeFilter>,SdkBuilder<ControlPlaneAttributeFilter.Builder,ControlPlaneAttributeFilter>,SdkPojo
- Enclosing class:
- ControlPlaneAttributeFilter
public static interface ControlPlaneAttributeFilter.Builder extends SdkPojo, CopyableBuilder<ControlPlaneAttributeFilter.Builder,ControlPlaneAttributeFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ControlPlaneAttributeFilter.BuilderandCondition(Consumer<CommonAttributeAndCondition.Builder> andCondition)A list of conditions which would be applied together with anANDcondition.ControlPlaneAttributeFilter.BuilderandCondition(CommonAttributeAndCondition andCondition)A list of conditions which would be applied together with anANDcondition.ControlPlaneAttributeFilter.BuilderorConditions(Collection<CommonAttributeAndCondition> orConditions)A list of conditions which would be applied together with anORcondition.ControlPlaneAttributeFilter.BuilderorConditions(Consumer<CommonAttributeAndCondition.Builder>... orConditions)A list of conditions which would be applied together with anORcondition.ControlPlaneAttributeFilter.BuilderorConditions(CommonAttributeAndCondition... orConditions)A list of conditions which would be applied together with anORcondition.default ControlPlaneAttributeFilter.BuildertagCondition(Consumer<TagCondition.Builder> tagCondition)Sets the value of the TagCondition property for this object.ControlPlaneAttributeFilter.BuildertagCondition(TagCondition tagCondition)Sets the value of the TagCondition property for this object.-
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
-
orConditions
ControlPlaneAttributeFilter.Builder orConditions(Collection<CommonAttributeAndCondition> orConditions)
A list of conditions which would be applied together with an
ORcondition.- Parameters:
orConditions- A list of conditions which would be applied together with anORcondition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orConditions
ControlPlaneAttributeFilter.Builder orConditions(CommonAttributeAndCondition... orConditions)
A list of conditions which would be applied together with an
ORcondition.- Parameters:
orConditions- A list of conditions which would be applied together with anORcondition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orConditions
ControlPlaneAttributeFilter.Builder orConditions(Consumer<CommonAttributeAndCondition.Builder>... orConditions)
A list of conditions which would be applied together with an
This is a convenience method that creates an instance of theORcondition.CommonAttributeAndCondition.Builderavoiding the need to create one manually viaCommonAttributeAndCondition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#orConditions(List.) - Parameters:
orConditions- a consumer that will call methods onCommonAttributeAndCondition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#orConditions(java.util.Collection)
-
andCondition
ControlPlaneAttributeFilter.Builder andCondition(CommonAttributeAndCondition andCondition)
A list of conditions which would be applied together with an
ANDcondition.- Parameters:
andCondition- A list of conditions which would be applied together with anANDcondition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
andCondition
default ControlPlaneAttributeFilter.Builder andCondition(Consumer<CommonAttributeAndCondition.Builder> andCondition)
A list of conditions which would be applied together with an
This is a convenience method that creates an instance of theANDcondition.CommonAttributeAndCondition.Builderavoiding the need to create one manually viaCommonAttributeAndCondition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toandCondition(CommonAttributeAndCondition).- Parameters:
andCondition- a consumer that will call methods onCommonAttributeAndCondition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
andCondition(CommonAttributeAndCondition)
-
tagCondition
ControlPlaneAttributeFilter.Builder tagCondition(TagCondition tagCondition)
Sets the value of the TagCondition property for this object.- Parameters:
tagCondition- The new value for the TagCondition property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagCondition
default ControlPlaneAttributeFilter.Builder tagCondition(Consumer<TagCondition.Builder> tagCondition)
Sets the value of the TagCondition property for this object. 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 totagCondition(TagCondition).- Parameters:
tagCondition- 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:
tagCondition(TagCondition)
-
-