Interface PortProbeAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PortProbeAction.Builder,PortProbeAction>,SdkBuilder<PortProbeAction.Builder,PortProbeAction>,SdkPojo
- Enclosing class:
- PortProbeAction
public static interface PortProbeAction.Builder extends SdkPojo, CopyableBuilder<PortProbeAction.Builder,PortProbeAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PortProbeAction.Builderblocked(Boolean blocked)Indicates whether the port probe was blocked.PortProbeAction.BuilderportProbeDetails(Collection<PortProbeDetail> portProbeDetails)Information about the ports affected by the port probe.PortProbeAction.BuilderportProbeDetails(Consumer<PortProbeDetail.Builder>... portProbeDetails)Information about the ports affected by the port probe.PortProbeAction.BuilderportProbeDetails(PortProbeDetail... portProbeDetails)Information about the ports affected by the port probe.-
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
-
portProbeDetails
PortProbeAction.Builder portProbeDetails(Collection<PortProbeDetail> portProbeDetails)
Information about the ports affected by the port probe.
- Parameters:
portProbeDetails- Information about the ports affected by the port probe.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
portProbeDetails
PortProbeAction.Builder portProbeDetails(PortProbeDetail... portProbeDetails)
Information about the ports affected by the port probe.
- Parameters:
portProbeDetails- Information about the ports affected by the port probe.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
portProbeDetails
PortProbeAction.Builder portProbeDetails(Consumer<PortProbeDetail.Builder>... portProbeDetails)
Information about the ports affected by the port probe.
This is a convenience method that creates an instance of thePortProbeDetail.Builderavoiding the need to create one manually viaPortProbeDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#portProbeDetails(List.) - Parameters:
portProbeDetails- a consumer that will call methods onPortProbeDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#portProbeDetails(java.util.Collection)
-
blocked
PortProbeAction.Builder blocked(Boolean blocked)
Indicates whether the port probe was blocked.
- Parameters:
blocked- Indicates whether the port probe was blocked.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-