Interface AgentStatusSearchFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AgentStatusSearchFilter.Builder,AgentStatusSearchFilter>,SdkBuilder<AgentStatusSearchFilter.Builder,AgentStatusSearchFilter>,SdkPojo
- Enclosing class:
- AgentStatusSearchFilter
public static interface AgentStatusSearchFilter.Builder extends SdkPojo, CopyableBuilder<AgentStatusSearchFilter.Builder,AgentStatusSearchFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AgentStatusSearchFilter.BuilderattributeFilter(Consumer<ControlPlaneAttributeFilter.Builder> attributeFilter)An object that can be used to specify Tag conditions inside theSearchFilter.AgentStatusSearchFilter.BuilderattributeFilter(ControlPlaneAttributeFilter attributeFilter)An object that can be used to specify Tag conditions inside theSearchFilter.-
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
-
attributeFilter
AgentStatusSearchFilter.Builder attributeFilter(ControlPlaneAttributeFilter attributeFilter)
An object that can be used to specify Tag conditions inside the
SearchFilter. This accepts anORofAND(List of List) input where:-
The top level list specifies conditions that need to be applied with
ORoperator. -
The inner list specifies conditions that need to be applied with
ANDoperator.
- Parameters:
attributeFilter- An object that can be used to specify Tag conditions inside theSearchFilter. This accepts anORofAND(List of List) input where:-
The top level list specifies conditions that need to be applied with
ORoperator. -
The inner list specifies conditions that need to be applied with
ANDoperator.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
attributeFilter
default AgentStatusSearchFilter.Builder attributeFilter(Consumer<ControlPlaneAttributeFilter.Builder> attributeFilter)
An object that can be used to specify Tag conditions inside the
SearchFilter. This accepts anORofAND(List of List) input where:-
The top level list specifies conditions that need to be applied with
ORoperator. -
The inner list specifies conditions that need to be applied with
ANDoperator.
ControlPlaneAttributeFilter.Builderavoiding the need to create one manually viaControlPlaneAttributeFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toattributeFilter(ControlPlaneAttributeFilter).- Parameters:
attributeFilter- a consumer that will call methods onControlPlaneAttributeFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
attributeFilter(ControlPlaneAttributeFilter)
-
-
-