Interface AgentFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AgentFilter.Builder,AgentFilter>,SdkBuilder<AgentFilter.Builder,AgentFilter>,SdkPojo
- Enclosing class:
- AgentFilter
public static interface AgentFilter.Builder extends SdkPojo, CopyableBuilder<AgentFilter.Builder,AgentFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AgentFilter.BuilderagentHealthCodes(Collection<AgentHealthCode> agentHealthCodes)The detailed health state of the agent.AgentFilter.BuilderagentHealthCodes(AgentHealthCode... agentHealthCodes)The detailed health state of the agent.AgentFilter.BuilderagentHealthCodesWithStrings(String... agentHealthCodes)The detailed health state of the agent.AgentFilter.BuilderagentHealthCodesWithStrings(Collection<String> agentHealthCodes)The detailed health state of the agent.AgentFilter.BuilderagentHealths(Collection<AgentHealth> agentHealths)The current health state of the agent.AgentFilter.BuilderagentHealths(AgentHealth... agentHealths)The current health state of the agent.AgentFilter.BuilderagentHealthsWithStrings(String... agentHealths)The current health state of the agent.AgentFilter.BuilderagentHealthsWithStrings(Collection<String> agentHealths)The current health state of the agent.-
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
-
agentHealthsWithStrings
AgentFilter.Builder agentHealthsWithStrings(Collection<String> agentHealths)
The current health state of the agent. Values can be set to HEALTHY or UNHEALTHY.
- Parameters:
agentHealths- The current health state of the agent. Values can be set to HEALTHY or UNHEALTHY.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agentHealthsWithStrings
AgentFilter.Builder agentHealthsWithStrings(String... agentHealths)
The current health state of the agent. Values can be set to HEALTHY or UNHEALTHY.
- Parameters:
agentHealths- The current health state of the agent. Values can be set to HEALTHY or UNHEALTHY.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agentHealths
AgentFilter.Builder agentHealths(Collection<AgentHealth> agentHealths)
The current health state of the agent. Values can be set to HEALTHY or UNHEALTHY.
- Parameters:
agentHealths- The current health state of the agent. Values can be set to HEALTHY or UNHEALTHY.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agentHealths
AgentFilter.Builder agentHealths(AgentHealth... agentHealths)
The current health state of the agent. Values can be set to HEALTHY or UNHEALTHY.
- Parameters:
agentHealths- The current health state of the agent. Values can be set to HEALTHY or UNHEALTHY.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agentHealthCodesWithStrings
AgentFilter.Builder agentHealthCodesWithStrings(Collection<String> agentHealthCodes)
The detailed health state of the agent. Values can be set to IDLE, RUNNING, SHUTDOWN, UNHEALTHY, THROTTLED, and UNKNOWN.
- Parameters:
agentHealthCodes- The detailed health state of the agent. Values can be set to IDLE, RUNNING, SHUTDOWN, UNHEALTHY, THROTTLED, and UNKNOWN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agentHealthCodesWithStrings
AgentFilter.Builder agentHealthCodesWithStrings(String... agentHealthCodes)
The detailed health state of the agent. Values can be set to IDLE, RUNNING, SHUTDOWN, UNHEALTHY, THROTTLED, and UNKNOWN.
- Parameters:
agentHealthCodes- The detailed health state of the agent. Values can be set to IDLE, RUNNING, SHUTDOWN, UNHEALTHY, THROTTLED, and UNKNOWN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agentHealthCodes
AgentFilter.Builder agentHealthCodes(Collection<AgentHealthCode> agentHealthCodes)
The detailed health state of the agent. Values can be set to IDLE, RUNNING, SHUTDOWN, UNHEALTHY, THROTTLED, and UNKNOWN.
- Parameters:
agentHealthCodes- The detailed health state of the agent. Values can be set to IDLE, RUNNING, SHUTDOWN, UNHEALTHY, THROTTLED, and UNKNOWN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agentHealthCodes
AgentFilter.Builder agentHealthCodes(AgentHealthCode... agentHealthCodes)
The detailed health state of the agent. Values can be set to IDLE, RUNNING, SHUTDOWN, UNHEALTHY, THROTTLED, and UNKNOWN.
- Parameters:
agentHealthCodes- The detailed health state of the agent. Values can be set to IDLE, RUNNING, SHUTDOWN, UNHEALTHY, THROTTLED, and UNKNOWN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-